mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
55b37164dc
- Add the old 'disable_fiat' translation - rename getters to be more bool like names
38 lines
1.1 KiB
Dart
38 lines
1.1 KiB
Dart
import 'package:cake_wallet/store/settings_store.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cake_wallet/entities/fiat_api_mode.dart';
|
|
|
|
part 'privacy_settings_view_model.g.dart';
|
|
|
|
class PrivacySettingsViewModel = PrivacySettingsViewModelBase with _$PrivacySettingsViewModel;
|
|
|
|
abstract class PrivacySettingsViewModelBase with Store {
|
|
PrivacySettingsViewModelBase(this._settingsStore);
|
|
|
|
final SettingsStore _settingsStore;
|
|
|
|
@computed
|
|
bool get disableExchange => _settingsStore.disableExchange;
|
|
|
|
@computed
|
|
bool get shouldSaveRecipientAddress => _settingsStore.shouldSaveRecipientAddress;
|
|
|
|
@computed
|
|
bool get isFiatDisabled => _settingsStore.fiatApiMode == FiatApiMode.disabled;
|
|
|
|
@action
|
|
void setShouldSaveRecipientAddress(bool value) => _settingsStore.shouldSaveRecipientAddress = value;
|
|
|
|
@action
|
|
void setEnableExchange(bool value) => _settingsStore.disableExchange = value;
|
|
|
|
@action
|
|
void setFiatMode(bool value) {
|
|
if (value) {
|
|
_settingsStore.fiatApiMode = FiatApiMode.disabled;
|
|
return;
|
|
}
|
|
_settingsStore.fiatApiMode = FiatApiMode.enabled;
|
|
}
|
|
|
|
}
|