TW-4308 Add labels for several messages part 2 (#4431)

Add ChooseLabelModal, delegate, and update label UI components

Wire add-labels action across Thread, Search, and Dashboard
This commit is contained in:
Dat Dang
2026-04-15 14:25:37 +07:00
committed by GitHub
parent 77c2ef745f
commit 6fc88f780c
20 changed files with 560 additions and 83 deletions
@@ -3,21 +3,29 @@ import 'package:core/presentation/state/success.dart';
import 'package:jmap_dart_client/jmap/mail/email/email.dart';
import 'package:jmap_dart_client/jmap/mail/email/keyword_identifier.dart';
typedef OnSyncListLabelForListEmail = void Function(
List<EmailId> emailIds,
List<KeyWordIdentifier> labelKeywords,
{bool shouldRemove}
);
class AddingListLabelsToListEmails extends LoadingState {}
class AddListLabelsToListEmailsSuccess extends UIState {
final List<EmailId> emailIds;
final List<KeyWordIdentifier> labelKeywords;
final List<String> labelDisplays;
final OnSyncListLabelForListEmail? onSync;
AddListLabelsToListEmailsSuccess(
this.emailIds,
this.labelKeywords,
this.labelDisplays,
);
this.labelDisplays, {
this.onSync,
});
@override
List<Object> get props => [emailIds, labelKeywords, labelDisplays];
List<Object?> get props => [emailIds, labelKeywords, labelDisplays];
}
class AddListLabelsToListEmailsHasSomeFailure
@@ -25,11 +33,12 @@ class AddListLabelsToListEmailsHasSomeFailure
AddListLabelsToListEmailsHasSomeFailure(
super.emailIds,
super.labelKeywords,
super.labelDisplays,
);
super.labelDisplays, {
super.onSync,
});
@override
List<Object> get props => [...super.props, 'hasSomeFailure'];
List<Object?> get props => [...super.props, 'hasSomeFailure'];
}
class AddListLabelsToListEmailsFailure extends FeatureFailure {