mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-06 02:59:28 +00:00
96 lines
2 KiB
Dart
96 lines
2 KiB
Dart
// to store names of routes
|
|
|
|
part of 'router.dart';
|
|
|
|
class Routes {
|
|
static const home = _SimpleRoute(
|
|
pathName: '',
|
|
name: 'home',
|
|
);
|
|
static const onboarding = _SimpleRoute(
|
|
pathName: 'login',
|
|
name: 'onboarding',
|
|
);
|
|
static const library = _SimpleRoute(
|
|
pathName: 'library',
|
|
pathParamName: 'libraryId',
|
|
name: 'library',
|
|
);
|
|
static const libraryItem = _SimpleRoute(
|
|
pathName: 'item',
|
|
pathParamName: 'itemId',
|
|
name: 'libraryItem',
|
|
);
|
|
|
|
// Local settings
|
|
static const settings = _SimpleRoute(
|
|
pathName: 'config',
|
|
name: 'settings',
|
|
);
|
|
static const autoSleepTimerSettings = _SimpleRoute(
|
|
pathName: 'autosleeptimer',
|
|
name: 'autoSleepTimerSettings',
|
|
// parentRoute: settings,
|
|
);
|
|
|
|
// search and explore
|
|
static const search = _SimpleRoute(
|
|
pathName: 'search',
|
|
name: 'search',
|
|
// parentRoute: library,
|
|
);
|
|
static const explore = _SimpleRoute(
|
|
pathName: 'explore',
|
|
name: 'explore',
|
|
);
|
|
|
|
// downloads
|
|
static const downloads = _SimpleRoute(
|
|
pathName: 'downloads',
|
|
name: 'downloads',
|
|
);
|
|
|
|
// library browser to browse the library using author, genre, etc.
|
|
static const libraryBrowser = _SimpleRoute(
|
|
pathName: 'browser',
|
|
name: 'libraryBrowser',
|
|
// parentRoute: library,
|
|
);
|
|
|
|
// you page for the user
|
|
static const you = _SimpleRoute(
|
|
pathName: 'you',
|
|
name: 'you',
|
|
);
|
|
|
|
// user management
|
|
static const userManagement = _SimpleRoute(
|
|
pathName: 'users',
|
|
name: 'userManagement',
|
|
);
|
|
}
|
|
|
|
// a class to store path
|
|
|
|
class _SimpleRoute {
|
|
const _SimpleRoute({
|
|
required this.pathName,
|
|
this.pathParamName,
|
|
required this.name,
|
|
this.parentRoute,
|
|
});
|
|
|
|
final String pathName;
|
|
final String? pathParamName;
|
|
final String name;
|
|
final _SimpleRoute? parentRoute;
|
|
|
|
/// the full path of the route
|
|
String get path {
|
|
return '${parentRoute?.path ?? ''}$localPath';
|
|
}
|
|
|
|
/// the local path of the route
|
|
String get localPath =>
|
|
'/$pathName${pathParamName != null ? '/:$pathParamName' : ''}';
|
|
}
|