2023-04-17 07:02:07 +02:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2023-05-17 19:36:02 +02:00
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
2023-04-17 07:02:07 +02:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2023-11-09 18:19:53 +02:00
|
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
2023-05-17 19:36:02 +02:00
|
|
|
import 'package:immich_mobile/modules/archive/providers/archive_asset_provider.dart';
|
2023-04-17 07:02:07 +02:00
|
|
|
import 'package:immich_mobile/modules/home/ui/asset_grid/immich_asset_grid.dart';
|
|
|
|
import 'package:immich_mobile/shared/models/asset.dart';
|
2023-05-17 19:36:02 +02:00
|
|
|
import 'package:immich_mobile/shared/ui/immich_loading_indicator.dart';
|
2023-08-27 07:07:35 +02:00
|
|
|
import 'package:immich_mobile/utils/selection_handlers.dart';
|
2023-04-17 07:02:07 +02:00
|
|
|
|
|
|
|
class ArchivePage extends HookConsumerWidget {
|
|
|
|
const ArchivePage({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
2023-05-17 19:36:02 +02:00
|
|
|
final archivedAssets = ref.watch(archiveProvider);
|
2023-04-17 07:02:07 +02:00
|
|
|
final selectionEnabledHook = useState(false);
|
|
|
|
final selection = useState(<Asset>{});
|
2023-05-17 19:36:02 +02:00
|
|
|
final processing = useState(false);
|
2023-04-17 07:02:07 +02:00
|
|
|
|
|
|
|
void selectionListener(
|
|
|
|
bool multiselect,
|
|
|
|
Set<Asset> selectedAssets,
|
|
|
|
) {
|
|
|
|
selectionEnabledHook.value = multiselect;
|
|
|
|
selection.value = selectedAssets;
|
|
|
|
}
|
|
|
|
|
2023-05-17 19:36:02 +02:00
|
|
|
AppBar buildAppBar(String count) {
|
2023-04-17 07:02:07 +02:00
|
|
|
return AppBar(
|
|
|
|
leading: IconButton(
|
2023-11-09 18:19:53 +02:00
|
|
|
onPressed: () => context.autoPop(),
|
2023-04-17 07:02:07 +02:00
|
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
|
|
),
|
|
|
|
centerTitle: true,
|
|
|
|
automaticallyImplyLeading: false,
|
|
|
|
title: const Text(
|
|
|
|
'archive_page_title',
|
2023-05-17 19:36:02 +02:00
|
|
|
).tr(args: [count]),
|
2023-04-17 07:02:07 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget buildBottomBar() {
|
2023-04-18 11:47:24 +02:00
|
|
|
return SafeArea(
|
|
|
|
child: Align(
|
|
|
|
alignment: Alignment.bottomCenter,
|
|
|
|
child: SizedBox(
|
|
|
|
height: 64,
|
|
|
|
child: Card(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
ListTile(
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(10),
|
|
|
|
),
|
|
|
|
leading: const Icon(
|
|
|
|
Icons.unarchive_rounded,
|
|
|
|
),
|
2023-05-09 15:58:27 +02:00
|
|
|
title: Text(
|
|
|
|
'control_bottom_app_bar_unarchive'.tr(),
|
|
|
|
style: const TextStyle(fontSize: 14),
|
|
|
|
),
|
2023-05-17 19:36:02 +02:00
|
|
|
onTap: processing.value
|
|
|
|
? null
|
|
|
|
: () async {
|
|
|
|
processing.value = true;
|
|
|
|
try {
|
2023-08-27 07:07:35 +02:00
|
|
|
await handleArchiveAssets(
|
|
|
|
ref,
|
|
|
|
context,
|
|
|
|
selection.value.toList(),
|
|
|
|
shouldArchive: false,
|
|
|
|
);
|
2023-05-17 19:36:02 +02:00
|
|
|
} finally {
|
|
|
|
processing.value = false;
|
|
|
|
selectionEnabledHook.value = false;
|
|
|
|
}
|
|
|
|
},
|
2023-08-19 00:52:40 +02:00
|
|
|
),
|
2023-04-18 11:47:24 +02:00
|
|
|
],
|
|
|
|
),
|
2023-04-17 07:02:07 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-05-17 19:36:02 +02:00
|
|
|
return archivedAssets.when(
|
|
|
|
loading: () => Scaffold(
|
|
|
|
appBar: buildAppBar("?"),
|
|
|
|
body: const Center(child: CircularProgressIndicator()),
|
|
|
|
),
|
|
|
|
error: (error, stackTrace) => Scaffold(
|
|
|
|
appBar: buildAppBar("Error"),
|
|
|
|
body: Center(child: Text(error.toString())),
|
|
|
|
),
|
|
|
|
data: (data) => Scaffold(
|
|
|
|
appBar: buildAppBar(data.totalAssets.toString()),
|
|
|
|
body: data.isEmpty
|
|
|
|
? Center(
|
|
|
|
child: Text('archive_page_no_archived_assets'.tr()),
|
|
|
|
)
|
|
|
|
: Stack(
|
|
|
|
children: [
|
|
|
|
ImmichAssetGrid(
|
|
|
|
renderList: data,
|
|
|
|
listener: selectionListener,
|
|
|
|
selectionActive: selectionEnabledHook.value,
|
|
|
|
),
|
|
|
|
if (selectionEnabledHook.value) buildBottomBar(),
|
|
|
|
if (processing.value)
|
2023-08-19 00:52:40 +02:00
|
|
|
const Center(child: ImmichLoadingIndicator()),
|
2023-05-17 19:36:02 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2023-04-17 07:02:07 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|