2023-03-01 23:44:15 +02:00
|
|
|
import 'package:cake_wallet/entities/exchange_api_mode.dart';
|
2023-08-04 20:01:49 +03:00
|
|
|
import 'package:cake_wallet/ethereum/ethereum.dart';
|
2022-11-23 19:06:41 +02:00
|
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
2023-08-04 20:01:49 +03:00
|
|
|
import 'package:cw_core/wallet_base.dart';
|
|
|
|
import 'package:cw_core/wallet_type.dart';
|
2022-11-23 19:06:41 +02:00
|
|
|
import 'package:mobx/mobx.dart';
|
2022-12-07 01:38:36 +02:00
|
|
|
import 'package:cake_wallet/entities/fiat_api_mode.dart';
|
2022-11-23 19:06:41 +02:00
|
|
|
|
|
|
|
part 'privacy_settings_view_model.g.dart';
|
|
|
|
|
2022-12-01 21:21:51 +02:00
|
|
|
class PrivacySettingsViewModel = PrivacySettingsViewModelBase with _$PrivacySettingsViewModel;
|
2022-11-23 19:06:41 +02:00
|
|
|
|
|
|
|
abstract class PrivacySettingsViewModelBase with Store {
|
2023-08-04 20:01:49 +03:00
|
|
|
PrivacySettingsViewModelBase(this._settingsStore, this._wallet);
|
2022-11-23 19:06:41 +02:00
|
|
|
|
|
|
|
final SettingsStore _settingsStore;
|
2023-08-04 20:01:49 +03:00
|
|
|
final WalletBase _wallet;
|
2022-11-23 19:06:41 +02:00
|
|
|
|
2022-11-25 22:51:07 +02:00
|
|
|
@computed
|
2023-03-01 23:44:15 +02:00
|
|
|
ExchangeApiMode get exchangeStatus => _settingsStore.exchangeStatus;
|
2022-11-25 22:51:07 +02:00
|
|
|
|
2022-11-23 19:06:41 +02:00
|
|
|
@computed
|
2022-12-01 21:21:51 +02:00
|
|
|
bool get shouldSaveRecipientAddress => _settingsStore.shouldSaveRecipientAddress;
|
2022-11-23 19:06:41 +02:00
|
|
|
|
2022-12-07 01:38:36 +02:00
|
|
|
@computed
|
2023-02-28 18:23:21 +02:00
|
|
|
FiatApiMode get fiatApiMode => _settingsStore.fiatApiMode;
|
2022-12-07 01:38:36 +02:00
|
|
|
|
2023-04-20 12:59:59 +03:00
|
|
|
@computed
|
|
|
|
bool get isAppSecure => _settingsStore.isAppSecure;
|
|
|
|
|
2023-05-15 09:26:56 -03:00
|
|
|
@computed
|
|
|
|
bool get disableBuy => _settingsStore.disableBuy;
|
|
|
|
|
|
|
|
@computed
|
|
|
|
bool get disableSell => _settingsStore.disableSell;
|
|
|
|
|
2023-08-04 20:01:49 +03:00
|
|
|
@computed
|
|
|
|
bool get useEtherscan => _settingsStore.useEtherscan;
|
|
|
|
|
|
|
|
bool get canUseEtherscan => _wallet.type == WalletType.ethereum;
|
|
|
|
|
2022-11-23 19:06:41 +02:00
|
|
|
@action
|
2023-08-04 20:01:49 +03:00
|
|
|
void setShouldSaveRecipientAddress(bool value) =>
|
|
|
|
_settingsStore.shouldSaveRecipientAddress = value;
|
2022-12-01 21:21:51 +02:00
|
|
|
|
2022-11-25 22:51:07 +02:00
|
|
|
@action
|
2023-03-02 17:13:25 +02:00
|
|
|
void setExchangeApiMode(ExchangeApiMode value) => _settingsStore.exchangeStatus = value;
|
2022-12-07 01:38:36 +02:00
|
|
|
|
|
|
|
@action
|
2023-02-28 18:23:21 +02:00
|
|
|
void setFiatMode(FiatApiMode fiatApiMode) => _settingsStore.fiatApiMode = fiatApiMode;
|
2022-12-07 15:31:33 +02:00
|
|
|
|
2023-04-20 12:59:59 +03:00
|
|
|
@action
|
|
|
|
void setIsAppSecure(bool value) => _settingsStore.isAppSecure = value;
|
|
|
|
|
2023-05-15 09:26:56 -03:00
|
|
|
@action
|
|
|
|
void setDisableBuy(bool value) => _settingsStore.disableBuy = value;
|
|
|
|
|
|
|
|
@action
|
|
|
|
void setDisableSell(bool value) => _settingsStore.disableSell = value;
|
|
|
|
|
2023-08-04 20:01:49 +03:00
|
|
|
@action
|
|
|
|
void setUseEtherscan(bool value) {
|
|
|
|
_settingsStore.useEtherscan = value;
|
|
|
|
ethereum!.updateEtherscanUsageState(_wallet, value);
|
|
|
|
}
|
2022-12-01 21:21:51 +02:00
|
|
|
}
|