mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
64 lines
1.6 KiB
Dart
64 lines
1.6 KiB
Dart
|
import 'package:mobx/mobx.dart';
|
||
|
import 'package:cake_wallet/core/execution_state.dart';
|
||
|
import 'package:cake_wallet/core/wallet_loading_service.dart';
|
||
|
import 'package:cake_wallet/store/app_store.dart';
|
||
|
import 'package:cw_core/wallet_type.dart';
|
||
|
import 'package:cake_wallet/view_model/wallet_unlock_view_model.dart';
|
||
|
|
||
|
part 'wallet_unlock_loadable_view_model.g.dart';
|
||
|
|
||
|
class WalletUnlockLoadableViewModel = WalletUnlockLoadableViewModelBase
|
||
|
with _$WalletUnlockLoadableViewModel;
|
||
|
|
||
|
abstract class WalletUnlockLoadableViewModelBase extends WalletUnlockViewModel with Store {
|
||
|
WalletUnlockLoadableViewModelBase(this._appStore, this._walletLoadingService,
|
||
|
{required this.walletName, required this.walletType})
|
||
|
: password = '',
|
||
|
state = InitialExecutionState();
|
||
|
|
||
|
final String walletName;
|
||
|
|
||
|
final WalletType walletType;
|
||
|
|
||
|
@override
|
||
|
@observable
|
||
|
String password;
|
||
|
|
||
|
@override
|
||
|
@observable
|
||
|
ExecutionState state;
|
||
|
|
||
|
final WalletLoadingService _walletLoadingService;
|
||
|
|
||
|
final AppStore _appStore;
|
||
|
|
||
|
@override
|
||
|
@action
|
||
|
void setPassword(String password) => this.password = password;
|
||
|
|
||
|
@override
|
||
|
@action
|
||
|
Future<void> unlock() async {
|
||
|
try {
|
||
|
state = InitialExecutionState();
|
||
|
final wallet = await _walletLoadingService.load(walletType, walletName, password: password);
|
||
|
_appStore.changeCurrentWallet(wallet);
|
||
|
success();
|
||
|
} catch (e) {
|
||
|
failure(e.toString());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
@action
|
||
|
void success() {
|
||
|
state = ExecutedSuccessfullyState();
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
@action
|
||
|
void failure(e) {
|
||
|
state = FailureState(e.toString());
|
||
|
}
|
||
|
}
|