mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
15c04d3056
* refactor(mobile): DB repository for asset, backup, sync service * review feedback * fix bug found by Alex --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
31 lines
992 B
Dart
31 lines
992 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/entities/exif_info.entity.dart';
|
|
import 'package:immich_mobile/interfaces/exif_info.interface.dart';
|
|
import 'package:immich_mobile/providers/db.provider.dart';
|
|
import 'package:immich_mobile/repositories/database.repository.dart';
|
|
|
|
final exifInfoRepositoryProvider =
|
|
Provider((ref) => ExifInfoRepository(ref.watch(dbProvider)));
|
|
|
|
class ExifInfoRepository extends DatabaseRepository
|
|
implements IExifInfoRepository {
|
|
ExifInfoRepository(super.db);
|
|
|
|
@override
|
|
Future<void> delete(int id) => txn(() => db.exifInfos.delete(id));
|
|
|
|
@override
|
|
Future<ExifInfo?> get(int id) => db.exifInfos.get(id);
|
|
|
|
@override
|
|
Future<ExifInfo> update(ExifInfo exifInfo) async {
|
|
await txn(() => db.exifInfos.put(exifInfo));
|
|
return exifInfo;
|
|
}
|
|
|
|
@override
|
|
Future<List<ExifInfo>> updateAll(List<ExifInfo> exifInfos) async {
|
|
await txn(() => db.exifInfos.putAll(exifInfos));
|
|
return exifInfos;
|
|
}
|
|
}
|