mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:35:00 -04:00 
			
		
		
		
	* New features - Share album. Users can now create albums to share with existing people on the network. - Owner can delete the album. - Owner can invite the additional users to the album. - Shared users and the owner can add additional assets to the album. * In the asset viewer, the user can swipe up to see detailed information and swip down to dismiss. * Several UI enhancements.
		
			
				
	
	
		
			114 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'dart:convert';
 | |
| 
 | |
| import 'package:collection/collection.dart';
 | |
| 
 | |
| import 'package:immich_mobile/modules/sharing/models/shared_asset.model.dart';
 | |
| import 'package:immich_mobile/modules/sharing/models/shared_user.model.dart';
 | |
| 
 | |
| class SharedAlbum {
 | |
|   final String id;
 | |
|   final String ownerId;
 | |
|   final String albumName;
 | |
|   final String createdAt;
 | |
|   final String? albumThumbnailAssetId;
 | |
|   final List<SharedUsers> sharedUsers;
 | |
|   final List<SharedAssets>? sharedAssets;
 | |
| 
 | |
|   SharedAlbum({
 | |
|     required this.id,
 | |
|     required this.ownerId,
 | |
|     required this.albumName,
 | |
|     required this.createdAt,
 | |
|     required this.albumThumbnailAssetId,
 | |
|     required this.sharedUsers,
 | |
|     this.sharedAssets,
 | |
|   });
 | |
| 
 | |
|   SharedAlbum copyWith({
 | |
|     String? id,
 | |
|     String? ownerId,
 | |
|     String? albumName,
 | |
|     String? createdAt,
 | |
|     String? albumThumbnailAssetId,
 | |
|     List<SharedUsers>? sharedUsers,
 | |
|     List<SharedAssets>? sharedAssets,
 | |
|   }) {
 | |
|     return SharedAlbum(
 | |
|       id: id ?? this.id,
 | |
|       ownerId: ownerId ?? this.ownerId,
 | |
|       albumName: albumName ?? this.albumName,
 | |
|       createdAt: createdAt ?? this.createdAt,
 | |
|       albumThumbnailAssetId: albumThumbnailAssetId ?? this.albumThumbnailAssetId,
 | |
|       sharedUsers: sharedUsers ?? this.sharedUsers,
 | |
|       sharedAssets: sharedAssets ?? this.sharedAssets,
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   Map<String, dynamic> toMap() {
 | |
|     final result = <String, dynamic>{};
 | |
| 
 | |
|     result.addAll({'id': id});
 | |
|     result.addAll({'ownerId': ownerId});
 | |
|     result.addAll({'albumName': albumName});
 | |
|     result.addAll({'createdAt': createdAt});
 | |
|     if (albumThumbnailAssetId != null) {
 | |
|       result.addAll({'albumThumbnailAssetId': albumThumbnailAssetId});
 | |
|     }
 | |
|     result.addAll({'sharedUsers': sharedUsers.map((x) => x.toMap()).toList()});
 | |
|     if (sharedAssets != null) {
 | |
|       result.addAll({'sharedAssets': sharedAssets!.map((x) => x.toMap()).toList()});
 | |
|     }
 | |
| 
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   factory SharedAlbum.fromMap(Map<String, dynamic> map) {
 | |
|     return SharedAlbum(
 | |
|       id: map['id'] ?? '',
 | |
|       ownerId: map['ownerId'] ?? '',
 | |
|       albumName: map['albumName'] ?? '',
 | |
|       createdAt: map['createdAt'] ?? '',
 | |
|       albumThumbnailAssetId: map['albumThumbnailAssetId'],
 | |
|       sharedUsers: List<SharedUsers>.from(map['sharedUsers']?.map((x) => SharedUsers.fromMap(x))),
 | |
|       sharedAssets: map['sharedAssets'] != null
 | |
|           ? List<SharedAssets>.from(map['sharedAssets']?.map((x) => SharedAssets.fromMap(x)))
 | |
|           : null,
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   String toJson() => json.encode(toMap());
 | |
| 
 | |
|   factory SharedAlbum.fromJson(String source) => SharedAlbum.fromMap(json.decode(source));
 | |
| 
 | |
|   @override
 | |
|   String toString() {
 | |
|     return 'SharedAlbum(id: $id, ownerId: $ownerId, albumName: $albumName, createdAt: $createdAt, albumThumbnailAssetId: $albumThumbnailAssetId, sharedUsers: $sharedUsers, sharedAssets: $sharedAssets)';
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   bool operator ==(Object other) {
 | |
|     if (identical(this, other)) return true;
 | |
|     final listEquals = const DeepCollectionEquality().equals;
 | |
| 
 | |
|     return other is SharedAlbum &&
 | |
|         other.id == id &&
 | |
|         other.ownerId == ownerId &&
 | |
|         other.albumName == albumName &&
 | |
|         other.createdAt == createdAt &&
 | |
|         other.albumThumbnailAssetId == albumThumbnailAssetId &&
 | |
|         listEquals(other.sharedUsers, sharedUsers) &&
 | |
|         listEquals(other.sharedAssets, sharedAssets);
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   int get hashCode {
 | |
|     return id.hashCode ^
 | |
|         ownerId.hashCode ^
 | |
|         albumName.hashCode ^
 | |
|         createdAt.hashCode ^
 | |
|         albumThumbnailAssetId.hashCode ^
 | |
|         sharedUsers.hashCode ^
 | |
|         sharedAssets.hashCode;
 | |
|   }
 | |
| }
 |