2022-11-23 17:06:41 +00:00
|
|
|
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
2023-09-14 19:14:49 +00:00
|
|
|
import 'package:cake_wallet/entities/buy_provider_types.dart';
|
2022-11-23 17:06:41 +00:00
|
|
|
import 'package:cake_wallet/entities/priority_for_wallet_type.dart';
|
|
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
|
|
import 'package:cw_core/balance.dart';
|
|
|
|
import 'package:cw_core/transaction_history.dart';
|
|
|
|
import 'package:cw_core/transaction_info.dart';
|
|
|
|
import 'package:cw_core/transaction_priority.dart';
|
|
|
|
import 'package:cw_core/wallet_base.dart';
|
|
|
|
import 'package:cw_core/wallet_type.dart';
|
|
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
import 'package:package_info/package_info.dart';
|
|
|
|
|
|
|
|
part 'other_settings_view_model.g.dart';
|
|
|
|
|
2023-12-08 14:05:52 +00:00
|
|
|
class OtherSettingsViewModel = OtherSettingsViewModelBase
|
|
|
|
with _$OtherSettingsViewModel;
|
2022-11-23 17:06:41 +00:00
|
|
|
|
|
|
|
abstract class OtherSettingsViewModelBase with Store {
|
2022-12-01 19:33:17 +00:00
|
|
|
OtherSettingsViewModelBase(this._settingsStore, this._wallet)
|
|
|
|
: walletType = _wallet.type,
|
2022-12-01 19:21:51 +00:00
|
|
|
currentVersion = '' {
|
2023-12-08 14:05:52 +00:00
|
|
|
PackageInfo.fromPlatform().then(
|
|
|
|
(PackageInfo packageInfo) => currentVersion = packageInfo.version);
|
2022-11-23 17:06:41 +00:00
|
|
|
|
2022-12-01 19:33:17 +00:00
|
|
|
final priority = _settingsStore.priority[_wallet.type];
|
|
|
|
final priorities = priorityForWalletType(_wallet.type);
|
2022-11-23 17:06:41 +00:00
|
|
|
|
2023-10-05 01:09:07 +00:00
|
|
|
if (!priorities.contains(priority) && priorities.isNotEmpty) {
|
2022-12-01 19:33:17 +00:00
|
|
|
_settingsStore.priority[_wallet.type] = priorities.first;
|
2022-12-01 19:21:51 +00:00
|
|
|
}
|
2022-11-23 17:06:41 +00:00
|
|
|
}
|
|
|
|
|
2022-12-01 19:21:51 +00:00
|
|
|
final WalletType walletType;
|
2023-12-08 14:05:52 +00:00
|
|
|
final WalletBase<Balance, TransactionHistoryBase<TransactionInfo>,
|
|
|
|
TransactionInfo> _wallet;
|
2022-11-23 17:06:41 +00:00
|
|
|
|
|
|
|
@observable
|
|
|
|
String currentVersion;
|
|
|
|
|
|
|
|
final SettingsStore _settingsStore;
|
|
|
|
|
|
|
|
@computed
|
|
|
|
TransactionPriority get transactionPriority {
|
|
|
|
final priority = _settingsStore.priority[walletType];
|
|
|
|
|
|
|
|
if (priority == null) {
|
|
|
|
throw Exception('Unexpected type ${walletType.toString()}');
|
|
|
|
}
|
|
|
|
|
|
|
|
return priority;
|
|
|
|
}
|
|
|
|
|
2023-09-14 19:14:49 +00:00
|
|
|
@computed
|
2023-12-08 14:05:52 +00:00
|
|
|
bool get changeRepresentativeEnabled =>
|
|
|
|
_wallet.type == WalletType.nano || _wallet.type == WalletType.banano;
|
2023-10-05 01:09:07 +00:00
|
|
|
|
2023-12-08 14:05:52 +00:00
|
|
|
@computed
|
|
|
|
bool get isEnabledBuyAction =>
|
|
|
|
!_settingsStore.disableBuy && _wallet.type != WalletType.haven;
|
|
|
|
|
|
|
|
List<BuyProviderType> get availableBuyProviders =>
|
|
|
|
BuyProviderType.getAvailableProviders(walletType);
|
|
|
|
|
|
|
|
BuyProviderType get buyProviderType =>
|
|
|
|
_settingsStore.defaultBuyProviders[walletType] ??
|
|
|
|
BuyProviderType.AskEachTime;
|
2023-09-14 19:14:49 +00:00
|
|
|
|
2022-12-01 19:21:51 +00:00
|
|
|
String getDisplayPriority(dynamic priority) {
|
2022-11-23 17:06:41 +00:00
|
|
|
final _priority = priority as TransactionPriority;
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
if (_wallet.type == WalletType.bitcoin ||
|
|
|
|
_wallet.type == WalletType.litecoin ||
|
|
|
|
_wallet.type == WalletType.bitcoinCash) {
|
2022-11-23 17:06:41 +00:00
|
|
|
final rate = bitcoin!.getFeeRate(_wallet, _priority);
|
|
|
|
return bitcoin!.bitcoinTransactionPriorityWithLabel(_priority, rate);
|
|
|
|
}
|
|
|
|
|
|
|
|
return priority.toString();
|
|
|
|
}
|
|
|
|
|
2023-12-08 14:05:52 +00:00
|
|
|
String getBuyProviderType(dynamic buyProviderType) {
|
2023-09-14 19:14:49 +00:00
|
|
|
final _buyProviderType = buyProviderType as BuyProviderType;
|
|
|
|
|
|
|
|
return _buyProviderType.toString();
|
|
|
|
}
|
|
|
|
|
2022-12-01 19:33:17 +00:00
|
|
|
void onDisplayPrioritySelected(TransactionPriority priority) =>
|
|
|
|
_settingsStore.priority[_wallet.type] = priority;
|
2023-09-14 19:14:49 +00:00
|
|
|
|
|
|
|
void onBuyProviderTypeSelected(BuyProviderType buyProviderType) =>
|
2023-12-08 14:05:52 +00:00
|
|
|
_settingsStore.defaultBuyProviders[walletType] = buyProviderType;
|
2022-12-01 19:21:51 +00:00
|
|
|
}
|