Files
workavia-mail-front/lib/features/push_notification/presentation/action/fcm_action.dart
T
dab246 876cc368b0 Use TupleKey(ObjectKey-AccountId-UserName) to store data to hive
(cherry picked from commit e0ace535d5f3af71eb13598d92524caf2c6d9bbf)
2023-05-08 13:03:51 +07:00

89 lines
2.2 KiB
Dart

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;
class SynchronizeEmailOnForegroundAction extends FcmStateChangeAction {
final AccountId accountId;
final Session? session;
SynchronizeEmailOnForegroundAction(
TypeName typeName,
jmap.State newState,
this.accountId,
this.session
) : super(typeName, newState);
@override
List<Object?> get props => [typeName, newState, accountId, session];
}
class PushNotificationAction extends FcmStateChangeAction {
final Session? session;
final AccountId accountId;
final UserName userName;
PushNotificationAction(
TypeName typeName,
jmap.State newState,
this.session,
this.accountId,
this.userName
) : super(typeName, newState);
@override
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);
@override
List<Object?> get props => [typeName, newState, accountId, session];
}
class SynchronizeMailboxOnForegroundAction extends FcmStateChangeAction {
final AccountId accountId;
SynchronizeMailboxOnForegroundAction(
TypeName typeName,
jmap.State newState,
this.accountId
) : super(typeName, newState);
@override
List<Object?> get props => [typeName, newState, accountId];
}
class StoreMailboxStateToRefreshAction extends FcmStateChangeAction {
final AccountId accountId;
final UserName userName;
StoreMailboxStateToRefreshAction(
TypeName typeName,
jmap.State newState,
this.accountId,
this.userName
) : super(typeName, newState);
@override
List<Object?> get props => [typeName, newState, accountId, userName];
}