cake_wallet/lib/view_model/settings/settings_view_model.dart

253 lines
9 KiB
Dart
Raw Normal View History

2020-10-24 14:35:55 +00:00
import 'package:cake_wallet/src/screens/pin_code/pin_code_widget.dart';
2020-07-06 20:09:03 +00:00
import 'package:flutter/cupertino.dart';
import 'package:mobx/mobx.dart';
2020-09-28 15:47:43 +00:00
import 'package:package_info/package_info.dart';
2020-07-06 20:09:03 +00:00
import 'package:cake_wallet/routes.dart';
import 'package:cake_wallet/generated/i18n.dart';
2020-09-28 15:47:43 +00:00
import 'package:cake_wallet/core/wallet_base.dart';
2020-07-06 20:09:03 +00:00
import 'package:cake_wallet/store/settings_store.dart';
2020-09-28 15:47:43 +00:00
import 'package:cake_wallet/entities/biometric_auth.dart';
import 'package:cake_wallet/entities/wallet_type.dart';
2020-09-21 11:50:26 +00:00
import 'package:cake_wallet/entities/balance_display_mode.dart';
import 'package:cake_wallet/entities/fiat_currency.dart';
import 'package:cake_wallet/entities/node.dart';
import 'package:cake_wallet/entities/transaction_priority.dart';
import 'package:cake_wallet/entities/action_list_display_mode.dart';
2020-09-28 15:47:43 +00:00
import 'package:cake_wallet/view_model/settings/version_list_item.dart';
2020-07-06 20:09:03 +00:00
import 'package:cake_wallet/view_model/settings/link_list_item.dart';
import 'package:cake_wallet/view_model/settings/picker_list_item.dart';
import 'package:cake_wallet/view_model/settings/regular_list_item.dart';
import 'package:cake_wallet/view_model/settings/settings_list_item.dart';
import 'package:cake_wallet/view_model/settings/switcher_list_item.dart';
2020-09-28 15:47:43 +00:00
import 'package:cake_wallet/src/screens/auth/auth_page.dart';
2020-07-06 20:09:03 +00:00
part 'settings_view_model.g.dart';
class SettingsViewModel = SettingsViewModelBase with _$SettingsViewModel;
abstract class SettingsViewModelBase with Store {
2020-08-25 16:32:40 +00:00
SettingsViewModelBase(this._settingsStore, WalletBase wallet)
2020-08-27 16:54:34 +00:00
: itemHeaders = {},
2020-09-10 14:51:59 +00:00
_walletType = wallet.type,
_biometricAuth = BiometricAuth() {
currentVersion = '';
2020-09-10 14:51:59 +00:00
PackageInfo.fromPlatform().then(
(PackageInfo packageInfo) => currentVersion = packageInfo.version);
2020-07-06 20:09:03 +00:00
sections = [
[
PickerListItem(
title: S.current.settings_display_balance_as,
items: BalanceDisplayMode.all,
2020-09-26 11:17:39 +00:00
selectedItem: () => balanceDisplayMode,
onItemSelected: (BalanceDisplayMode mode) =>
_settingsStore.balanceDisplayMode = mode),
2020-07-06 20:09:03 +00:00
PickerListItem(
title: S.current.settings_currency,
items: FiatCurrency.all,
isAlwaysShowScrollThumb: true,
2020-09-10 14:51:59 +00:00
selectedItem: () => fiatCurrency,
onItemSelected: (FiatCurrency currency) =>
setFiatCurrency(currency)),
2020-07-06 20:09:03 +00:00
PickerListItem(
title: S.current.settings_fee_priority,
2020-08-25 16:32:40 +00:00
items: _transactionPriorities(wallet.type),
selectedItem: () => transactionPriority,
isAlwaysShowScrollThumb: true,
2020-08-25 16:32:40 +00:00
onItemSelected: (TransactionPriority priority) =>
_settingsStore.transactionPriority = priority),
2020-07-06 20:09:03 +00:00
SwitcherListItem(
title: S.current.settings_save_recipient_address,
value: () => shouldSaveRecipientAddress,
2020-09-10 14:51:59 +00:00
onValueChange: (_, bool value) =>
setShouldSaveRecipientAddress(value))
2020-07-06 20:09:03 +00:00
],
[
RegularListItem(
title: S.current.settings_change_pin,
handler: (BuildContext context) {
2020-10-24 14:35:55 +00:00
Navigator.of(context).pushNamed(Routes.auth, arguments:
(bool isAuthenticatedSuccessfully, AuthPageState auth) {
auth.close();
if (isAuthenticatedSuccessfully) {
Navigator.of(context).pushNamed(Routes.setupPin, arguments:
(PinCodeState<PinCodeWidget> setupPinContext, String _) {
setupPinContext.close();
});
}
});
2020-07-06 20:09:03 +00:00
}),
RegularListItem(
title: S.current.settings_change_language,
handler: (BuildContext context) =>
Navigator.of(context).pushNamed(Routes.changeLanguage),
),
SwitcherListItem(
title: S.current.settings_allow_biometrical_authentication,
value: () => allowBiometricalAuthentication,
2020-09-10 14:51:59 +00:00
onValueChange: (BuildContext context, bool value) {
if (value) {
Navigator.of(context).pushNamed(Routes.auth, arguments:
(bool isAuthenticatedSuccessfully,
AuthPageState auth) async {
if (isAuthenticatedSuccessfully) {
if (await _biometricAuth.canCheckBiometrics() &&
await _biometricAuth.isAuthenticated()) {
setAllowBiometricalAuthentication(
isAuthenticatedSuccessfully);
}
} else {
setAllowBiometricalAuthentication(
isAuthenticatedSuccessfully);
}
2020-10-24 14:35:55 +00:00
auth.close();
2020-09-10 14:51:59 +00:00
});
} else {
setAllowBiometricalAuthentication(value);
}
}),
2020-07-06 20:09:03 +00:00
SwitcherListItem(
title: S.current.settings_dark_mode,
value: () => _settingsStore.isDarkTheme,
2020-09-28 15:47:43 +00:00
onValueChange: (_, bool value) =>
_settingsStore.isDarkTheme = value)
2020-07-06 20:09:03 +00:00
],
[
LinkListItem(
title: 'Email',
linkTitle: 'support@cakewallet.com',
link: 'mailto:support@cakewallet.com'),
LinkListItem(
title: 'Telegram',
icon: 'assets/images/Telegram.png',
linkTitle: '@cakewallet_bot',
2020-07-06 20:09:03 +00:00
link: 'https:t.me/cakewallet_bot'),
LinkListItem(
title: 'Twitter',
icon: 'assets/images/Twitter.png',
linkTitle: '@cakewallet',
link: 'https://twitter.com/cakewallet'),
2020-07-06 20:09:03 +00:00
LinkListItem(
title: 'ChangeNow',
icon: 'assets/images/change_now.png',
linkTitle: 'support@changenow.io',
link: 'mailto:support@changenow.io'),
LinkListItem(
title: 'Morph',
icon: 'assets/images/morph_icon.png',
linkTitle: 'support@morphtoken.com',
link: 'mailto:support@morphtoken.com'),
LinkListItem(
title: 'XMR.to',
icon: 'assets/images/xmr_btc.png',
linkTitle: 'support@xmr.to',
link: 'mailto:support@xmr.to'),
RegularListItem(
title: S.current.settings_terms_and_conditions,
handler: (BuildContext context) =>
Navigator.of(context).pushNamed(Routes.readDisclaimer),
),
RegularListItem(
title: S.current.faq,
handler: (BuildContext context) =>
Navigator.pushNamed(context, Routes.faq),
2020-07-06 20:09:03 +00:00
)
],
2020-09-10 14:51:59 +00:00
[VersionListItem(title: currentVersion)]
2020-07-06 20:09:03 +00:00
];
}
@observable
String currentVersion;
2020-07-06 20:09:03 +00:00
@computed
2020-08-27 16:54:34 +00:00
Node get node => _settingsStore.getCurrentNode(_walletType);
2020-07-06 20:09:03 +00:00
@computed
FiatCurrency get fiatCurrency => _settingsStore.fiatCurrency;
@computed
ObservableList<ActionListDisplayMode> get actionlistDisplayMode =>
_settingsStore.actionlistDisplayMode;
@computed
TransactionPriority get transactionPriority =>
_settingsStore.transactionPriority;
@computed
BalanceDisplayMode get balanceDisplayMode =>
_settingsStore.balanceDisplayMode;
@computed
bool get shouldSaveRecipientAddress =>
_settingsStore.shouldSaveRecipientAddress;
@computed
bool get allowBiometricalAuthentication =>
_settingsStore.allowBiometricalAuthentication;
final Map<String, String> itemHeaders;
2020-09-10 14:51:59 +00:00
List<List<SettingsListItem>> sections;
2020-07-06 20:09:03 +00:00
final SettingsStore _settingsStore;
2020-08-27 16:54:34 +00:00
final WalletType _walletType;
2020-09-10 14:51:59 +00:00
final BiometricAuth _biometricAuth;
2020-07-06 20:09:03 +00:00
@action
2020-09-10 14:51:59 +00:00
void setBalanceDisplayMode(BalanceDisplayMode value) =>
_settingsStore.balanceDisplayMode = value;
2020-07-06 20:09:03 +00:00
2020-08-31 08:44:58 +00:00
@action
2020-09-10 14:51:59 +00:00
void setFiatCurrency(FiatCurrency value) =>
_settingsStore.fiatCurrency = value;
2020-09-26 11:17:39 +00:00
@action
2020-08-31 08:44:58 +00:00
void setShouldSaveRecipientAddress(bool value) =>
_settingsStore.shouldSaveRecipientAddress = value;
@action
void setAllowBiometricalAuthentication(bool value) =>
_settingsStore.allowBiometricalAuthentication = value;
2020-07-06 20:09:03 +00:00
@action
void toggleTransactionsDisplay() =>
actionlistDisplayMode.contains(ActionListDisplayMode.transactions)
? _hideTransaction()
: _showTransaction();
@action
void toggleTradesDisplay() =>
actionlistDisplayMode.contains(ActionListDisplayMode.trades)
? _hideTrades()
: _showTrades();
@action
void _hideTransaction() =>
actionlistDisplayMode.remove(ActionListDisplayMode.transactions);
@action
void _hideTrades() =>
actionlistDisplayMode.remove(ActionListDisplayMode.trades);
@action
void _showTransaction() =>
actionlistDisplayMode.add(ActionListDisplayMode.transactions);
@action
void _showTrades() => actionlistDisplayMode.add(ActionListDisplayMode.trades);
2020-08-25 16:32:40 +00:00
static List<TransactionPriority> _transactionPriorities(WalletType type) {
switch (type) {
case WalletType.monero:
return TransactionPriority.all;
case WalletType.bitcoin:
return [
TransactionPriority.slow,
TransactionPriority.regular,
TransactionPriority.fast
];
default:
return [];
}
}
2020-07-06 20:09:03 +00:00
}