mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
983473261b
* build(mobile): add riverpod_lint * refactor(mobile): riverpod_generator for providers * test(mobile): fix integration test helper * refactor: ApiService to riverpod codegen * refactor(mobile): return curatedcontent instead of people dto * refactor: person provider to asyncnotifier * mobile: update service providers to use lambda * mobile: update scaffoldbody default error icon * remove logger mixin --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
44 lines
1.4 KiB
Dart
44 lines
1.4 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
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(
|
|
color: context.primaryColor,
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 16.0,
|
|
),
|
|
).tr(),
|
|
leading: IconButton(
|
|
onPressed: () => context.autoPop(),
|
|
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,
|
|
curatedContent: people,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|