Skip to content

Commit aabfe6a

Browse files
tddang-linagorahoangdat
authored andcommitted
TF-3450 Refactor image and text preview
1 parent ef1d37f commit aabfe6a

14 files changed

+94
-285
lines changed

core/lib/domain/preview/supported_preview_file_types.dart

+5
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,18 @@ class SupportedPreviewFileTypes {
33
'image/bmp',
44
'image/jpeg',
55
'image/gif',
6+
'image/webp',
67
'image/png',];
78

89
static const textMimeTypes = [
910
'text/plain',
1011
'text/markdown',
1112
];
1213

14+
static const jsonMimeTypes = [
15+
'application/json',
16+
];
17+
1318
static const docMimeTypes = [
1419
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
1520
'application/vnd.oasis.opendocument.text',

core/lib/presentation/extensions/media_type_extension.dart

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ extension MediaTypeExtension on MediaType {
2323

2424
bool isTextFile() => SupportedPreviewFileTypes.textMimeTypes.contains(mimeType);
2525

26+
bool isJsonFile() => SupportedPreviewFileTypes.jsonMimeTypes.contains(mimeType);
27+
2628
DocumentUti getDocumentUti() => DocumentUti(SupportedPreviewFileTypes.iOSSupportedTypes[mimeType]);
2729

2830
String getIcon(ImagePaths imagePaths, {String? fileName}) {

lib/features/email/domain/state/download_attachment_for_web_state.dart

+6-4
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ class StartDownloadAttachmentForWeb extends UIState {
1212
final DownloadTaskId taskId;
1313
final Attachment attachment;
1414
final CancelToken? cancelToken;
15+
final bool previewerSupported;
1516

16-
StartDownloadAttachmentForWeb(this.taskId, this.attachment, [this.cancelToken]);
17+
StartDownloadAttachmentForWeb(this.taskId, this.attachment, [this.cancelToken, this.previewerSupported = false]);
1718

1819
@override
19-
List<Object?> get props => [taskId, attachment, cancelToken];
20+
List<Object?> get props => [taskId, attachment, cancelToken, previewerSupported];
2021
}
2122

2223
class DownloadingAttachmentForWeb extends UIState {
@@ -50,11 +51,12 @@ class DownloadAttachmentForWebSuccess extends UIState {
5051
final DownloadTaskId taskId;
5152
final Attachment attachment;
5253
final Uint8List bytes;
54+
final bool previewerSupported;
5355

54-
DownloadAttachmentForWebSuccess(this.taskId, this.attachment, this.bytes);
56+
DownloadAttachmentForWebSuccess(this.taskId, this.attachment, this.bytes, this.previewerSupported);
5557

5658
@override
57-
List<Object> get props => [taskId, attachment, bytes];
59+
List<Object> get props => [taskId, attachment, bytes, previewerSupported];
5860
}
5961

6062
class DownloadAttachmentForWebFailure extends FeatureFailure {

lib/features/email/domain/state/get_image_data_from_attachment_state.dart

-31
This file was deleted.

lib/features/email/domain/state/get_text_data_from_attachment_state.dart

-31
This file was deleted.

lib/features/email/domain/usecases/download_attachment_for_web_interactor.dart

+7-5
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,12 @@ class DownloadAttachmentForWebInteractor {
3535
AccountId accountId,
3636
String baseDownloadUrl,
3737
StreamController<Either<Failure, Success>> onReceiveController,
38-
{CancelToken? cancelToken}
39-
) async* {
38+
{CancelToken? cancelToken,
39+
bool previewerSupported = false,
40+
}) async* {
4041
try {
41-
yield Right<Failure, Success>(StartDownloadAttachmentForWeb(taskId, attachment, cancelToken));
42-
onReceiveController.add(Right(StartDownloadAttachmentForWeb(taskId, attachment, cancelToken)));
42+
yield Right<Failure, Success>(StartDownloadAttachmentForWeb(taskId, attachment, cancelToken, previewerSupported));
43+
onReceiveController.add(Right(StartDownloadAttachmentForWeb(taskId, attachment, cancelToken, previewerSupported)));
4344

4445
final currentAccount = await _accountRepository.getCurrentAccount();
4546
AccountRequest? accountRequest;
@@ -69,7 +70,8 @@ class DownloadAttachmentForWebInteractor {
6970
DownloadAttachmentForWebSuccess(
7071
taskId,
7172
attachment,
72-
bytesDownloaded
73+
bytesDownloaded,
74+
previewerSupported,
7375
)
7476
);
7577
} catch (exception) {

lib/features/email/domain/usecases/get_image_data_from_attachment_interactor.dart

-62
This file was deleted.

lib/features/email/domain/usecases/get_text_data_from_attachment_interactor.dart

-62
This file was deleted.

lib/features/email/presentation/bindings/email_bindings.dart

-10
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ import 'package:tmail_ui_user/features/email/domain/usecases/download_attachment
2222
import 'package:tmail_ui_user/features/email/domain/usecases/export_all_attachments_interactor.dart';
2323
import 'package:tmail_ui_user/features/email/domain/usecases/export_attachment_interactor.dart';
2424
import 'package:tmail_ui_user/features/email/domain/usecases/get_email_content_interactor.dart';
25-
import 'package:tmail_ui_user/features/email/domain/usecases/get_image_data_from_attachment_interactor.dart';
2625
import 'package:tmail_ui_user/features/email/domain/usecases/get_stored_email_state_interactor.dart';
27-
import 'package:tmail_ui_user/features/email/domain/usecases/get_text_data_from_attachment_interactor.dart';
2826
import 'package:tmail_ui_user/features/email/domain/usecases/mark_as_email_read_interactor.dart';
2927
import 'package:tmail_ui_user/features/email/domain/usecases/mark_as_star_email_interactor.dart';
3028
import 'package:tmail_ui_user/features/email/domain/usecases/move_to_mailbox_interactor.dart';
@@ -86,8 +84,6 @@ class EmailBindings extends BaseBindings {
8684
Get.find<GetHtmlContentFromAttachmentInteractor>(),
8785
Get.find<DownloadAllAttachmentsForWebInteractor>(),
8886
Get.find<ExportAllAttachmentsInteractor>(),
89-
Get.find<GetImageDataFromAttachmentInteractor>(),
90-
Get.find<GetTextDataFromAttachmentInteractor>(),
9187
));
9288
}
9389

@@ -186,12 +182,6 @@ class EmailBindings extends BaseBindings {
186182
Get.find<AccountRepository>(),
187183
Get.find<AuthenticationOIDCRepository>(),
188184
Get.find<CredentialRepository>()));
189-
Get.lazyPut(() => GetImageDataFromAttachmentInteractor(
190-
Get.find<DownloadAttachmentForWebInteractor>(),
191-
));
192-
Get.lazyPut(() => GetTextDataFromAttachmentInteractor(
193-
Get.find<DownloadAttachmentForWebInteractor>(),
194-
));
195185
}
196186

197187
@override

0 commit comments

Comments
 (0)