mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:37:11 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:immich_mobile/shared/models/user.dart';
 | |
| import 'package:openapi/api.dart';
 | |
| 
 | |
| enum ActivityType { comment, like }
 | |
| 
 | |
| class Activity {
 | |
|   final String id;
 | |
|   final String? assetId;
 | |
|   final String? comment;
 | |
|   final DateTime createdAt;
 | |
|   final ActivityType type;
 | |
|   final User user;
 | |
| 
 | |
|   const Activity({
 | |
|     required this.id,
 | |
|     this.assetId,
 | |
|     this.comment,
 | |
|     required this.createdAt,
 | |
|     required this.type,
 | |
|     required this.user,
 | |
|   });
 | |
| 
 | |
|   Activity copyWith({
 | |
|     String? id,
 | |
|     String? assetId,
 | |
|     String? comment,
 | |
|     DateTime? createdAt,
 | |
|     ActivityType? type,
 | |
|     User? user,
 | |
|   }) {
 | |
|     return Activity(
 | |
|       id: id ?? this.id,
 | |
|       assetId: assetId ?? this.assetId,
 | |
|       comment: comment ?? this.comment,
 | |
|       createdAt: createdAt ?? this.createdAt,
 | |
|       type: type ?? this.type,
 | |
|       user: user ?? this.user,
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   Activity.fromDto(ActivityResponseDto dto)
 | |
|       : id = dto.id,
 | |
|         assetId = dto.assetId,
 | |
|         comment = dto.comment,
 | |
|         createdAt = dto.createdAt,
 | |
|         type = dto.type == ActivityResponseDtoTypeEnum.comment
 | |
|             ? ActivityType.comment
 | |
|             : ActivityType.like,
 | |
|         user = User(
 | |
|           email: dto.user.email,
 | |
|           name: dto.user.name,
 | |
|           profileImagePath: dto.user.profileImagePath,
 | |
|           id: dto.user.id,
 | |
|           // Placeholder values
 | |
|           isAdmin: false,
 | |
|           updatedAt: DateTime.now(),
 | |
|           isPartnerSharedBy: false,
 | |
|           isPartnerSharedWith: false,
 | |
|           memoryEnabled: false,
 | |
|         );
 | |
| 
 | |
|   @override
 | |
|   String toString() {
 | |
|     return 'Activity(id: $id, assetId: $assetId, comment: $comment, createdAt: $createdAt, type: $type, user: $user)';
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   bool operator ==(Object other) {
 | |
|     if (identical(this, other)) return true;
 | |
| 
 | |
|     return other is Activity &&
 | |
|         other.id == id &&
 | |
|         other.assetId == assetId &&
 | |
|         other.comment == comment &&
 | |
|         other.createdAt == createdAt &&
 | |
|         other.type == type &&
 | |
|         other.user == user;
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   int get hashCode {
 | |
|     return id.hashCode ^
 | |
|         assetId.hashCode ^
 | |
|         comment.hashCode ^
 | |
|         createdAt.hashCode ^
 | |
|         type.hashCode ^
 | |
|         user.hashCode;
 | |
|   }
 | |
| }
 |