mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:37:11 -04:00 
			
		
		
		
	* chore: bump dart sdk to 3.8 * chore: make build * make pigeon * chore: format files --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:drift/drift.dart';
 | |
| import 'package:immich_mobile/domain/models/asset/base_asset.model.dart';
 | |
| import 'package:immich_mobile/infrastructure/entities/local_asset.entity.drift.dart';
 | |
| import 'package:immich_mobile/infrastructure/utils/asset.mixin.dart';
 | |
| import 'package:immich_mobile/infrastructure/utils/drift_default.mixin.dart';
 | |
| 
 | |
| @TableIndex(name: 'idx_local_asset_checksum', columns: {#checksum})
 | |
| class LocalAssetEntity extends Table with DriftDefaultsMixin, AssetEntityMixin {
 | |
|   const LocalAssetEntity();
 | |
| 
 | |
|   TextColumn get id => text()();
 | |
|   TextColumn get checksum => text().nullable()();
 | |
| 
 | |
|   // Only used during backup to mirror the favorite status of the asset in the server
 | |
|   BoolColumn get isFavorite => boolean().withDefault(const Constant(false))();
 | |
| 
 | |
|   IntColumn get orientation => integer().withDefault(const Constant(0))();
 | |
| 
 | |
|   @override
 | |
|   Set<Column> get primaryKey => {id};
 | |
| }
 | |
| 
 | |
| extension LocalAssetEntityDataDomainEx on LocalAssetEntityData {
 | |
|   LocalAsset toDto() => LocalAsset(
 | |
|     id: id,
 | |
|     name: name,
 | |
|     checksum: checksum,
 | |
|     type: type,
 | |
|     createdAt: createdAt,
 | |
|     updatedAt: updatedAt,
 | |
|     durationInSeconds: durationInSeconds,
 | |
|     isFavorite: isFavorite,
 | |
|     height: height,
 | |
|     width: width,
 | |
|     remoteId: null,
 | |
|     orientation: orientation,
 | |
|   );
 | |
| }
 |