mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
24 lines
930 B
Dart
24 lines
930 B
Dart
import 'package:nc_photos/account.dart';
|
|
import 'package:nc_photos/entity/album.dart';
|
|
import 'package:nc_photos/entity/album/item.dart';
|
|
import 'package:nc_photos/entity/album/provider.dart';
|
|
import 'package:nc_photos/use_case/populate_album.dart';
|
|
import 'package:nc_photos/use_case/resync_album.dart';
|
|
|
|
/// Pre-process an album such that it's ready to be displayed
|
|
///
|
|
/// Internally, it'll dispatch the work depending on the album:
|
|
/// - with AlbumStaticProvider: [ResyncAlbum]
|
|
/// - with AlbumDirProvider: [PopulateAlbum]
|
|
class PreProcessAlbum {
|
|
Future<List<AlbumItem>> call(Account account, Album album) {
|
|
if (album.provider is AlbumStaticProvider) {
|
|
return ResyncAlbum()(account, album);
|
|
} else if (album.provider is AlbumDynamicProvider) {
|
|
return PopulateAlbum()(account, album);
|
|
} else {
|
|
throw ArgumentError(
|
|
"Unknown album provider: ${album.provider.runtimeType}");
|
|
}
|
|
}
|
|
}
|