2023-02-04 20:25:11 -07:00
|
|
|
import 'package:auto_route/auto_route.dart';
|
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2023-05-17 10:36:02 -07:00
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
2023-02-04 20:25:11 -07:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
import 'package:immich_mobile/modules/favorite/providers/favorite_provider.dart';
|
2023-03-24 20:44:53 -07:00
|
|
|
import 'package:immich_mobile/modules/home/ui/asset_grid/immich_asset_grid.dart';
|
2023-05-17 10:36:02 -07:00
|
|
|
import 'package:immich_mobile/shared/models/asset.dart';
|
|
|
|
import 'package:immich_mobile/shared/providers/asset.provider.dart';
|
|
|
|
import 'package:immich_mobile/shared/ui/immich_toast.dart';
|
2023-02-04 20:25:11 -07:00
|
|
|
|
|
|
|
class FavoritesPage extends HookConsumerWidget {
|
|
|
|
const FavoritesPage({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
2023-05-17 10:36:02 -07:00
|
|
|
final selectionEnabledHook = useState(false);
|
|
|
|
final selection = useState(<Asset>{});
|
|
|
|
final processing = useState(false);
|
|
|
|
|
|
|
|
void selectionListener(
|
|
|
|
bool multiselect,
|
|
|
|
Set<Asset> selectedAssets,
|
|
|
|
) {
|
|
|
|
selectionEnabledHook.value = multiselect;
|
|
|
|
selection.value = selectedAssets;
|
|
|
|
}
|
|
|
|
|
2023-02-04 20:25:11 -07:00
|
|
|
AppBar buildAppBar() {
|
|
|
|
return AppBar(
|
|
|
|
leading: IconButton(
|
|
|
|
onPressed: () => AutoRouter.of(context).pop(),
|
|
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
|
|
),
|
|
|
|
centerTitle: true,
|
|
|
|
automaticallyImplyLeading: false,
|
|
|
|
title: const Text(
|
|
|
|
'favorites_page_title',
|
|
|
|
).tr(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-05-17 10:36:02 -07:00
|
|
|
void unfavorite() async {
|
|
|
|
try {
|
|
|
|
if (selection.value.isNotEmpty) {
|
|
|
|
await ref.watch(assetProvider.notifier).toggleFavorite(
|
|
|
|
selection.value.toList(),
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
final assetOrAssets = selection.value.length > 1 ? 'assets' : 'asset';
|
|
|
|
ImmichToast.show(
|
|
|
|
context: context,
|
|
|
|
msg:
|
|
|
|
'Removed ${selection.value.length} $assetOrAssets from favorites',
|
|
|
|
gravity: ToastGravity.CENTER,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
processing.value = false;
|
|
|
|
selectionEnabledHook.value = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget buildBottomBar() {
|
|
|
|
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.star_border,
|
|
|
|
),
|
|
|
|
title: const Text(
|
|
|
|
"Unfavorite",
|
|
|
|
style: TextStyle(fontSize: 14),
|
|
|
|
),
|
|
|
|
onTap: processing.value ? null : unfavorite,
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-04 20:25:11 -07:00
|
|
|
return Scaffold(
|
|
|
|
appBar: buildAppBar(),
|
2023-05-17 10:36:02 -07:00
|
|
|
body: ref.watch(favoriteAssetsProvider).when(
|
|
|
|
loading: () => const Center(child: CircularProgressIndicator()),
|
|
|
|
error: (error, stackTrace) => Center(child: Text(error.toString())),
|
|
|
|
data: (data) => data.isEmpty
|
|
|
|
? Center(
|
|
|
|
child: Text('favorites_page_no_favorites'.tr()),
|
|
|
|
)
|
|
|
|
: Stack(
|
|
|
|
children: [
|
|
|
|
ImmichAssetGrid(
|
|
|
|
renderList: data,
|
|
|
|
selectionActive: selectionEnabledHook.value,
|
|
|
|
listener: selectionListener,
|
|
|
|
),
|
|
|
|
if (selectionEnabledHook.value) buildBottomBar()
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2023-02-04 20:25:11 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|