mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
c4926ae63a
* Fix popping wrong context in exchange page * Pass exception handler to wallets code * Fix mobile UI with iPad view * Set iPhone deployment target to 11 [skip ci] * Update Macos deployment target [skip ci]
44 lines
1.3 KiB
Dart
44 lines
1.3 KiB
Dart
import 'package:cake_wallet/utils/exception_handler.dart';
|
|
import 'package:cw_core/transaction_info.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cw_core/balance.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_core/transaction_history.dart';
|
|
import 'package:cake_wallet/store/wallet_list_store.dart';
|
|
import 'package:cake_wallet/store/authentication_store.dart';
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
import 'package:cake_wallet/store/node_list_store.dart';
|
|
|
|
part 'app_store.g.dart';
|
|
|
|
class AppStore = AppStoreBase with _$AppStore;
|
|
|
|
abstract class AppStoreBase with Store {
|
|
AppStoreBase(
|
|
{required this.authenticationStore,
|
|
required this.walletList,
|
|
required this.settingsStore,
|
|
required this.nodeListStore});
|
|
|
|
AuthenticationStore authenticationStore;
|
|
|
|
@observable
|
|
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>?
|
|
wallet;
|
|
|
|
WalletListStore walletList;
|
|
|
|
SettingsStore settingsStore;
|
|
|
|
NodeListStore nodeListStore;
|
|
|
|
@action
|
|
void changeCurrentWallet(
|
|
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>,
|
|
TransactionInfo>
|
|
wallet) {
|
|
this.wallet?.close();
|
|
this.wallet = wallet;
|
|
this.wallet!.setExceptionHandler(ExceptionHandler.onError);
|
|
}
|
|
}
|