mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
32 lines
1.1 KiB
Dart
32 lines
1.1 KiB
Dart
|
import 'package:cake_wallet/routes.dart';
|
||
|
import 'package:flutter/widgets.dart';
|
||
|
import 'package:mobx/mobx.dart';
|
||
|
import 'package:cake_wallet/router.dart';
|
||
|
import 'package:cake_wallet/entities/load_current_wallet.dart';
|
||
|
import 'package:cake_wallet/store/authentication_store.dart';
|
||
|
|
||
|
ReactionDisposer _onAuthenticationStateChange;
|
||
|
|
||
|
void startAuthenticationStateChange(AuthenticationStore authenticationStore,
|
||
|
GlobalKey<NavigatorState> navigatorKey) {
|
||
|
_onAuthenticationStateChange ??= autorun((_) async {
|
||
|
final state = authenticationStore.state;
|
||
|
|
||
|
if (state == AuthenticationState.installed) {
|
||
|
await loadCurrentWallet();
|
||
|
// await navigatorKey.currentState
|
||
|
// .pushNamedAndRemoveUntil(Routes.login, (_) => false);
|
||
|
}
|
||
|
|
||
|
if (state == AuthenticationState.allowed) {
|
||
|
await navigatorKey.currentState
|
||
|
.pushNamedAndRemoveUntil(Routes.dashboard, (route) => false);
|
||
|
}
|
||
|
|
||
|
if (state == AuthenticationState.denied) {
|
||
|
await navigatorKey.currentState
|
||
|
.pushNamedAndRemoveUntil(Routes.welcome, (_) => false);
|
||
|
}
|
||
|
});
|
||
|
}
|