Files
reader-app/lib/app/router/app_router.dart
T

91 lines
3.1 KiB
Dart

import 'package:flutter/foundation.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:go_router/go_router.dart';
import '../../features/auth/presentation/login_screen.dart';
import '../../features/bookshelf/presentation/bookshelf_screen.dart';
import '../../features/comments/presentation/comments_screen.dart';
import '../../features/genres/presentation/genres_screen.dart';
import '../../features/home/presentation/home_screen.dart';
import '../../features/novel/presentation/novel_detail_screen.dart';
import '../../features/profile/presentation/profile_screen.dart';
import '../../features/reader/presentation/reader_screen.dart';
import '../../features/search/presentation/search_screen.dart';
import '../../features/settings/presentation/settings_screen.dart';
import '../../features/splash/presentation/splash_screen.dart';
import '../../shared/widgets/app_shell.dart';
import 'route_names.dart';
final appRouterProvider = Provider<GoRouter>((ref) {
return GoRouter(
initialLocation: RouteNames.splash,
routes: [
GoRoute(
path: RouteNames.splash,
builder: (context, state) => const SplashScreen(),
),
GoRoute(
path: RouteNames.login,
builder: (context, state) => const LoginScreen(),
),
ShellRoute(
builder: (context, state, child) => AppShell(child: child),
routes: [
GoRoute(
path: RouteNames.home,
builder: (context, state) => const HomeScreen(),
),
GoRoute(
path: RouteNames.search,
builder: (context, state) {
final query = state.uri.queryParameters;
return SearchScreen(
key: ValueKey(state.uri.toString()),
initialQuery: query['q'],
initialGenre: query['genre'],
initialStatus: query['status'],
initialSort: query['sort'] ?? 'latest',
);
},
),
GoRoute(
path: RouteNames.genres,
builder: (context, state) => const GenresScreen(),
),
GoRoute(
path: RouteNames.bookshelf,
builder: (context, state) => const BookshelfScreen(),
),
GoRoute(
path: RouteNames.profile,
builder: (context, state) => const ProfileScreen(),
),
],
),
GoRoute(
path: RouteNames.novelDetailPath,
builder: (_, state) => NovelDetailScreen(
novelId: state.pathParameters['id'] ?? '',
),
),
GoRoute(
path: RouteNames.readerPath,
builder: (_, state) => ReaderScreen(
chapterId: Uri.decodeComponent(state.pathParameters['chapterId'] ?? ''),
),
),
GoRoute(
path: RouteNames.commentsPath,
builder: (_, state) => CommentsScreen(
novelId: state.pathParameters['novelId'] ?? '',
chapterId: state.uri.queryParameters['chapterId'],
),
),
GoRoute(
path: RouteNames.settings,
builder: (context, state) => const SettingsScreen(),
),
],
);
});