mirror of
https://github.com/immich-app/immich.git
synced 2026-01-01 09:40:38 -05:00
* feat: new create album page * finished create album flow * refactor into stateful widgets * refactor * focus fix * lint * default sort * pr feedback
54 lines
1.4 KiB
Dart
54 lines
1.4 KiB
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/domain/models/album/album.model.dart';
|
|
import 'package:immich_mobile/providers/api.provider.dart';
|
|
import 'package:immich_mobile/repositories/api.repository.dart';
|
|
// ignore: import_rule_openapi
|
|
import 'package:openapi/api.dart';
|
|
|
|
final driftAlbumApiRepositoryProvider = Provider(
|
|
(ref) => DriftAlbumApiRepository(ref.watch(apiServiceProvider).albumsApi),
|
|
);
|
|
|
|
class DriftAlbumApiRepository extends ApiRepository {
|
|
final AlbumsApi _api;
|
|
|
|
DriftAlbumApiRepository(this._api);
|
|
|
|
Future<RemoteAlbum> createDriftAlbum(
|
|
String name, {
|
|
required Iterable<String> assetIds,
|
|
String? description,
|
|
}) async {
|
|
final responseDto = await checkNull(
|
|
_api.createAlbum(
|
|
CreateAlbumDto(
|
|
albumName: name,
|
|
description: description,
|
|
assetIds: assetIds.toList(),
|
|
),
|
|
),
|
|
);
|
|
|
|
return responseDto.toRemoteAlbum();
|
|
}
|
|
}
|
|
|
|
extension on AlbumResponseDto {
|
|
RemoteAlbum toRemoteAlbum() {
|
|
return RemoteAlbum(
|
|
id: id,
|
|
name: albumName,
|
|
ownerId: owner.id,
|
|
description: description,
|
|
createdAt: createdAt,
|
|
updatedAt: updatedAt,
|
|
thumbnailAssetId: albumThumbnailAssetId,
|
|
isActivityEnabled: isActivityEnabled,
|
|
order:
|
|
order == AssetOrder.asc ? AlbumAssetOrder.asc : AlbumAssetOrder.desc,
|
|
assetCount: assetCount,
|
|
ownerName: owner.name,
|
|
);
|
|
}
|
|
}
|