mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
31 lines
871 B
Dart
31 lines
871 B
Dart
|
import 'package:auto_route/auto_route.dart';
|
||
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
|
||
|
import 'package:immich_mobile/modules/search/providers/search_page_state.provider.dart';
|
||
|
|
||
|
class TabNavigationObserver extends AutoRouterObserver {
|
||
|
/// Riverpod Instance
|
||
|
final WidgetRef ref;
|
||
|
|
||
|
TabNavigationObserver({
|
||
|
required this.ref,
|
||
|
});
|
||
|
|
||
|
@override
|
||
|
void didInitTabRoute(TabPageRoute route, TabPageRoute? previousRoute) {
|
||
|
// Perform tasks on first navigation to SearchRoute
|
||
|
if (route.name == 'SearchRoute') {
|
||
|
// ref.refresh(getCuratedLocationProvider);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Future<void> didChangeTabRoute(TabPageRoute route, TabPageRoute previousRoute) async {
|
||
|
// Perform tasks on re-visit to SearchRoute
|
||
|
if (route.name == 'SearchRoute') {
|
||
|
// Refresh Location State
|
||
|
ref.refresh(getCuratedLocationProvider);
|
||
|
}
|
||
|
}
|
||
|
}
|