mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
39 lines
1.2 KiB
Dart
39 lines
1.2 KiB
Dart
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 {
|
|
AdvancedPrivacySettingsViewModelBase(this.type, this._settingsStore) : _addCustomNode = false;
|
|
|
|
@computed
|
|
ExchangeApiMode get exchangeStatus => _settingsStore.exchangeStatus;
|
|
|
|
@computed
|
|
FiatApiMode get fiatApiMode => _settingsStore.fiatApiMode;
|
|
|
|
@observable
|
|
bool _addCustomNode = false;
|
|
|
|
final WalletType type;
|
|
|
|
final SettingsStore _settingsStore;
|
|
|
|
@computed
|
|
bool get addCustomNode => _addCustomNode;
|
|
|
|
@action
|
|
void setFiatApiMode(FiatApiMode fiatApiMode) => _settingsStore.fiatApiMode = fiatApiMode;
|
|
|
|
@action
|
|
void setExchangeApiMode(ExchangeApiMode value) => _settingsStore.exchangeStatus = value;
|
|
|
|
@action
|
|
void toggleAddCustomNode() => _addCustomNode = !_addCustomNode;
|
|
}
|