74 lines
2.2 KiB
Dart
74 lines
2.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
|
|
import 'package:energy_media/helpers/globals.dart';
|
|
import 'package:energy_media/pages/videos/videos_layout.dart';
|
|
import 'package:energy_media/pages/videos/premium_dashboard_page.dart';
|
|
import 'package:energy_media/pages/videos/gestor_videos_page.dart';
|
|
import 'package:energy_media/pages/videos/config_page.dart';
|
|
import 'package:energy_media/pages/pages.dart';
|
|
import 'package:energy_media/services/navigation_service.dart';
|
|
|
|
/// The route configuration.
|
|
final GoRouter router = GoRouter(
|
|
debugLogDiagnostics: true,
|
|
navigatorKey: NavigationService.navigatorKey,
|
|
initialLocation: '/',
|
|
redirect: (BuildContext context, GoRouterState state) {
|
|
final bool loggedIn = currentUser != null;
|
|
final bool isLoggingIn = state.matchedLocation.contains('/login');
|
|
|
|
// If user is not logged in and not in the login page
|
|
if (!loggedIn && !isLoggingIn) return '/login';
|
|
|
|
//if user is logged in and in the login page
|
|
if (loggedIn && isLoggingIn) {
|
|
return '/';
|
|
}
|
|
|
|
return null;
|
|
},
|
|
errorBuilder: (context, state) => const PageNotFoundPage(),
|
|
routes: <RouteBase>[
|
|
GoRoute(
|
|
path: '/login',
|
|
name: 'login',
|
|
builder: (BuildContext context, GoRouterState state) {
|
|
return const LoginPage();
|
|
},
|
|
),
|
|
ShellRoute(
|
|
builder: (context, state, child) {
|
|
return VideosLayout(child: child);
|
|
},
|
|
routes: [
|
|
GoRoute(
|
|
path: '/',
|
|
redirect: (context, state) => '/dashboard',
|
|
),
|
|
GoRoute(
|
|
path: '/dashboard',
|
|
name: 'dashboard',
|
|
pageBuilder: (context, state) => NoTransitionPage(
|
|
child: const PremiumDashboardPage(),
|
|
),
|
|
),
|
|
GoRoute(
|
|
path: '/videos',
|
|
name: 'videos',
|
|
pageBuilder: (context, state) => NoTransitionPage(
|
|
child: const GestorVideosPage(),
|
|
),
|
|
),
|
|
GoRoute(
|
|
path: '/config',
|
|
name: 'config',
|
|
pageBuilder: (context, state) => NoTransitionPage(
|
|
child: const ConfigPage(),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
);
|