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>
79 lines
1.9 KiB
Dart
79 lines
1.9 KiB
Dart
part of 'base_asset.model.dart';
|
|
|
|
class LocalAsset extends BaseAsset {
|
|
final String id;
|
|
final String? remoteId;
|
|
|
|
const LocalAsset({
|
|
required this.id,
|
|
this.remoteId,
|
|
required super.name,
|
|
super.checksum,
|
|
required super.type,
|
|
required super.createdAt,
|
|
required super.updatedAt,
|
|
super.width,
|
|
super.height,
|
|
super.durationInSeconds,
|
|
super.isFavorite = false,
|
|
});
|
|
|
|
@override
|
|
AssetState get storage =>
|
|
remoteId == null ? AssetState.local : AssetState.merged;
|
|
|
|
@override
|
|
String toString() {
|
|
return '''LocalAsset {
|
|
id: $id,
|
|
name: $name,
|
|
type: $type,
|
|
createdAt: $createdAt,
|
|
updatedAt: $updatedAt,
|
|
width: ${width ?? "<NA>"},
|
|
height: ${height ?? "<NA>"},
|
|
durationInSeconds: ${durationInSeconds ?? "<NA>"},
|
|
remoteId: ${remoteId ?? "<NA>"}
|
|
isFavorite: $isFavorite,
|
|
}''';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (other is! LocalAsset) return false;
|
|
if (identical(this, other)) return true;
|
|
return super == other && id == other.id && remoteId == other.remoteId;
|
|
}
|
|
|
|
@override
|
|
int get hashCode => super.hashCode ^ id.hashCode ^ remoteId.hashCode;
|
|
|
|
LocalAsset copyWith({
|
|
String? id,
|
|
String? remoteId,
|
|
String? name,
|
|
String? checksum,
|
|
AssetType? type,
|
|
DateTime? createdAt,
|
|
DateTime? updatedAt,
|
|
int? width,
|
|
int? height,
|
|
int? durationInSeconds,
|
|
bool? isFavorite,
|
|
}) {
|
|
return LocalAsset(
|
|
id: id ?? this.id,
|
|
remoteId: remoteId ?? this.remoteId,
|
|
name: name ?? this.name,
|
|
checksum: checksum ?? this.checksum,
|
|
type: type ?? this.type,
|
|
createdAt: createdAt ?? this.createdAt,
|
|
updatedAt: updatedAt ?? this.updatedAt,
|
|
width: width ?? this.width,
|
|
height: height ?? this.height,
|
|
durationInSeconds: durationInSeconds ?? this.durationInSeconds,
|
|
isFavorite: isFavorite ?? this.isFavorite,
|
|
);
|
|
}
|
|
}
|