92 lines
2.6 KiB
Dart
92 lines
2.6 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/>.
|
|
*/
|
|
part of 'routes.dart';
|
|
|
|
@TypedGoRoute<BangCategoriesRoute>(
|
|
name: 'BangRoute',
|
|
path: '/bangs',
|
|
routes: [
|
|
TypedGoRoute<BangSearchRoute>(
|
|
name: 'BangSearchRoute',
|
|
path: 'search/:searchText',
|
|
),
|
|
TypedGoRoute<BangCategoryRoute>(
|
|
name: 'BangCategoryRoute',
|
|
path: 'category/:category',
|
|
routes: [
|
|
TypedGoRoute<BangSubCategoryRoute>(
|
|
name: 'BangSubCategoryRoute',
|
|
path: ':subCategory',
|
|
),
|
|
],
|
|
),
|
|
],
|
|
)
|
|
class BangCategoriesRoute extends GoRouteData with $BangCategoriesRoute {
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return const BangCategoriesScreen();
|
|
}
|
|
}
|
|
|
|
class BangCategoryRoute extends GoRouteData with $BangCategoryRoute {
|
|
final String category;
|
|
|
|
const BangCategoryRoute({required this.category});
|
|
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return BangListScreen(category: category);
|
|
}
|
|
}
|
|
|
|
class BangSubCategoryRoute extends GoRouteData with $BangSubCategoryRoute {
|
|
final String category;
|
|
final String subCategory;
|
|
|
|
const BangSubCategoryRoute({
|
|
required this.category,
|
|
required this.subCategory,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return BangListScreen(category: category, subCategory: subCategory);
|
|
}
|
|
}
|
|
|
|
class BangSearchRoute extends GoRouteData with $BangSearchRoute {
|
|
static const String emptySearchText = ' ';
|
|
|
|
//This should be nullable but isnt allowed by go_router
|
|
final String searchText;
|
|
|
|
const BangSearchRoute({this.searchText = BangSearchRoute.emptySearchText});
|
|
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return BangSearchScreen(
|
|
initialSearchText: (searchText.isEmpty || searchText == emptySearchText)
|
|
? null
|
|
: searchText,
|
|
);
|
|
}
|
|
}
|