mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 17:26:18 +01:00
63 lines
2.1 KiB
Dart
63 lines
2.1 KiB
Dart
import 'package:nc_photos/entity/album.dart';
|
|
import 'package:nc_photos/entity/album/cover_provider.dart';
|
|
import 'package:nc_photos/entity/album/item.dart';
|
|
import 'package:nc_photos/entity/album/sort_provider.dart';
|
|
import 'package:nc_photos/entity/file_util.dart' as file_util;
|
|
|
|
class UpdateAutoAlbumCover {
|
|
/// Update the AlbumAutoCoverProvider of an album with unsorted items
|
|
///
|
|
/// If no updates are needed, return the same object
|
|
Album call(Album album, List<AlbumItem> items) {
|
|
if (album.coverProvider is! AlbumAutoCoverProvider) {
|
|
return album;
|
|
} else {
|
|
final sortedItems =
|
|
const AlbumTimeSortProvider(isAscending: false).sort(items);
|
|
return _updateWithSortedItems(album, sortedItems);
|
|
}
|
|
}
|
|
|
|
/// Update the AlbumAutoCoverProvider of an album with pre-sorted files
|
|
///
|
|
/// The album items are expected to be sorted by [AlbumTimeSortProvider] with
|
|
/// isAscending = false, otherwise please call the unsorted version. If no
|
|
/// updates are needed, return the same object
|
|
Album updateWithSortedItems(Album album, List<AlbumItem> sortedItems) {
|
|
if (album.coverProvider is! AlbumAutoCoverProvider) {
|
|
return album;
|
|
} else {
|
|
return _updateWithSortedItems(album, sortedItems);
|
|
}
|
|
}
|
|
|
|
Album _updateWithSortedItems(Album album, List<AlbumItem> sortedItems) {
|
|
if (sortedItems.isEmpty) {
|
|
if (album.coverProvider != AlbumAutoCoverProvider()) {
|
|
return album.copyWith(coverProvider: AlbumAutoCoverProvider());
|
|
} else {
|
|
return album;
|
|
}
|
|
}
|
|
|
|
try {
|
|
final coverFile = sortedItems
|
|
.whereType<AlbumFileItem>()
|
|
.map((e) => e.file)
|
|
.where((element) => file_util.isSupportedFormat(element))
|
|
.firstWhere((element) => element.hasPreview ?? false);
|
|
// cache the result for later use
|
|
if (coverFile.path !=
|
|
(album.coverProvider as AlbumAutoCoverProvider).coverFile?.path) {
|
|
return album.copyWith(
|
|
coverProvider: AlbumAutoCoverProvider(
|
|
coverFile: coverFile,
|
|
),
|
|
);
|
|
}
|
|
} on StateError catch (_) {
|
|
// no files
|
|
}
|
|
return album;
|
|
}
|
|
}
|