2023-02-05 05:25:11 +02:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
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-02-05 05:25:11 +02:00
|
|
|
import 'package:immich_mobile/modules/favorite/providers/favorite_provider.dart';
|
2023-12-07 17:38:22 +02:00
|
|
|
import 'package:immich_mobile/modules/home/providers/multiselect.provider.dart';
|
|
|
|
import 'package:immich_mobile/shared/ui/asset_grid/multiselect_grid.dart';
|
2023-02-05 05:25:11 +02:00
|
|
|
|
|
|
|
class FavoritesPage extends HookConsumerWidget {
|
|
|
|
const FavoritesPage({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
AppBar buildAppBar() {
|
|
|
|
return AppBar(
|
|
|
|
leading: IconButton(
|
2023-11-09 18:19:53 +02:00
|
|
|
onPressed: () => context.autoPop(),
|
2023-02-05 05:25:11 +02:00
|
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
|
|
),
|
|
|
|
centerTitle: true,
|
|
|
|
automaticallyImplyLeading: false,
|
|
|
|
title: const Text(
|
|
|
|
'favorites_page_title',
|
|
|
|
).tr(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Scaffold(
|
2023-12-07 17:38:22 +02:00
|
|
|
appBar: ref.watch(multiselectProvider) ? null : buildAppBar(),
|
|
|
|
body: MultiselectGrid(
|
|
|
|
renderListProvider: favoriteAssetsProvider,
|
|
|
|
favoriteEnabled: true,
|
|
|
|
editEnabled: true,
|
|
|
|
unfavorite: true,
|
|
|
|
),
|
2023-02-05 05:25:11 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|