mirror of
https://github.com/immich-app/immich.git
synced 2024-12-24 10:37:28 +02:00
8dcc01b2be
* add shared links page * feat(mobile): shared link items * feat(mobile): create / edit shared links page * server: add changeExpiryTime to SharedLinkEditDto * fix(mobile): edit expiry to never * mobile: add icon when shares list is empty * mobile: create new share from album / timeline * mobile: add translation texts * mobile: minor ui fixes * fix: handle serverURL with /api path * mobile: show share link on successful creation * mobile: shared links list - 2 column layout * mobile: use sharedlink pod class instead of dto * mobile: show error on link creation * mobile: show share icon only when remote assets are in selection * mobile: use server endpoint instead of server url * styling * styling --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
108 lines
3.2 KiB
Dart
108 lines
3.2 KiB
Dart
import 'package:openapi/api.dart';
|
|
|
|
enum SharedLinkSource { album, individual }
|
|
|
|
class SharedLink {
|
|
final String id;
|
|
final String title;
|
|
final bool allowDownload;
|
|
final bool allowUpload;
|
|
final String? thumbAssetId;
|
|
final String? description;
|
|
final DateTime? expiresAt;
|
|
final String key;
|
|
final bool showMetadata;
|
|
final SharedLinkSource type;
|
|
|
|
const SharedLink({
|
|
required this.id,
|
|
required this.title,
|
|
required this.allowDownload,
|
|
required this.allowUpload,
|
|
required this.thumbAssetId,
|
|
required this.description,
|
|
required this.expiresAt,
|
|
required this.key,
|
|
required this.showMetadata,
|
|
required this.type,
|
|
});
|
|
|
|
SharedLink copyWith({
|
|
String? id,
|
|
String? title,
|
|
String? thumbAssetId,
|
|
bool? allowDownload,
|
|
bool? allowUpload,
|
|
String? description,
|
|
DateTime? expiresAt,
|
|
String? key,
|
|
bool? showMetadata,
|
|
SharedLinkSource? type,
|
|
}) {
|
|
return SharedLink(
|
|
id: id ?? this.id,
|
|
title: title ?? this.title,
|
|
thumbAssetId: thumbAssetId ?? this.thumbAssetId,
|
|
allowDownload: allowDownload ?? this.allowDownload,
|
|
allowUpload: allowUpload ?? this.allowUpload,
|
|
description: description ?? this.description,
|
|
expiresAt: expiresAt ?? this.expiresAt,
|
|
key: key ?? this.key,
|
|
showMetadata: showMetadata ?? this.showMetadata,
|
|
type: type ?? this.type,
|
|
);
|
|
}
|
|
|
|
SharedLink.fromDto(SharedLinkResponseDto dto)
|
|
: id = dto.id,
|
|
allowDownload = dto.allowDownload,
|
|
allowUpload = dto.allowUpload,
|
|
description = dto.description,
|
|
expiresAt = dto.expiresAt,
|
|
key = dto.key,
|
|
showMetadata = dto.showMetadata,
|
|
type = dto.type == SharedLinkType.ALBUM
|
|
? SharedLinkSource.album
|
|
: SharedLinkSource.individual,
|
|
title = dto.type == SharedLinkType.ALBUM
|
|
? dto.album?.albumName.toUpperCase() ?? "UNKNOWN SHARE"
|
|
: "INDIVIDUAL SHARE",
|
|
thumbAssetId = dto.type == SharedLinkType.ALBUM
|
|
? dto.album?.albumThumbnailAssetId
|
|
: dto.assets.isNotEmpty
|
|
? dto.assets[0].id
|
|
: null;
|
|
|
|
@override
|
|
String toString() =>
|
|
'SharedLink(id=$id, title=$title, thumbAssetId=$thumbAssetId, allowDownload=$allowDownload, allowUpload=$allowUpload, description=$description, expiresAt=$expiresAt, key=$key, showMetadata=$showMetadata, type=$type)';
|
|
|
|
@override
|
|
bool operator ==(Object other) =>
|
|
identical(this, other) ||
|
|
other is SharedLink &&
|
|
other.id == id &&
|
|
other.title == title &&
|
|
other.thumbAssetId == thumbAssetId &&
|
|
other.allowDownload == allowDownload &&
|
|
other.allowUpload == allowUpload &&
|
|
other.description == description &&
|
|
other.expiresAt == expiresAt &&
|
|
other.key == key &&
|
|
other.showMetadata == showMetadata &&
|
|
other.type == type;
|
|
|
|
@override
|
|
int get hashCode =>
|
|
id.hashCode ^
|
|
title.hashCode ^
|
|
thumbAssetId.hashCode ^
|
|
allowDownload.hashCode ^
|
|
allowUpload.hashCode ^
|
|
description.hashCode ^
|
|
expiresAt.hashCode ^
|
|
key.hashCode ^
|
|
showMetadata.hashCode ^
|
|
type.hashCode;
|
|
}
|