cake_wallet/lib/view_model/send/send_view_model.dart

287 lines
8.9 KiB
Dart
Raw Normal View History

import 'package:cake_wallet/entities/balance_display_mode.dart';
2020-11-06 18:54:00 +00:00
import 'package:cake_wallet/entities/transaction_description.dart';
import 'package:cake_wallet/view_model/dashboard/balance_view_model.dart';
2021-12-24 12:37:24 +00:00
import 'package:cw_core/transaction_priority.dart';
import 'package:cake_wallet/view_model/send/output.dart';
import 'package:cake_wallet/view_model/send/send_template_view_model.dart';
2021-01-27 13:51:51 +00:00
import 'package:cake_wallet/view_model/settings/settings_view_model.dart';
2020-11-06 18:54:00 +00:00
import 'package:hive/hive.dart';
2020-10-30 16:32:21 +00:00
import 'package:mobx/mobx.dart';
import 'package:cake_wallet/entities/template.dart';
2020-08-25 16:32:40 +00:00
import 'package:cake_wallet/core/address_validator.dart';
import 'package:cake_wallet/core/amount_validator.dart';
2021-12-24 12:37:24 +00:00
import 'package:cw_core/pending_transaction.dart';
2020-08-25 16:32:40 +00:00
import 'package:cake_wallet/core/validator.dart';
2021-12-24 12:37:24 +00:00
import 'package:cw_core/wallet_base.dart';
2020-09-21 11:50:26 +00:00
import 'package:cake_wallet/core/execution_state.dart';
2021-12-24 12:37:24 +00:00
import 'package:cake_wallet/monero/monero.dart';
import 'package:cw_core/sync_status.dart';
import 'package:cw_core/crypto_currency.dart';
2020-09-21 11:50:26 +00:00
import 'package:cake_wallet/entities/fiat_currency.dart';
import 'package:cake_wallet/entities/calculate_fiat_amount.dart';
2021-12-24 12:37:24 +00:00
import 'package:cw_core/wallet_type.dart';
2020-09-21 11:50:26 +00:00
import 'package:cake_wallet/store/dashboard/fiat_conversion_store.dart';
2020-08-25 16:32:40 +00:00
import 'package:cake_wallet/store/settings_store.dart';
import 'package:cake_wallet/view_model/send/send_view_model_state.dart';
2021-11-02 09:17:24 +00:00
import 'package:cake_wallet/entities/parsed_address.dart';
2021-12-24 12:37:24 +00:00
import 'package:cake_wallet/bitcoin/bitcoin.dart';
2022-03-30 15:57:04 +00:00
import 'package:cake_wallet/haven/haven.dart';
2020-08-25 16:32:40 +00:00
part 'send_view_model.g.dart';
class SendViewModel = SendViewModelBase with _$SendViewModel;
abstract class SendViewModelBase with Store {
SendViewModelBase(
this._wallet,
this._settingsStore,
this.sendTemplateViewModel,
this._fiatConversationStore,
this.balanceViewModel,
this.transactionDescriptionBox)
2022-10-12 17:09:57 +00:00
: state = InitialExecutionState(),
currencies = _wallet.balance.keys.toList(),
selectedCryptoCurrency = _wallet.currency,
outputs = ObservableList<Output>() {
2021-01-27 13:51:51 +00:00
final priority = _settingsStore.priority[_wallet.type];
final priorities = priorityForWalletType(_wallet.type);
2021-01-27 13:51:51 +00:00
if (!priorityForWalletType(_wallet.type).contains(priority)) {
_settingsStore.priority[_wallet.type] = priorities.first;
}
2022-10-12 17:09:57 +00:00
outputs.add(Output(_wallet, _settingsStore, _fiatConversationStore, () => selectedCryptoCurrency));
2020-09-21 11:50:26 +00:00
}
2020-08-25 16:32:40 +00:00
@observable
2020-09-21 11:50:26 +00:00
ExecutionState state;
2020-08-25 16:32:40 +00:00
ObservableList<Output> outputs;
2020-08-25 16:32:40 +00:00
@action
void addOutput() {
2022-03-30 15:57:04 +00:00
outputs.add(Output(_wallet, _settingsStore, _fiatConversationStore, () => selectedCryptoCurrency));
}
2021-01-27 13:51:51 +00:00
@action
void removeOutput(Output output) {
if (isBatchSending) {
outputs.remove(output);
}
}
2021-01-27 13:51:51 +00:00
@action
void clearOutputs() {
outputs.clear();
addOutput();
2021-01-27 13:51:51 +00:00
}
2020-09-30 18:23:15 +00:00
@computed
bool get isBatchSending => outputs.length > 1;
@computed
String get pendingTransactionFiatAmount {
try {
if (pendingTransaction != null) {
final fiat = calculateFiatAmount(
2022-10-12 17:09:57 +00:00
price: _fiatConversationStore.prices[selectedCryptoCurrency]!,
cryptoAmount: pendingTransaction!.amountFormatted);
return fiat;
} else {
return '0.00';
}
} catch (_) {
return '0.00';
}
}
@computed
String get pendingTransactionFeeFiatAmount {
try {
if (pendingTransaction != null) {
final fiat = calculateFiatAmount(
2022-10-12 17:09:57 +00:00
price: _fiatConversationStore.prices[selectedCryptoCurrency]!,
cryptoAmount: pendingTransaction!.feeFormatted);
return fiat;
} else {
return '0.00';
}
} catch (_) {
return '0.00';
}
}
2020-08-25 16:32:40 +00:00
FiatCurrency get fiat => _settingsStore.fiatCurrency;
2022-10-12 17:09:57 +00:00
TransactionPriority get transactionPriority {
final priority = _settingsStore.priority[_wallet.type];
if (priority == null) {
throw Exception('Unexpected type ${_wallet.type}');
}
return priority;
}
2020-08-25 16:32:40 +00:00
CryptoCurrency get currency => _wallet.currency;
Validator get amountValidator => AmountValidator(type: _wallet.type);
Validator get allAmountValidator => AllAmountValidator();
2022-03-30 15:57:04 +00:00
Validator get addressValidator => AddressValidator(type: selectedCryptoCurrency);
2020-08-25 16:32:40 +00:00
Validator get textValidator => TextValidator();
@observable
2022-10-12 17:09:57 +00:00
PendingTransaction? pendingTransaction;
2020-08-25 16:32:40 +00:00
@computed
String get balance => balanceViewModel.availableBalance ?? '0.0';
2020-08-25 16:32:40 +00:00
@computed
bool get isReadyForSend => _wallet.syncStatus is SyncedSyncStatus;
@computed
2022-01-26 16:11:32 +00:00
List<Template> get templates => sendTemplateViewModel.templates
2022-01-31 12:54:24 +00:00
.where((template) => _isEqualCurrency(template.cryptoCurrency))
2022-01-26 16:11:32 +00:00
.toList();
@computed
bool get isElectrumWallet =>
_wallet.type == WalletType.bitcoin || _wallet.type == WalletType.litecoin;
2022-03-30 15:57:04 +00:00
@observable
CryptoCurrency selectedCryptoCurrency;
List<CryptoCurrency> currencies;
bool get hasMultiRecipient => _wallet.type != WalletType.haven;
bool get hasYat => outputs.any((out) =>
out.isParsedAddress &&
out.parsedAddress.parseFrom == ParseFrom.yatRecord);
2021-11-02 09:17:24 +00:00
WalletType get walletType => _wallet.type;
2022-03-30 15:57:04 +00:00
bool get hasCurrecyChanger => walletType == WalletType.haven;
2020-08-25 16:32:40 +00:00
final WalletBase _wallet;
final SettingsStore _settingsStore;
final SendTemplateViewModel sendTemplateViewModel;
final BalanceViewModel balanceViewModel;
2020-09-21 11:50:26 +00:00
final FiatConversionStore _fiatConversationStore;
2020-11-06 18:54:00 +00:00
final Box<TransactionDescription> transactionDescriptionBox;
2020-08-25 16:32:40 +00:00
@action
Future<void> createTransaction() async {
try {
2020-09-21 11:50:26 +00:00
state = IsExecutingState();
2020-08-25 16:32:40 +00:00
pendingTransaction = await _wallet.createTransaction(_credentials());
2020-09-21 11:50:26 +00:00
state = ExecutedSuccessfullyState();
2020-08-25 16:32:40 +00:00
} catch (e) {
2020-09-21 11:50:26 +00:00
state = FailureState(e.toString());
2020-08-25 16:32:40 +00:00
}
}
@action
Future<void> commitTransaction() async {
2022-10-12 17:09:57 +00:00
if (pendingTransaction == null) {
throw Exception("Pending transaction doesn't exist. It should not be happened.");
}
String address = outputs.fold('', (acc, value) {
return value.isParsedAddress
? acc + value.address + '\n' + value.extractedAddress + '\n\n'
: acc + value.address + '\n\n';
});
address = address.trim();
String note = outputs.fold('', (acc, value) {
return acc + value.note + '\n';
});
note = note.trim();
2020-08-25 16:32:40 +00:00
try {
state = TransactionCommitting();
2022-10-12 17:09:57 +00:00
await pendingTransaction!.commit();
2020-11-06 18:54:00 +00:00
2022-10-12 17:09:57 +00:00
if (pendingTransaction!.id?.isNotEmpty ?? false) {
_settingsStore.shouldSaveRecipientAddress
2021-01-11 17:15:27 +00:00
? await transactionDescriptionBox.add(TransactionDescription(
2022-10-12 17:09:57 +00:00
id: pendingTransaction!.id,
2021-01-11 17:15:27 +00:00
recipientAddress: address,
transactionNote: note))
: await transactionDescriptionBox.add(TransactionDescription(
2022-10-12 17:09:57 +00:00
id: pendingTransaction!.id, transactionNote: note));
2020-11-06 18:54:00 +00:00
}
2020-08-25 16:32:40 +00:00
state = TransactionCommitted();
} catch (e) {
2020-09-21 11:50:26 +00:00
state = FailureState(e.toString());
2020-08-25 16:32:40 +00:00
}
}
2020-09-30 18:23:15 +00:00
@action
void setTransactionPriority(TransactionPriority priority) =>
2021-01-27 13:51:51 +00:00
_settingsStore.priority[_wallet.type] = priority;
2020-09-30 18:23:15 +00:00
2020-08-25 16:32:40 +00:00
Object _credentials() {
switch (_wallet.type) {
case WalletType.bitcoin:
2021-01-27 13:51:51 +00:00
final priority = _settingsStore.priority[_wallet.type];
2020-09-21 11:50:26 +00:00
2022-10-12 17:09:57 +00:00
if (priority == null) {
throw Exception('Priority is null for wallet type: ${_wallet.type}');
}
return bitcoin!.createBitcoinTransactionCredentials(outputs, priority: priority);
case WalletType.litecoin:
final priority = _settingsStore.priority[_wallet.type];
2022-10-12 17:09:57 +00:00
if (priority == null) {
throw Exception('Priority is null for wallet type: ${_wallet.type}');
}
return bitcoin!.createBitcoinTransactionCredentials(outputs, priority: priority);
2020-08-25 16:32:40 +00:00
case WalletType.monero:
2021-01-27 13:51:51 +00:00
final priority = _settingsStore.priority[_wallet.type];
2020-09-21 11:50:26 +00:00
2022-10-12 17:09:57 +00:00
if (priority == null) {
throw Exception('Priority is null for wallet type: ${_wallet.type}');
}
return monero!.createMoneroTransactionCreationCredentials(
outputs: outputs, priority: priority);
2022-03-30 15:57:04 +00:00
case WalletType.haven:
final priority = _settingsStore.priority[_wallet.type];
2022-10-12 17:09:57 +00:00
if (priority == null) {
throw Exception('Priority is null for wallet type: ${_wallet.type}');
}
return haven!.createHavenTransactionCreationCredentials(
2022-03-30 15:57:04 +00:00
outputs: outputs, priority: priority, assetType: selectedCryptoCurrency.title);
2020-08-25 16:32:40 +00:00
default:
2022-10-12 17:09:57 +00:00
throw Exception('Unexpected wallet type: ${_wallet.type}');
}
2020-09-21 11:50:26 +00:00
}
2021-02-12 22:38:34 +00:00
String displayFeeRate(dynamic priority) {
final _priority = priority as TransactionPriority;
final wallet = _wallet;
2021-12-24 12:37:24 +00:00
if (isElectrumWallet) {
2022-10-12 17:09:57 +00:00
final rate = bitcoin!.getFeeRate(wallet, _priority);
return bitcoin!.bitcoinTransactionPriorityWithLabel(_priority, rate);
2021-02-12 22:38:34 +00:00
}
return priority.toString();
}
2022-01-31 12:54:24 +00:00
bool _isEqualCurrency(String currency) =>
currency.toLowerCase() == _wallet.currency.title.toLowerCase();
2020-08-25 16:32:40 +00:00
}