mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 16:41:59 +00:00
8338657eaa
* refactor: stacks * mobile: get it built * chore: feedback * fix: sync and duplicates * mobile: remove old stack reference * chore: add primary asset id * revert change to asset entity * mobile: refactor mobile api * mobile: sync stack info after creating stack * mobile: update timeline after deleting stack * server: update asset updatedAt when stack is deleted * mobile: simplify action * mobile: rename to match dto property * fix: web test --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
79 lines
2 KiB
Dart
79 lines
2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
import 'package:immich_mobile/providers/api.provider.dart';
|
|
import 'package:immich_mobile/providers/db.provider.dart';
|
|
import 'package:immich_mobile/services/api.service.dart';
|
|
import 'package:isar/isar.dart';
|
|
import 'package:openapi/api.dart';
|
|
|
|
class StackService {
|
|
StackService(this._api, this._db);
|
|
|
|
final ApiService _api;
|
|
final Isar _db;
|
|
|
|
Future<StackResponseDto?> getStack(String stackId) async {
|
|
try {
|
|
return _api.stacksApi.getStack(stackId);
|
|
} catch (error) {
|
|
debugPrint("Error while fetching stack: $error");
|
|
}
|
|
return null;
|
|
}
|
|
|
|
Future<StackResponseDto?> createStack(List<String> assetIds) async {
|
|
try {
|
|
return _api.stacksApi.createStack(
|
|
StackCreateDto(assetIds: assetIds),
|
|
);
|
|
} catch (error) {
|
|
debugPrint("Error while creating stack: $error");
|
|
}
|
|
return null;
|
|
}
|
|
|
|
Future<StackResponseDto?> updateStack(
|
|
String stackId,
|
|
String primaryAssetId,
|
|
) async {
|
|
try {
|
|
return await _api.stacksApi.updateStack(
|
|
stackId,
|
|
StackUpdateDto(primaryAssetId: primaryAssetId),
|
|
);
|
|
} catch (error) {
|
|
debugPrint("Error while updating stack children: $error");
|
|
}
|
|
return null;
|
|
}
|
|
|
|
Future<void> deleteStack(String stackId, List<Asset> assets) async {
|
|
try {
|
|
await _api.stacksApi.deleteStack(stackId);
|
|
|
|
// Update local database to trigger rerendering
|
|
final List<Asset> removeAssets = [];
|
|
for (final asset in assets) {
|
|
asset.stackId = null;
|
|
asset.stackPrimaryAssetId = null;
|
|
asset.stackCount = 0;
|
|
|
|
removeAssets.add(asset);
|
|
}
|
|
|
|
_db.writeTxn(() async {
|
|
await _db.assets.putAll(removeAssets);
|
|
});
|
|
} catch (error) {
|
|
debugPrint("Error while deleting stack: $error");
|
|
}
|
|
}
|
|
}
|
|
|
|
final stackServiceProvider = Provider(
|
|
(ref) => StackService(
|
|
ref.watch(apiServiceProvider),
|
|
ref.watch(dbProvider),
|
|
),
|
|
);
|