89 lines
3.2 KiB
Dart
89 lines
3.2 KiB
Dart
|
|
import 'package:jmap_dart_client/jmap/core/properties/properties.dart';
|
|
import 'package:jmap_dart_client/jmap/mail/email/email.dart';
|
|
import 'package:jmap_dart_client/jmap/mail/email/keyword_identifier.dart';
|
|
import 'package:model/email/email_property.dart';
|
|
import 'package:model/model.dart';
|
|
|
|
extension EmailExtension on Email {
|
|
|
|
bool isUnReadEmail() => !(keywords?.containsKey(KeyWordIdentifier.emailSeen) == true);
|
|
|
|
bool isReadEmail() => keywords?.containsKey(KeyWordIdentifier.emailSeen) == true;
|
|
|
|
bool isFlaggedEmail() => keywords?.containsKey(KeyWordIdentifier.emailFlagged) == true;
|
|
|
|
Set<String> getRecipientEmailAddressList() {
|
|
final listEmailAddress = Set<String>();
|
|
final listToAddress = to.getListAddress() ?? [];
|
|
final listCcAddress = cc.getListAddress() ?? [];
|
|
final listBccAddress = bcc.getListAddress() ?? [];
|
|
listEmailAddress.addAll(listToAddress + listCcAddress + listBccAddress);
|
|
return listEmailAddress;
|
|
}
|
|
|
|
EmailContent toEmailContent() {
|
|
return EmailContent(
|
|
id,
|
|
htmlBody: htmlBody,
|
|
attachments: attachments,
|
|
bodyValues: bodyValues
|
|
);
|
|
}
|
|
|
|
Email updatedEmail({Map<KeyWordIdentifier, bool>? newKeywords}) {
|
|
return Email(
|
|
id,
|
|
keywords: newKeywords ?? keywords,
|
|
size: size,
|
|
receivedAt: receivedAt,
|
|
hasAttachment: hasAttachment,
|
|
preview: preview,
|
|
subject: subject,
|
|
sentAt: sentAt,
|
|
from: from,
|
|
to: to,
|
|
cc: cc,
|
|
bcc: bcc,
|
|
replyTo: replyTo
|
|
);
|
|
}
|
|
|
|
PresentationEmail toPresentationEmail({SelectMode selectMode = SelectMode.INACTIVE}) {
|
|
return PresentationEmail(
|
|
id,
|
|
keywords: keywords,
|
|
size: size,
|
|
receivedAt: receivedAt,
|
|
hasAttachment: hasAttachment,
|
|
preview: preview,
|
|
subject: subject,
|
|
sentAt: sentAt,
|
|
from: from,
|
|
to: to,
|
|
cc: cc,
|
|
bcc: bcc,
|
|
replyTo: replyTo,
|
|
selectMode: selectMode
|
|
);
|
|
}
|
|
|
|
Email combineEmail(Email newEmail, Properties updatedProperties) {
|
|
return Email(
|
|
newEmail.id,
|
|
keywords: updatedProperties.contain(EmailProperty.keywords) ? newEmail.keywords : keywords,
|
|
size: updatedProperties.contain(EmailProperty.size) ? newEmail.size : size,
|
|
receivedAt: updatedProperties.contain(EmailProperty.receivedAt) ? newEmail.receivedAt : receivedAt,
|
|
hasAttachment: updatedProperties.contain(EmailProperty.hasAttachment) ? newEmail.hasAttachment : hasAttachment,
|
|
preview: updatedProperties.contain(EmailProperty.preview) ? newEmail.preview : preview,
|
|
subject: updatedProperties.contain(EmailProperty.subject) ? newEmail.subject : subject,
|
|
sentAt: updatedProperties.contain(EmailProperty.sentAt) ? newEmail.sentAt : sentAt,
|
|
from: updatedProperties.contain(EmailProperty.from) ? newEmail.from : from,
|
|
to: updatedProperties.contain(EmailProperty.to) ? newEmail.to : to,
|
|
cc: updatedProperties.contain(EmailProperty.cc) ? newEmail.cc : cc,
|
|
bcc: updatedProperties.contain(EmailProperty.bcc) ? newEmail.bcc : bcc,
|
|
replyTo: updatedProperties.contain(EmailProperty.replyTo) ? newEmail.replyTo : replyTo,
|
|
mailboxIds: updatedProperties.contain(EmailProperty.mailboxIds) ? newEmail.mailboxIds : mailboxIds,
|
|
);
|
|
}
|
|
} |