57 lines
1.6 KiB
Dart
57 lines
1.6 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:hiddify/core/router/routes/routes.dart';
|
|
import 'package:hiddify/services/deep_link_service.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
part 'app_router.g.dart';
|
|
|
|
// TODO: test and improve handling of deep link
|
|
@riverpod
|
|
GoRouter router(RouterRef ref) {
|
|
final deepLink = ref.listen(
|
|
deepLinkServiceProvider,
|
|
(_, next) async {
|
|
if (next case AsyncData(value: final link?)) {
|
|
await ref.state.push(
|
|
NewProfileRoute(url: link.url, name: link.name).location,
|
|
);
|
|
}
|
|
},
|
|
);
|
|
final initialLink = deepLink.read();
|
|
String initialLocation = HomeRoute.path;
|
|
if (initialLink case AsyncData(value: final link?)) {
|
|
initialLocation = NewProfileRoute(url: link.url, name: link.name).location;
|
|
}
|
|
|
|
return GoRouter(
|
|
navigatorKey: rootNavigatorKey,
|
|
initialLocation: initialLocation,
|
|
debugLogDiagnostics: true,
|
|
routes: $routes,
|
|
);
|
|
}
|
|
|
|
int getCurrentIndex(BuildContext context) {
|
|
final String location = GoRouterState.of(context).location;
|
|
if (location == HomeRoute.path) return 0;
|
|
if (location.startsWith(ProxiesRoute.path)) return 1;
|
|
if (location.startsWith(LogsRoute.path)) return 2;
|
|
if (location.startsWith(SettingsRoute.path)) return 3;
|
|
return 0;
|
|
}
|
|
|
|
void switchTab(int index, BuildContext context) {
|
|
switch (index) {
|
|
case 0:
|
|
const HomeRoute().go(context);
|
|
case 1:
|
|
const ProxiesRoute().go(context);
|
|
case 2:
|
|
const LogsRoute().go(context);
|
|
case 3:
|
|
const SettingsRoute().go(context);
|
|
}
|
|
}
|