mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
Some checks failed
CLI Build / CLI Publish (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
Docker / pre-job (push) Has been cancelled
Docs build / pre-job (push) Has been cancelled
Zizmor / Zizmor (push) Has been cancelled
Static Code Analysis / pre-job (push) Has been cancelled
Test / pre-job (push) Has been cancelled
Test / ShellCheck (push) Has been cancelled
Test / OpenAPI Clients (push) Has been cancelled
Test / SQL Schema Checks (push) Has been cancelled
CLI Build / Docker (push) Has been cancelled
Docker / Re-Tag ML (push) Has been cancelled
Docker / Re-Tag Server (push) Has been cancelled
Docker / Build and Push ML (push) Has been cancelled
Docker / Build and Push Server (push) Has been cancelled
Docker / Mirror to Docker Hub (push) Has been cancelled
Docker / Docker Build & Push Server Success (push) Has been cancelled
Docker / Docker Build & Push ML Success (push) Has been cancelled
Docs build / Docs Build (push) Has been cancelled
Static Code Analysis / Run Dart Code Analysis (push) Has been cancelled
Test / Scripts unit tests (push) Has been cancelled
Test / Test & Lint Server (push) Has been cancelled
Test / Unit Test CLI (push) Has been cancelled
Test / Unit Test CLI (Windows) (push) Has been cancelled
Test / Lint Web (push) Has been cancelled
Test / Test Web (push) Has been cancelled
Test / Test i18n (push) Has been cancelled
Test / End-to-End Lint (push) Has been cancelled
Test / Medium Tests (Server) (push) Has been cancelled
Test / End-to-End Tests (Server & CLI) (push) Has been cancelled
Test / End-to-End Tests (Web) (push) Has been cancelled
Test / End-to-End Tests Success (push) Has been cancelled
Test / Unit Test Mobile (push) Has been cancelled
Test / Unit Test ML (push) Has been cancelled
Test / .github Files Formatting (push) Has been cancelled
The lints are regrouped and sorted. Also, added the following new lints: - unnecessary_ignore - parameter_assignments - avoid_unused_constructor_parameters - tighten_type_of_initializing_formals - only_throw_errors - deprecated_consistency - unnecessary_statements Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
52 lines
1.4 KiB
Dart
52 lines
1.4 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
import 'package:immich_mobile/domain/models/asset/base_asset.model.dart';
|
|
|
|
part 'memory.model.freezed.dart';
|
|
|
|
// TODO(agg23): Remove enum suffix
|
|
enum MemoryTypeEnum {
|
|
// do not change this order!
|
|
onThisDay,
|
|
}
|
|
|
|
@Freezed(fromJson: false, toJson: false)
|
|
abstract class MemoryData with _$MemoryData {
|
|
const MemoryData._();
|
|
|
|
const factory MemoryData({required int year}) = _MemoryData;
|
|
|
|
Map<String, dynamic> toMap() {
|
|
return <String, dynamic>{'year': year};
|
|
}
|
|
|
|
factory MemoryData.fromMap(Map<String, dynamic> map) {
|
|
return MemoryData(year: map['year'] as int);
|
|
}
|
|
|
|
String toJson() => json.encode(toMap());
|
|
|
|
factory MemoryData.fromJson(String source) => MemoryData.fromMap(json.decode(source) as Map<String, dynamic>);
|
|
}
|
|
|
|
// Model for a memory stored in the server
|
|
// TODO(agg23): DriftMemoryRepository currently mutates `assets`
|
|
@Freezed(makeCollectionsUnmodifiable: false)
|
|
abstract class DriftMemory with _$DriftMemory {
|
|
const factory DriftMemory({
|
|
required String id,
|
|
required DateTime createdAt,
|
|
required DateTime updatedAt,
|
|
DateTime? deletedAt,
|
|
required String ownerId,
|
|
required MemoryTypeEnum type,
|
|
required MemoryData data,
|
|
required bool isSaved,
|
|
required DateTime memoryAt,
|
|
DateTime? seenAt,
|
|
DateTime? showAt,
|
|
DateTime? hideAt,
|
|
required List<RemoteAsset> assets,
|
|
}) = _DriftMemory;
|
|
}
|