mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
202082f62e
* UserService * PartnerService * HashService * MemoryService * PersonService * SearchService * StackService
46 lines
1.5 KiB
Dart
46 lines
1.5 KiB
Dart
import 'package:immich_mobile/interfaces/person_api.interface.dart';
|
|
import 'package:immich_mobile/widgets/asset_grid/asset_grid_data_structure.dart';
|
|
import 'package:immich_mobile/services/person.service.dart';
|
|
import 'package:immich_mobile/providers/app_settings.provider.dart';
|
|
import 'package:immich_mobile/services/app_settings.service.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
part 'people.provider.g.dart';
|
|
|
|
@riverpod
|
|
Future<List<Person>> getAllPeople(
|
|
GetAllPeopleRef ref,
|
|
) async {
|
|
final PersonService personService = ref.read(personServiceProvider);
|
|
|
|
final people = await personService.getAllPeople();
|
|
|
|
return people;
|
|
}
|
|
|
|
@riverpod
|
|
Future<RenderList> personAssets(PersonAssetsRef ref, String personId) async {
|
|
final PersonService personService = ref.read(personServiceProvider);
|
|
final assets = await personService.getPersonAssets(personId);
|
|
|
|
final settings = ref.read(appSettingsServiceProvider);
|
|
final groupBy =
|
|
GroupAssetsBy.values[settings.getSetting(AppSettingsEnum.groupAssetsBy)];
|
|
return await RenderList.fromAssets(assets, groupBy);
|
|
}
|
|
|
|
@riverpod
|
|
Future<bool> updatePersonName(
|
|
UpdatePersonNameRef ref,
|
|
String personId,
|
|
String updatedName,
|
|
) async {
|
|
final PersonService personService = ref.read(personServiceProvider);
|
|
final person = await personService.updateName(personId, updatedName);
|
|
|
|
if (person != null && person.name == updatedName) {
|
|
ref.invalidate(getAllPeopleProvider);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|