mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 19:49:22 +00:00
17d34beae9
Some checks are pending
Cache Dependencies / test (push) Waiting to run
* improve exception throwing on broken wallets - put _lastOpenedWallet to avoid issues on windows (file is currently open by) - don't throw corruptedWalletsSeed - instead store it inside of secureStorage - await ExceptionHandler.onError calls where possible to makse sure that popup won't be canceled by some UI element - adjust BaseAlertDialog to be scrollable if the text is too long - add ExceptionHandler.resetLastPopupDate - that can be called when we want to show error report screen (bypassing cooldown) * fix: HiveError: Box has already been closed. * await the alerts to be sure that each one of them is being shown fix typo in secure storage * Update lib/core/backup_service.dart Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * address comments on github * don't store seeds in secure storage * fix wallet password * update monero_c update corrupted seeds UI prevent app from crashing when wallet is corrupted * show alert with seeds * Update corrupted wallet UI Fix wallet opening cache * remove unused code --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
91 lines
3.7 KiB
Dart
91 lines
3.7 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:cake_wallet/core/wallet_connect/wc_bottom_sheet_service.dart';
|
|
import 'package:cake_wallet/di.dart';
|
|
import 'package:cake_wallet/entities/hardware_wallet/require_hardware_wallet_connection.dart';
|
|
import 'package:cake_wallet/entities/load_current_wallet.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cake_wallet/monero/monero.dart';
|
|
import 'package:cake_wallet/routes.dart';
|
|
import 'package:cake_wallet/src/screens/connect_device/connect_device_page.dart';
|
|
import 'package:cake_wallet/src/widgets/alert_with_one_action.dart';
|
|
import 'package:cake_wallet/store/authentication_store.dart';
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
import 'package:cake_wallet/utils/exception_handler.dart';
|
|
import 'package:cake_wallet/utils/show_pop_up.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:rxdart/subjects.dart';
|
|
|
|
ReactionDisposer? _onAuthenticationStateChange;
|
|
|
|
dynamic loginError;
|
|
StreamController<dynamic> authenticatedErrorStreamController =
|
|
BehaviorSubject<dynamic>();
|
|
|
|
void startAuthenticationStateChange(
|
|
AuthenticationStore authenticationStore,
|
|
GlobalKey<NavigatorState> navigatorKey,
|
|
) {
|
|
authenticatedErrorStreamController.stream.listen((event) {
|
|
if (authenticationStore.state == AuthenticationState.allowed) {
|
|
ExceptionHandler.showError(event.toString(), delayInSeconds: 3);
|
|
}
|
|
});
|
|
|
|
_onAuthenticationStateChange ??= autorun((_) async {
|
|
final state = authenticationStore.state;
|
|
|
|
if (state == AuthenticationState.installed &&
|
|
!SettingsStoreBase.walletPasswordDirectInput) {
|
|
try {
|
|
if (!requireHardwareWalletConnection()) await loadCurrentWallet();
|
|
} catch (error, stack) {
|
|
loginError = error;
|
|
await ExceptionHandler.resetLastPopupDate();
|
|
await ExceptionHandler.onError(FlutterErrorDetails(exception: error, stack: stack));
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (state == AuthenticationState.allowed) {
|
|
if (requireHardwareWalletConnection()) {
|
|
await navigatorKey.currentState!.pushNamedAndRemoveUntil(
|
|
Routes.connectDevices,
|
|
(route) => false,
|
|
arguments: ConnectDevicePageParams(
|
|
walletType: WalletType.monero,
|
|
onConnectDevice: (context, ledgerVM) async {
|
|
monero!.setGlobalLedgerConnection(ledgerVM.connection);
|
|
showPopUp<void>(
|
|
context: context,
|
|
builder: (BuildContext context) => AlertWithOneAction(
|
|
alertTitle: S.of(context).proceed_on_device,
|
|
alertContent: S.of(context).proceed_on_device_description,
|
|
buttonText: S.of(context).cancel,
|
|
buttonAction: () => Navigator.of(context).pop()),
|
|
);
|
|
await loadCurrentWallet();
|
|
getIt.get<BottomSheetService>().resetCurrentSheet();
|
|
await navigatorKey.currentState!
|
|
.pushNamedAndRemoveUntil(Routes.dashboard, (route) => false);
|
|
},
|
|
allowChangeWallet: true,
|
|
),
|
|
);
|
|
|
|
// await navigatorKey.currentState!.pushNamedAndRemoveUntil(Routes.connectDevices, (route) => false, arguments: ConnectDevicePageParams(walletType: walletType, onConnectDevice: onConnectDevice));
|
|
} else {
|
|
await navigatorKey.currentState!
|
|
.pushNamedAndRemoveUntil(Routes.dashboard, (route) => false);
|
|
}
|
|
if (!(await authenticatedErrorStreamController.stream.isEmpty)) {
|
|
await ExceptionHandler.showError(
|
|
(await authenticatedErrorStreamController.stream.first).toString());
|
|
authenticatedErrorStreamController.stream.drain();
|
|
}
|
|
return;
|
|
}
|
|
});
|
|
}
|