mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 10:56:47 +01:00
090592e5ae
* refactor(mobile): pages * refactor * album pages * pages * pages * use *.page.dart * representation * put back module
42 lines
1.3 KiB
Dart
42 lines
1.3 KiB
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/providers/archive.provider.dart';
|
|
import 'package:immich_mobile/providers/multiselect.provider.dart';
|
|
import 'package:immich_mobile/shared/ui/asset_grid/multiselect_grid.dart';
|
|
|
|
@RoutePage()
|
|
class ArchivePage extends HookConsumerWidget {
|
|
const ArchivePage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
AppBar buildAppBar() {
|
|
final archivedAssets = ref.watch(archiveProvider);
|
|
final count = archivedAssets.value?.totalAssets.toString() ?? "?";
|
|
return AppBar(
|
|
leading: IconButton(
|
|
onPressed: () => context.popRoute(),
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
),
|
|
centerTitle: true,
|
|
automaticallyImplyLeading: false,
|
|
title: const Text(
|
|
'archive_page_title',
|
|
).tr(args: [count]),
|
|
);
|
|
}
|
|
|
|
return Scaffold(
|
|
appBar: ref.watch(multiselectProvider) ? null : buildAppBar(),
|
|
body: MultiselectGrid(
|
|
renderListProvider: archiveProvider,
|
|
unarchive: true,
|
|
archiveEnabled: true,
|
|
deleteEnabled: true,
|
|
editEnabled: true,
|
|
),
|
|
);
|
|
}
|
|
}
|