TF-3416 Handle download attachment in EML previewer on mobile

This commit is contained in:
dab246
2025-01-14 02:52:18 +07:00
committed by Dat H. Pham
parent 27f64d97a8
commit 91f3275a54
9 changed files with 146 additions and 28 deletions
@@ -1,6 +1,10 @@
import 'package:core/data/constants/constant.dart';
import 'package:core/presentation/extensions/media_type_extension.dart';
import 'package:core/presentation/resources/image_paths.dart';
import 'package:core/utils/platform_info.dart';
import 'package:model/email/attachment.dart';
import 'package:tmail_ui_user/main/routes/app_routes.dart';
import 'package:tmail_ui_user/main/routes/route_utils.dart';
extension AttachmentExtension on Attachment {
String getIcon(ImagePaths imagePaths) => type?.getIcon(imagePaths, fileName: name) ?? imagePaths.icFileEPup;
@@ -8,4 +12,27 @@ extension AttachmentExtension on Attachment {
bool get isPDFFile => type?.isPDFFile(fileName: name) ?? false;
bool get isEMLFile => type?.isEMLFile ?? false;
String get hyperLink => isEMLFile ? emlLink : attachmentLink;
String get emlLink {
if (blobId == null) return '';
if (PlatformInfo.isWeb) {
return RouteUtils.createUrlWebLocationBar(
AppRoutes.emailEMLPreviewer,
previewId: blobId!.value,
).toString();
} else if (PlatformInfo.isMobile) {
return '${Constant.emlPreviewerScheme}:${blobId!.value}';
} else {
return '';
}
}
String get attachmentLink {
if (blobId == null) return '';
return '${Constant.attachmentScheme}:${blobId!.value}?name=${name ?? ''}&size=${size?.value ?? ''}&type=${type?.mimeType ?? ''}';
}
}