2024-11-15 15:08:29 +00:00
|
|
|
import 'package:animations/animations.dart';
|
2024-11-08 16:09:46 +00:00
|
|
|
import 'package:go_router/go_router.dart';
|
|
|
|
import 'package:surface/screens/account.dart';
|
2024-11-09 17:04:39 +00:00
|
|
|
import 'package:surface/screens/account/profile_edit.dart';
|
|
|
|
import 'package:surface/screens/account/publishers/publisher_edit.dart';
|
|
|
|
import 'package:surface/screens/account/publishers/publisher_new.dart';
|
|
|
|
import 'package:surface/screens/account/publishers/publishers.dart';
|
2024-11-13 16:08:09 +00:00
|
|
|
import 'package:surface/screens/album.dart';
|
2024-11-09 10:28:45 +00:00
|
|
|
import 'package:surface/screens/auth/login.dart';
|
|
|
|
import 'package:surface/screens/auth/register.dart';
|
2024-11-13 16:08:09 +00:00
|
|
|
import 'package:surface/screens/chat.dart';
|
2024-11-08 16:09:46 +00:00
|
|
|
import 'package:surface/screens/explore.dart';
|
|
|
|
import 'package:surface/screens/home.dart';
|
2024-11-10 14:56:09 +00:00
|
|
|
import 'package:surface/screens/post/post_detail.dart';
|
2024-11-09 17:34:58 +00:00
|
|
|
import 'package:surface/screens/post/post_editor.dart';
|
2024-11-10 13:48:42 +00:00
|
|
|
import 'package:surface/screens/settings.dart';
|
2024-11-10 14:56:09 +00:00
|
|
|
import 'package:surface/types/post.dart';
|
2024-11-15 15:08:29 +00:00
|
|
|
import 'package:surface/widgets/navigation/app_background.dart';
|
2024-11-08 16:09:46 +00:00
|
|
|
import 'package:surface/widgets/navigation/app_scaffold.dart';
|
|
|
|
|
2024-11-14 14:21:13 +00:00
|
|
|
final _appRoutes = [
|
|
|
|
ShellRoute(
|
2024-11-15 15:08:29 +00:00
|
|
|
builder: (context, state, child) => AppPageScaffold(
|
2024-11-14 14:21:13 +00:00
|
|
|
body: child,
|
|
|
|
showAppBar: false,
|
2024-11-09 10:28:45 +00:00
|
|
|
),
|
2024-11-14 14:21:13 +00:00
|
|
|
routes: [
|
|
|
|
GoRoute(
|
|
|
|
path: '/',
|
|
|
|
name: 'home',
|
2024-11-15 14:46:12 +00:00
|
|
|
pageBuilder: (context, state) => NoTransitionPage(
|
|
|
|
child: const HomeScreen(),
|
|
|
|
),
|
2024-11-09 17:34:58 +00:00
|
|
|
),
|
2024-11-14 14:21:13 +00:00
|
|
|
GoRoute(
|
|
|
|
path: '/posts',
|
|
|
|
name: 'explore',
|
2024-11-15 14:46:12 +00:00
|
|
|
pageBuilder: (context, state) => NoTransitionPage(
|
|
|
|
child: const ExploreScreen(),
|
|
|
|
),
|
2024-11-15 15:08:29 +00:00
|
|
|
routes: [
|
|
|
|
GoRoute(
|
|
|
|
path: '/post/write/:mode',
|
|
|
|
name: 'postEditor',
|
|
|
|
pageBuilder: (context, state) => CustomTransitionPage(
|
|
|
|
child: PostEditorScreen(
|
|
|
|
mode: state.pathParameters['mode']!,
|
|
|
|
postEditId: int.tryParse(
|
|
|
|
state.uri.queryParameters['editing'] ?? '',
|
|
|
|
),
|
|
|
|
postReplyId: int.tryParse(
|
|
|
|
state.uri.queryParameters['replying'] ?? '',
|
|
|
|
),
|
|
|
|
postRepostId: int.tryParse(
|
|
|
|
state.uri.queryParameters['reposting'] ?? '',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
transitionsBuilder:
|
|
|
|
(context, animation, secondaryAnimation, child) {
|
|
|
|
return FadeThroughTransition(
|
|
|
|
animation: animation,
|
|
|
|
secondaryAnimation: secondaryAnimation,
|
|
|
|
child: AppBackground(isLessOptimization: true, child: child),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
GoRoute(
|
|
|
|
path: '/post/:slug',
|
|
|
|
name: 'postDetail',
|
|
|
|
pageBuilder: (context, state) => CustomTransitionPage(
|
|
|
|
child: PostDetailScreen(
|
|
|
|
slug: state.pathParameters['slug']!,
|
|
|
|
preload: state.extra as SnPost?,
|
|
|
|
),
|
|
|
|
transitionsBuilder:
|
|
|
|
(context, animation, secondaryAnimation, child) {
|
|
|
|
return FadeThroughTransition(
|
|
|
|
animation: animation,
|
|
|
|
secondaryAnimation: secondaryAnimation,
|
|
|
|
child: AppBackground(isLessOptimization: true, child: child),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2024-11-14 14:21:13 +00:00
|
|
|
),
|
|
|
|
GoRoute(
|
|
|
|
path: '/account',
|
|
|
|
name: 'account',
|
2024-11-15 14:46:12 +00:00
|
|
|
pageBuilder: (context, state) => NoTransitionPage(
|
|
|
|
child: const AccountScreen(),
|
|
|
|
),
|
2024-11-14 14:21:13 +00:00
|
|
|
),
|
|
|
|
GoRoute(
|
|
|
|
path: '/chat',
|
|
|
|
name: 'chat',
|
2024-11-15 14:46:12 +00:00
|
|
|
pageBuilder: (context, state) => NoTransitionPage(
|
|
|
|
child: const ChatScreen(),
|
|
|
|
),
|
2024-11-14 14:21:13 +00:00
|
|
|
),
|
|
|
|
GoRoute(
|
|
|
|
path: '/album',
|
|
|
|
name: 'album',
|
2024-11-15 14:46:12 +00:00
|
|
|
pageBuilder: (context, state) => NoTransitionPage(
|
|
|
|
child: const AlbumScreen(),
|
|
|
|
),
|
2024-11-14 14:21:13 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
ShellRoute(
|
2024-11-15 15:08:29 +00:00
|
|
|
builder: (context, state, child) => AppPageScaffold(body: child),
|
2024-11-14 14:21:13 +00:00
|
|
|
routes: [
|
|
|
|
GoRoute(
|
|
|
|
path: '/auth/login',
|
|
|
|
name: 'authLogin',
|
|
|
|
builder: (context, state) => const LoginScreen(),
|
|
|
|
),
|
|
|
|
GoRoute(
|
|
|
|
path: '/auth/register',
|
|
|
|
name: 'authRegister',
|
|
|
|
builder: (context, state) => const RegisterScreen(),
|
|
|
|
),
|
|
|
|
GoRoute(
|
|
|
|
path: '/account/profile/edit',
|
|
|
|
name: 'accountProfileEdit',
|
|
|
|
builder: (context, state) => const ProfileEditScreen(),
|
|
|
|
),
|
|
|
|
GoRoute(
|
|
|
|
path: '/account/publishers',
|
|
|
|
name: 'accountPublishers',
|
|
|
|
builder: (context, state) => const PublisherScreen(),
|
|
|
|
),
|
|
|
|
GoRoute(
|
|
|
|
path: '/account/publishers/new',
|
|
|
|
name: 'accountPublisherNew',
|
|
|
|
builder: (context, state) => const AccountPublisherNewScreen(),
|
|
|
|
),
|
|
|
|
GoRoute(
|
|
|
|
path: '/account/publishers/edit/:name',
|
|
|
|
name: 'accountPublisherEdit',
|
|
|
|
builder: (context, state) => AccountPublisherEditScreen(
|
|
|
|
name: state.pathParameters['name']!,
|
2024-11-10 13:48:42 +00:00
|
|
|
),
|
2024-11-14 14:21:13 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
ShellRoute(
|
2024-11-15 15:08:29 +00:00
|
|
|
builder: (context, state, child) => AppPageScaffold(body: child),
|
2024-11-14 14:21:13 +00:00
|
|
|
routes: [
|
|
|
|
GoRoute(
|
|
|
|
path: '/settings',
|
|
|
|
name: 'settings',
|
|
|
|
builder: (context, state) => const SettingsScreen(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
];
|
|
|
|
|
|
|
|
final appRouter = GoRouter(
|
2024-11-15 15:08:29 +00:00
|
|
|
routes: [
|
|
|
|
ShellRoute(
|
|
|
|
routes: _appRoutes,
|
|
|
|
builder: (context, state, child) => AppRootScaffold(body: child),
|
|
|
|
),
|
|
|
|
],
|
2024-11-08 16:09:46 +00:00
|
|
|
);
|