2023-06-23 17:44:02 +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-06-23 17:44:02 +02:00
|
|
|
import 'package:immich_mobile/modules/search/providers/people.provider.dart';
|
|
|
|
import 'package:immich_mobile/modules/search/ui/explore_grid.dart';
|
|
|
|
import 'package:immich_mobile/shared/ui/immich_loading_indicator.dart';
|
|
|
|
|
|
|
|
class AllPeoplePage extends HookConsumerWidget {
|
|
|
|
const AllPeoplePage({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
final curatedPeople = ref.watch(getCuratedPeopleProvider);
|
|
|
|
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
title: Text(
|
|
|
|
'all_people_page_title',
|
|
|
|
style: TextStyle(
|
2023-11-09 18:19:53 +02:00
|
|
|
color: context.primaryColor,
|
2023-06-23 17:44:02 +02:00
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 16.0,
|
|
|
|
),
|
|
|
|
).tr(),
|
|
|
|
leading: IconButton(
|
2023-11-09 18:19:53 +02:00
|
|
|
onPressed: () => context.autoPop(),
|
2023-06-23 17:44:02 +02:00
|
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
body: curatedPeople.when(
|
|
|
|
loading: () => const Center(child: ImmichLoadingIndicator()),
|
|
|
|
error: (err, stack) => Center(
|
|
|
|
child: Text('Error: $err'),
|
|
|
|
),
|
|
|
|
data: (people) => ExploreGrid(
|
|
|
|
isPeople: true,
|
2023-11-19 18:04:44 +02:00
|
|
|
curatedContent: people,
|
2023-06-23 17:44:02 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|