Use TupleKey(ObjectKey-AccountId-UserName) to store data to hive

(cherry picked from commit e0ace535d5f3af71eb13598d92524caf2c6d9bbf)
This commit is contained in:
dab246
2023-04-27 11:03:39 +07:00
committed by Dat Vu
parent 7d0a5729b2
commit 876cc368b0
107 changed files with 562 additions and 340 deletions
@@ -2,6 +2,7 @@
import 'package:fcm/model/type_name.dart';
import 'package:jmap_dart_client/jmap/account_id.dart';
import 'package:jmap_dart_client/jmap/core/session/session.dart';
import 'package:jmap_dart_client/jmap/core/user_name.dart';
import 'package:tmail_ui_user/features/base/action/ui_action.dart';
import 'package:jmap_dart_client/jmap/core/state.dart' as jmap;
@@ -25,27 +26,31 @@ class PushNotificationAction extends FcmStateChangeAction {
final Session? session;
final AccountId accountId;
final UserName userName;
PushNotificationAction(
TypeName typeName,
jmap.State newState,
this.session,
this.accountId
this.accountId,
this.userName
) : super(typeName, newState);
@override
List<Object?> get props => [typeName, newState, accountId, session];
List<Object?> get props => [typeName, newState, accountId, session, userName];
}
class StoreEmailStateToRefreshAction extends FcmStateChangeAction {
final AccountId accountId;
final UserName userName;
final Session? session;
StoreEmailStateToRefreshAction(
TypeName typeName,
jmap.State newState,
this.accountId,
this.userName,
this.session
) : super(typeName, newState);
@@ -70,13 +75,15 @@ class SynchronizeMailboxOnForegroundAction extends FcmStateChangeAction {
class StoreMailboxStateToRefreshAction extends FcmStateChangeAction {
final AccountId accountId;
final UserName userName;
StoreMailboxStateToRefreshAction(
TypeName typeName,
jmap.State newState,
this.accountId
this.accountId,
this.userName
) : super(typeName, newState);
@override
List<Object?> get props => [typeName, newState, accountId];
List<Object?> get props => [typeName, newState, accountId, userName];
}