mirror of
https://github.com/immich-app/immich.git
synced 2025-06-22 06:50:54 -04:00
* wip: timeline * more segment extensions * added scrubber * refactor: timeline state * more refactors * fix scrubber segments * added remote thumb & thumbhash provider * feat: merged view * scrub / merged asset fixes * rename stuff & add tile indicators * fix local album timeline query * ignore hidden assets during sync * ignore recovered assets during sync * old scrubber * add video indicator * handle groupBy * handle partner inTimeline * show duration * reduce widget nesting in thumb tile * merge main * chore: extend cacheExtent * ignore touch events on scrub label when not visible * scrub label ignore events and hide immediately * auto reload on sync * refactor image providers * throttle db updates --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
87 lines
1.8 KiB
Dart
87 lines
1.8 KiB
Dart
part 'asset.model.dart';
|
|
part 'local_asset.model.dart';
|
|
|
|
enum AssetType {
|
|
// do not change this order!
|
|
other,
|
|
image,
|
|
video,
|
|
audio,
|
|
}
|
|
|
|
enum AssetState {
|
|
local,
|
|
remote,
|
|
merged,
|
|
}
|
|
|
|
sealed class BaseAsset {
|
|
final String name;
|
|
final String? checksum;
|
|
final AssetType type;
|
|
final DateTime createdAt;
|
|
final DateTime updatedAt;
|
|
final int? width;
|
|
final int? height;
|
|
final int? durationInSeconds;
|
|
final bool isFavorite;
|
|
|
|
const BaseAsset({
|
|
required this.name,
|
|
required this.checksum,
|
|
required this.type,
|
|
required this.createdAt,
|
|
required this.updatedAt,
|
|
this.width,
|
|
this.height,
|
|
this.durationInSeconds,
|
|
this.isFavorite = false,
|
|
});
|
|
|
|
bool get isImage => type == AssetType.image;
|
|
bool get isVideo => type == AssetType.video;
|
|
AssetState get storage;
|
|
|
|
@override
|
|
String toString() {
|
|
return '''BaseAsset {
|
|
name: $name,
|
|
type: $type,
|
|
createdAt: $createdAt,
|
|
updatedAt: $updatedAt,
|
|
width: ${width ?? "<NA>"},
|
|
height: ${height ?? "<NA>"},
|
|
durationInSeconds: ${durationInSeconds ?? "<NA>"},
|
|
isFavorite: $isFavorite,
|
|
}''';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (identical(this, other)) return true;
|
|
if (other is BaseAsset) {
|
|
return name == other.name &&
|
|
type == other.type &&
|
|
createdAt == other.createdAt &&
|
|
updatedAt == other.updatedAt &&
|
|
width == other.width &&
|
|
height == other.height &&
|
|
durationInSeconds == other.durationInSeconds &&
|
|
isFavorite == other.isFavorite;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@override
|
|
int get hashCode {
|
|
return name.hashCode ^
|
|
type.hashCode ^
|
|
createdAt.hashCode ^
|
|
updatedAt.hashCode ^
|
|
width.hashCode ^
|
|
height.hashCode ^
|
|
durationInSeconds.hashCode ^
|
|
isFavorite.hashCode;
|
|
}
|
|
}
|