122 lines
3.4 KiB
Dart
122 lines
3.4 KiB
Dart
/*
|
|
* Copyright (c) 2024-2026 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<BookmarksRoute>(
|
|
name: 'BookmarksRoute',
|
|
path: '/bookmarks',
|
|
routes: [
|
|
TypedGoRoute<BookmarkListRoute>(
|
|
name: 'BookmarkListRoute',
|
|
path: 'list/:entryGuid',
|
|
),
|
|
TypedGoRoute<BookmarkFolderAddRoute>(
|
|
name: 'BookmarkFolderAddRoute',
|
|
path: 'createFolder',
|
|
),
|
|
TypedGoRoute<BookmarkFolderEditRoute>(
|
|
name: 'BookmarkFolderEditRoute',
|
|
path: 'editFolder',
|
|
),
|
|
TypedGoRoute<BookmarkEntryAddRoute>(
|
|
name: 'BookmarkEntryAddRoute',
|
|
path: 'createEntry',
|
|
),
|
|
TypedGoRoute<BookmarkEntryEditRoute>(
|
|
name: 'BookmarkEntryEditRoute',
|
|
path: 'editEntry',
|
|
),
|
|
],
|
|
)
|
|
class BookmarksRoute extends GoRouteData with $BookmarksRoute {
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return const SizedBox.shrink();
|
|
}
|
|
}
|
|
|
|
class BookmarkListRoute extends GoRouteData with $BookmarkListRoute {
|
|
final String entryGuid;
|
|
|
|
const BookmarkListRoute({required this.entryGuid});
|
|
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return BookmarkListScreen(entryGuid: entryGuid);
|
|
}
|
|
}
|
|
|
|
class BookmarkFolderAddRoute extends GoRouteData with $BookmarkFolderAddRoute {
|
|
final String? parentGuid;
|
|
|
|
const BookmarkFolderAddRoute({required this.parentGuid});
|
|
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return BookmarkFolderEditScreen(parentGuid: parentGuid, folder: null);
|
|
}
|
|
}
|
|
|
|
class BookmarkFolderEditRoute extends GoRouteData
|
|
with $BookmarkFolderEditRoute {
|
|
final String folder;
|
|
|
|
const BookmarkFolderEditRoute({required this.folder});
|
|
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return BookmarkFolderEditScreen(
|
|
folder: BookmarkFolder.fromJson(
|
|
jsonDecode(folder) as Map<String, dynamic>,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class BookmarkEntryAddRoute extends GoRouteData with $BookmarkEntryAddRoute {
|
|
final String bookmarkInfo;
|
|
|
|
const BookmarkEntryAddRoute({required this.bookmarkInfo});
|
|
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return BookmarkEntryEditScreen(
|
|
initialInfo: BookmarkInfo.decode(jsonDecode(bookmarkInfo) as Object),
|
|
exisitingEntry: null,
|
|
);
|
|
}
|
|
}
|
|
|
|
class BookmarkEntryEditRoute extends GoRouteData with $BookmarkEntryEditRoute {
|
|
final String bookmarkEntry;
|
|
|
|
const BookmarkEntryEditRoute({required this.bookmarkEntry});
|
|
|
|
@override
|
|
Widget build(BuildContext context, GoRouterState state) {
|
|
return BookmarkEntryEditScreen(
|
|
initialInfo: null,
|
|
exisitingEntry: BookmarkEntry.fromJson(
|
|
jsonDecode(bookmarkEntry) as Map<String, dynamic>,
|
|
),
|
|
);
|
|
}
|
|
}
|