mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
1633af7af6
* introduce Asset as composition of AssetResponseDTO and AssetEntity * filter out duplicate assets (that are both local and remote, take only remote for now) * only allow remote images to be added to albums * introduce ImmichImage to render Asset using local or remote data * optimized deletion of local assets * local video file playback * allow multiple methods to wait on background service finished * skip local assets when adding to album from home screen * fix and optimize delete * show gray box placeholder for local assets * add comments * fix bug: duplicate assets in state after onNewAssetUploaded
49 lines
1.5 KiB
Dart
49 lines
1.5 KiB
Dart
import 'package:collection/collection.dart';
|
|
import 'package:immich_mobile/shared/models/asset.dart';
|
|
|
|
class AssetSelectionPageResult {
|
|
final Set<Asset> selectedNewAsset;
|
|
final Set<Asset> selectedAdditionalAsset;
|
|
final bool isAlbumExist;
|
|
|
|
AssetSelectionPageResult({
|
|
required this.selectedNewAsset,
|
|
required this.selectedAdditionalAsset,
|
|
required this.isAlbumExist,
|
|
});
|
|
|
|
AssetSelectionPageResult copyWith({
|
|
Set<Asset>? selectedNewAsset,
|
|
Set<Asset>? selectedAdditionalAsset,
|
|
bool? isAlbumExist,
|
|
}) {
|
|
return AssetSelectionPageResult(
|
|
selectedNewAsset: selectedNewAsset ?? this.selectedNewAsset,
|
|
selectedAdditionalAsset:
|
|
selectedAdditionalAsset ?? this.selectedAdditionalAsset,
|
|
isAlbumExist: isAlbumExist ?? this.isAlbumExist,
|
|
);
|
|
}
|
|
|
|
@override
|
|
String toString() =>
|
|
'AssetSelectionPageResult(selectedNewAsset: $selectedNewAsset, selectedAdditionalAsset: $selectedAdditionalAsset, isAlbumExist: $isAlbumExist)';
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (identical(this, other)) return true;
|
|
final setEquals = const DeepCollectionEquality().equals;
|
|
|
|
return other is AssetSelectionPageResult &&
|
|
setEquals(other.selectedNewAsset, selectedNewAsset) &&
|
|
setEquals(other.selectedAdditionalAsset, selectedAdditionalAsset) &&
|
|
other.isAlbumExist == isAlbumExist;
|
|
}
|
|
|
|
@override
|
|
int get hashCode =>
|
|
selectedNewAsset.hashCode ^
|
|
selectedAdditionalAsset.hashCode ^
|
|
isAlbumExist.hashCode;
|
|
}
|