mirror of
https://github.com/immich-app/immich.git
synced 2025-03-11 02:23:09 -05:00
* refactor(mobile): render list 2 * wip * wip: asset selection page * remove render_list provider * remove dead code * yaml format * remove unused file * woop woop more clean up * woop woop more clean up 2 * fix: album selection doesn't load instantly
31 lines
1.1 KiB
Dart
31 lines
1.1 KiB
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/pages/album/album_viewer.dart';
|
|
import 'package:immich_mobile/providers/album/album.provider.dart';
|
|
import 'package:immich_mobile/providers/album/current_album.provider.dart';
|
|
import 'package:immich_mobile/providers/timeline.provider.dart';
|
|
|
|
@RoutePage()
|
|
class AlbumViewerPage extends HookConsumerWidget {
|
|
final int albumId;
|
|
|
|
const AlbumViewerPage({super.key, required this.albumId});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
// Listen provider to prevent autoDispose when navigating to other routes from within the viewer page
|
|
ref.listen(currentAlbumProvider, (_, __) {});
|
|
|
|
// This call helps rendering the asset selection instantly
|
|
ref.listen(assetSelectionTimelineProvider, (_, __) {});
|
|
|
|
ref.listen(albumWatcher(albumId), (_, albumFuture) {
|
|
albumFuture.whenData(
|
|
(value) => ref.read(currentAlbumProvider.notifier).set(value),
|
|
);
|
|
});
|
|
|
|
return const Scaffold(body: AlbumViewer());
|
|
}
|
|
}
|