95 lines
4.8 KiB
Dart
95 lines
4.8 KiB
Dart
/*
|
|
* Copyright (c) 2024-2025 Fabian Freund.
|
|
*
|
|
* This file is part of WebLibre
|
|
* (see https://weblibre.eu).
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
import 'dart:convert';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:weblibre/core/routing/widgets/dialog_page.dart';
|
|
import 'package:weblibre/features/about/presentation/screens/about.dart';
|
|
import 'package:weblibre/features/bangs/presentation/screens/categories.dart';
|
|
import 'package:weblibre/features/bangs/presentation/screens/list.dart';
|
|
import 'package:weblibre/features/bangs/presentation/screens/search.dart';
|
|
import 'package:weblibre/features/geckoview/features/browser/presentation/dialogs/open_shared_content.dart';
|
|
import 'package:weblibre/features/geckoview/features/browser/presentation/dialogs/tab_tree.dart';
|
|
import 'package:weblibre/features/geckoview/features/browser/presentation/screens/browser.dart';
|
|
import 'package:weblibre/features/geckoview/features/contextmenu/extensions/hit_result.dart';
|
|
import 'package:weblibre/features/geckoview/features/contextmenu/presentation/context_menu_dialog.dart';
|
|
import 'package:weblibre/features/geckoview/features/history/presentation/screens/history.dart';
|
|
import 'package:weblibre/features/geckoview/features/search/presentation/screens/search.dart';
|
|
import 'package:weblibre/features/geckoview/features/tabs/data/models/container_data.dart';
|
|
import 'package:weblibre/features/geckoview/features/tabs/presentation/screens/container_draft_suggestions.dart';
|
|
import 'package:weblibre/features/geckoview/features/tabs/presentation/screens/container_edit.dart';
|
|
import 'package:weblibre/features/geckoview/features/tabs/presentation/screens/container_list.dart';
|
|
import 'package:weblibre/features/geckoview/features/tabs/presentation/screens/container_selection.dart';
|
|
import 'package:weblibre/features/onboarding/presentation/onboarding.dart';
|
|
import 'package:weblibre/features/settings/presentation/screens/addon_collection.dart';
|
|
import 'package:weblibre/features/settings/presentation/screens/bang_settings.dart';
|
|
import 'package:weblibre/features/settings/presentation/screens/developer_settings.dart';
|
|
import 'package:weblibre/features/settings/presentation/screens/doh_settings.dart';
|
|
import 'package:weblibre/features/settings/presentation/screens/fingerprint_settings.dart';
|
|
import 'package:weblibre/features/settings/presentation/screens/general_settings.dart';
|
|
import 'package:weblibre/features/settings/presentation/screens/settings.dart';
|
|
import 'package:weblibre/features/settings/presentation/screens/web_engine_hardening.dart';
|
|
import 'package:weblibre/features/settings/presentation/screens/web_engine_hardening_group.dart';
|
|
import 'package:weblibre/features/settings/presentation/screens/web_engine_settings.dart';
|
|
import 'package:weblibre/features/tor/presentation/screens/tor_proxy.dart';
|
|
import 'package:weblibre/features/web_feed/presentation/add_feed_dialog.dart';
|
|
import 'package:weblibre/features/web_feed/presentation/screens/feed_article.dart';
|
|
import 'package:weblibre/features/web_feed/presentation/screens/feed_article_list.dart';
|
|
import 'package:weblibre/features/web_feed/presentation/screens/feed_edit.dart';
|
|
import 'package:weblibre/features/web_feed/presentation/screens/feed_list.dart';
|
|
import 'package:weblibre/features/web_feed/presentation/select_feed_dialog.dart';
|
|
|
|
part 'routes.g.dart';
|
|
part 'routes.settings.dart';
|
|
part 'routes.browser.dart';
|
|
part 'routes.bangs.dart';
|
|
part 'routes.feeds.dart';
|
|
|
|
@TypedGoRoute<AboutRoute>(name: 'AboutRoute', path: '/about')
|
|
class AboutRoute extends GoRouteData with $AboutRoute {
|
|
@override
|
|
Page<void> buildPage(BuildContext context, GoRouterState state) {
|
|
return DialogPage(builder: (_) => const AboutDialogScreen());
|
|
}
|
|
}
|
|
|
|
@TypedGoRoute<OnboardingRoute>(
|
|
name: 'OnboardingRoute',
|
|
path: '/onboarding/:currentRevision/:targetRevision',
|
|
)
|
|
class OnboardingRoute extends GoRouteData with $OnboardingRoute {
|
|
final int currentRevision;
|
|
final int targetRevision;
|
|
|
|
const OnboardingRoute({
|
|
required this.currentRevision,
|
|
required this.targetRevision,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return OnboardingScreen(
|
|
currentRevision: currentRevision,
|
|
targetRevision: targetRevision,
|
|
);
|
|
}
|
|
}
|