cake_wallet/lib/view_model/advanced_privacy_settings_view_model.dart

50 lines
1.3 KiB
Dart
Raw Normal View History

2023-03-01 21:44:15 +00:00
import 'package:cake_wallet/entities/exchange_api_mode.dart';
import 'package:cake_wallet/entities/fiat_api_mode.dart';
import 'package:cake_wallet/store/settings_store.dart';
import 'package:cw_core/wallet_type.dart';
import 'package:mobx/mobx.dart';
part 'advanced_privacy_settings_view_model.g.dart';
class AdvancedPrivacySettingsViewModel = AdvancedPrivacySettingsViewModelBase
with _$AdvancedPrivacySettingsViewModel;
abstract class AdvancedPrivacySettingsViewModelBase with Store {
2023-02-07 15:12:34 +00:00
AdvancedPrivacySettingsViewModelBase(this.type, this._settingsStore) : _addCustomNode = false;
@computed
2023-03-01 21:44:15 +00:00
ExchangeApiMode get exchangeStatus => _settingsStore.exchangeStatus;
2023-02-07 15:12:34 +00:00
@computed
FiatApiMode get fiatApi => _settingsStore.fiatApiMode;
@observable
bool _addCustomNode = false;
final WalletType type;
2023-02-07 15:12:34 +00:00
final SettingsStore _settingsStore;
@computed
bool get addCustomNode => _addCustomNode;
@action
2023-03-01 21:44:15 +00:00
void setFiatMode(bool value) {
if (value) {
_settingsStore.fiatApiMode = FiatApiMode.disabled;
return;
}
_settingsStore.fiatApiMode = FiatApiMode.enabled;
2023-02-07 15:12:34 +00:00
}
@action
2023-03-02 15:13:25 +00:00
void setExchangeApiMode(ExchangeApiMode value) {
2023-02-07 15:12:34 +00:00
_settingsStore.exchangeStatus = value;
}
@action
void toggleAddCustomNode() {
_addCustomNode = !_addCustomNode;
}
}