2023-06-16 01:14:01 +00:00
|
|
|
import 'package:cake_wallet/utils/exception_handler.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/transaction_info.dart';
|
2020-06-20 07:10:00 +00:00
|
|
|
import 'package:mobx/mobx.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/balance.dart';
|
|
|
|
import 'package:cw_core/wallet_base.dart';
|
|
|
|
import 'package:cw_core/transaction_history.dart';
|
2020-07-06 20:09:03 +00:00
|
|
|
import 'package:cake_wallet/store/wallet_list_store.dart';
|
2020-06-20 07:10:00 +00:00
|
|
|
import 'package:cake_wallet/store/authentication_store.dart';
|
2020-07-06 20:09:03 +00:00
|
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
|
|
import 'package:cake_wallet/store/node_list_store.dart';
|
2020-06-20 07:10:00 +00:00
|
|
|
|
|
|
|
part 'app_store.g.dart';
|
|
|
|
|
|
|
|
class AppStore = AppStoreBase with _$AppStore;
|
|
|
|
|
|
|
|
abstract class AppStoreBase with Store {
|
2020-07-06 20:09:03 +00:00
|
|
|
AppStoreBase(
|
2022-10-12 17:09:57 +00:00
|
|
|
{required this.authenticationStore,
|
|
|
|
required this.walletList,
|
|
|
|
required this.settingsStore,
|
|
|
|
required this.nodeListStore});
|
2020-06-20 07:10:00 +00:00
|
|
|
|
|
|
|
AuthenticationStore authenticationStore;
|
|
|
|
|
|
|
|
@observable
|
2022-10-12 17:09:57 +00:00
|
|
|
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>?
|
2021-05-07 07:36:38 +00:00
|
|
|
wallet;
|
2020-07-06 20:09:03 +00:00
|
|
|
|
|
|
|
WalletListStore walletList;
|
|
|
|
|
|
|
|
SettingsStore settingsStore;
|
|
|
|
|
|
|
|
NodeListStore nodeListStore;
|
2020-12-15 16:29:10 +00:00
|
|
|
|
|
|
|
@action
|
2021-05-07 07:36:38 +00:00
|
|
|
void changeCurrentWallet(
|
|
|
|
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>,
|
|
|
|
TransactionInfo>
|
|
|
|
wallet) {
|
2020-12-15 16:29:10 +00:00
|
|
|
this.wallet?.close();
|
|
|
|
this.wallet = wallet;
|
2023-06-16 01:14:01 +00:00
|
|
|
this.wallet!.setExceptionHandler(ExceptionHandler.onError);
|
2020-12-15 16:29:10 +00:00
|
|
|
}
|
2020-06-20 07:10:00 +00:00
|
|
|
}
|