cake_wallet/lib/view_model/advanced_privacy_settings_view_model.dart

40 lines
1.2 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 fiatApiMode => _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
void setFiatApiMode(FiatApiMode fiatApiMode) => _settingsStore.fiatApiMode = fiatApiMode;
2023-02-07 15:12:34 +00:00
@action
void setExchangeApiMode(ExchangeApiMode value) => _settingsStore.exchangeStatus = value;
2023-02-07 15:12:34 +00:00
@action
void toggleAddCustomNode() => _addCustomNode = !_addCustomNode;
}