2022-03-30 15:57:04 +00:00
|
|
|
import 'package:cake_wallet/wallet_type_utils.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/transaction_history.dart';
|
|
|
|
import 'package:cw_core/balance.dart';
|
2021-04-12 18:22:22 +00:00
|
|
|
import 'package:cake_wallet/buy/order.dart';
|
2020-11-17 18:16:58 +00:00
|
|
|
import 'package:cake_wallet/entities/transaction_history.dart';
|
2021-03-12 19:04:37 +00:00
|
|
|
import 'package:cake_wallet/exchange/trade_state.dart';
|
2020-09-21 11:50:26 +00:00
|
|
|
import 'package:cake_wallet/entities/balance_display_mode.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/transaction_info.dart';
|
2020-09-21 11:50:26 +00:00
|
|
|
import 'package:cake_wallet/exchange/exchange_provider_description.dart';
|
2021-03-16 13:20:46 +00:00
|
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
2021-03-12 19:04:37 +00:00
|
|
|
import 'package:cake_wallet/store/dashboard/orders_store.dart';
|
2021-10-01 15:13:10 +00:00
|
|
|
import 'package:cake_wallet/store/yat/yat_store.dart';
|
2020-09-22 13:35:23 +00:00
|
|
|
import 'package:cake_wallet/utils/mobx.dart';
|
2020-07-23 12:20:52 +00:00
|
|
|
import 'package:cake_wallet/view_model/dashboard/balance_view_model.dart';
|
2020-08-28 20:04:48 +00:00
|
|
|
import 'package:cake_wallet/view_model/dashboard/filter_item.dart';
|
2021-03-12 19:04:37 +00:00
|
|
|
import 'package:cake_wallet/view_model/dashboard/order_list_item.dart';
|
2020-07-23 12:20:52 +00:00
|
|
|
import 'package:cake_wallet/view_model/dashboard/trade_list_item.dart';
|
|
|
|
import 'package:cake_wallet/view_model/dashboard/transaction_list_item.dart';
|
|
|
|
import 'package:cake_wallet/view_model/dashboard/action_list_item.dart';
|
|
|
|
import 'package:cake_wallet/view_model/dashboard/action_list_display_mode.dart';
|
2021-03-03 18:54:23 +00:00
|
|
|
import 'package:crypto/crypto.dart';
|
2021-03-12 19:04:37 +00:00
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
import 'package:hive/hive.dart';
|
2020-07-23 12:20:52 +00:00
|
|
|
import 'package:mobx/mobx.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/wallet_base.dart';
|
|
|
|
import 'package:cw_core/sync_status.dart';
|
|
|
|
import 'package:cw_core/wallet_type.dart';
|
2020-07-23 12:20:52 +00:00
|
|
|
import 'package:cake_wallet/store/app_store.dart';
|
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
import 'package:cake_wallet/store/dashboard/trades_store.dart';
|
|
|
|
import 'package:cake_wallet/store/dashboard/trade_filter_store.dart';
|
|
|
|
import 'package:cake_wallet/store/dashboard/transaction_filter_store.dart';
|
|
|
|
import 'package:cake_wallet/view_model/dashboard/formatted_item_list.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cake_wallet/monero/monero.dart';
|
2020-07-23 12:20:52 +00:00
|
|
|
|
|
|
|
part 'dashboard_view_model.g.dart';
|
|
|
|
|
|
|
|
class DashboardViewModel = DashboardViewModelBase with _$DashboardViewModel;
|
|
|
|
|
|
|
|
abstract class DashboardViewModelBase with Store {
|
2020-08-25 16:32:40 +00:00
|
|
|
DashboardViewModelBase(
|
|
|
|
{this.balanceViewModel,
|
|
|
|
this.appStore,
|
|
|
|
this.tradesStore,
|
|
|
|
this.tradeFilterStore,
|
2021-03-16 13:20:46 +00:00
|
|
|
this.transactionFilterStore,
|
2021-03-24 10:22:42 +00:00
|
|
|
this.settingsStore,
|
2021-10-01 15:13:10 +00:00
|
|
|
this.yatStore,
|
2021-08-16 14:44:38 +00:00
|
|
|
this.ordersStore}) {
|
2020-09-01 11:18:07 +00:00
|
|
|
filterItems = {
|
|
|
|
S.current.transactions: [
|
|
|
|
FilterItem(
|
2020-10-29 18:10:09 +00:00
|
|
|
value: () => transactionFilterStore.displayIncoming,
|
2020-09-01 11:18:07 +00:00
|
|
|
caption: S.current.incoming,
|
|
|
|
onChanged: (value) => transactionFilterStore.toggleIncoming()),
|
|
|
|
FilterItem(
|
2020-10-29 18:10:09 +00:00
|
|
|
value: () => transactionFilterStore.displayOutgoing,
|
2020-09-01 11:18:07 +00:00
|
|
|
caption: S.current.outgoing,
|
|
|
|
onChanged: (value) => transactionFilterStore.toggleOutgoing()),
|
2020-10-29 18:10:09 +00:00
|
|
|
// FilterItem(
|
|
|
|
// value: () => false,
|
|
|
|
// caption: S.current.transactions_by_date,
|
|
|
|
// onChanged: null),
|
2020-09-01 11:18:07 +00:00
|
|
|
],
|
|
|
|
S.current.trades: [
|
|
|
|
FilterItem(
|
2020-10-29 18:10:09 +00:00
|
|
|
value: () => tradeFilterStore.displayChangeNow,
|
2020-09-01 11:18:07 +00:00
|
|
|
caption: 'Change.NOW',
|
|
|
|
onChanged: (value) => tradeFilterStore
|
|
|
|
.toggleDisplayExchange(ExchangeProviderDescription.changeNow)),
|
|
|
|
]
|
|
|
|
};
|
2020-08-28 20:04:48 +00:00
|
|
|
|
2020-07-23 12:20:52 +00:00
|
|
|
name = appStore.wallet?.name;
|
|
|
|
wallet ??= appStore.wallet;
|
|
|
|
type = wallet.type;
|
2021-05-11 15:37:26 +00:00
|
|
|
isOutdatedElectrumWallet =
|
|
|
|
wallet.type == WalletType.bitcoin && wallet.seed.split(' ').length < 24;
|
2021-10-01 15:13:10 +00:00
|
|
|
isShowFirstYatIntroduction = false;
|
|
|
|
isShowSecondYatIntroduction = false;
|
|
|
|
isShowThirdYatIntroduction = false;
|
2022-03-30 15:57:04 +00:00
|
|
|
updateActions();
|
|
|
|
|
2020-07-23 12:20:52 +00:00
|
|
|
final _wallet = wallet;
|
|
|
|
|
2021-12-24 12:37:24 +00:00
|
|
|
if (_wallet.type == WalletType.monero) {
|
|
|
|
subname = monero.getCurrentAccount(_wallet)?.label;
|
2020-11-13 18:29:01 +00:00
|
|
|
|
2021-12-24 12:37:24 +00:00
|
|
|
_onMoneroAccountChangeReaction = reaction((_) => monero.getMoneroWalletDetails(wallet)
|
2021-07-13 05:46:34 +00:00
|
|
|
.account, (Account account) => _onMoneroAccountChange(_wallet));
|
2020-11-13 18:29:01 +00:00
|
|
|
|
2021-12-24 12:37:24 +00:00
|
|
|
_onMoneroBalanceChangeReaction = reaction((_) => monero.getMoneroWalletDetails(wallet).balance,
|
2020-12-04 19:09:55 +00:00
|
|
|
(MoneroBalance balance) => _onMoneroTransactionsUpdate(_wallet));
|
2020-11-17 18:16:58 +00:00
|
|
|
|
2020-11-13 18:29:01 +00:00
|
|
|
final _accountTransactions = _wallet
|
|
|
|
.transactionHistory.transactions.values
|
2021-12-24 12:37:24 +00:00
|
|
|
.where((tx) => monero.getTransactionInfoAccountId(tx) == monero.getCurrentAccount(wallet).id)
|
2020-12-04 19:09:55 +00:00
|
|
|
.toList();
|
2020-11-13 18:29:01 +00:00
|
|
|
|
2020-12-04 19:09:55 +00:00
|
|
|
transactions = ObservableList.of(_accountTransactions.map((transaction) =>
|
|
|
|
TransactionListItem(
|
|
|
|
transaction: transaction,
|
|
|
|
balanceViewModel: balanceViewModel,
|
|
|
|
settingsStore: appStore.settingsStore)));
|
2020-11-13 18:29:01 +00:00
|
|
|
} else {
|
|
|
|
transactions = ObservableList.of(wallet
|
|
|
|
.transactionHistory.transactions.values
|
|
|
|
.map((transaction) => TransactionListItem(
|
2020-12-04 19:09:55 +00:00
|
|
|
transaction: transaction,
|
2020-11-13 18:29:01 +00:00
|
|
|
balanceViewModel: balanceViewModel,
|
2020-12-04 19:09:55 +00:00
|
|
|
settingsStore: appStore.settingsStore)));
|
2020-07-23 12:20:52 +00:00
|
|
|
}
|
2020-12-04 19:09:55 +00:00
|
|
|
|
2021-05-07 07:36:38 +00:00
|
|
|
reaction((_) => appStore.wallet, _onWalletChange);
|
|
|
|
|
2020-12-04 19:09:55 +00:00
|
|
|
connectMapToListWithTransform(
|
|
|
|
appStore.wallet.transactionHistory.transactions,
|
|
|
|
transactions,
|
|
|
|
(TransactionInfo val) => TransactionListItem(
|
|
|
|
transaction: val,
|
|
|
|
balanceViewModel: balanceViewModel,
|
|
|
|
settingsStore: appStore.settingsStore),
|
|
|
|
filter: (TransactionInfo tx) {
|
|
|
|
final wallet = _wallet;
|
2021-12-24 12:37:24 +00:00
|
|
|
if (wallet.type == WalletType.monero) {
|
|
|
|
return monero.getTransactionInfoAccountId(tx) == monero.getCurrentAccount(wallet).id;
|
2020-12-04 19:09:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
2020-07-23 12:20:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@observable
|
|
|
|
WalletType type;
|
|
|
|
|
|
|
|
@observable
|
|
|
|
String name;
|
|
|
|
|
|
|
|
@observable
|
|
|
|
ObservableList<TransactionListItem> transactions;
|
|
|
|
|
|
|
|
@observable
|
|
|
|
String subname;
|
|
|
|
|
2021-10-01 15:13:10 +00:00
|
|
|
@observable
|
|
|
|
bool isShowFirstYatIntroduction;
|
|
|
|
|
|
|
|
@observable
|
|
|
|
bool isShowSecondYatIntroduction;
|
|
|
|
|
|
|
|
@observable
|
|
|
|
bool isShowThirdYatIntroduction;
|
|
|
|
|
2020-07-23 12:20:52 +00:00
|
|
|
@computed
|
2021-07-13 05:46:34 +00:00
|
|
|
String get address => wallet.walletAddresses.address;
|
2020-07-23 12:20:52 +00:00
|
|
|
|
|
|
|
@computed
|
|
|
|
SyncStatus get status => wallet.syncStatus;
|
|
|
|
|
|
|
|
@computed
|
|
|
|
String get syncStatusText {
|
|
|
|
var statusText = '';
|
|
|
|
|
|
|
|
if (status is SyncingSyncStatus) {
|
2020-08-25 16:32:40 +00:00
|
|
|
statusText = S.current.Blocks_remaining(status.toString());
|
2020-07-23 12:20:52 +00:00
|
|
|
}
|
|
|
|
|
2020-08-29 10:19:27 +00:00
|
|
|
if (status is FailedSyncStatus || status is LostConnectionSyncStatus) {
|
2020-08-25 16:32:40 +00:00
|
|
|
statusText = S.current.please_try_to_connect_to_another_node;
|
2020-07-23 12:20:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return statusText;
|
|
|
|
}
|
|
|
|
|
|
|
|
@computed
|
|
|
|
BalanceDisplayMode get balanceDisplayMode =>
|
|
|
|
appStore.settingsStore.balanceDisplayMode;
|
|
|
|
|
|
|
|
@computed
|
2020-10-24 12:55:24 +00:00
|
|
|
List<TradeListItem> get trades => tradesStore.trades
|
|
|
|
.where((trade) => trade.trade.walletId == wallet.id)
|
|
|
|
.toList();
|
2020-07-23 12:20:52 +00:00
|
|
|
|
2021-03-12 19:04:37 +00:00
|
|
|
@computed
|
|
|
|
List<OrderListItem> get orders => ordersStore.orders
|
|
|
|
.where((item) => item.order.walletId == wallet.id)
|
|
|
|
.toList();
|
|
|
|
|
2020-07-23 12:20:52 +00:00
|
|
|
@computed
|
|
|
|
double get price => balanceViewModel.price;
|
|
|
|
|
|
|
|
@computed
|
|
|
|
List<ActionListItem> get items {
|
|
|
|
final _items = <ActionListItem>[];
|
|
|
|
|
2020-08-25 16:32:40 +00:00
|
|
|
_items.addAll(transactionFilterStore.filtered(transactions: transactions));
|
2020-08-26 17:31:23 +00:00
|
|
|
_items.addAll(tradeFilterStore.filtered(trades: trades, wallet: wallet));
|
2021-03-12 19:04:37 +00:00
|
|
|
_items.addAll(orders);
|
2020-07-23 12:20:52 +00:00
|
|
|
|
|
|
|
return formattedItemsList(_items);
|
|
|
|
}
|
|
|
|
|
2020-10-24 12:55:24 +00:00
|
|
|
@observable
|
2021-05-07 07:36:38 +00:00
|
|
|
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>
|
|
|
|
wallet;
|
2020-07-23 12:20:52 +00:00
|
|
|
|
2020-12-16 19:16:47 +00:00
|
|
|
bool get hasRescan => wallet.type == WalletType.monero;
|
|
|
|
|
2020-07-23 12:20:52 +00:00
|
|
|
BalanceViewModel balanceViewModel;
|
|
|
|
|
|
|
|
AppStore appStore;
|
|
|
|
|
2021-03-16 13:20:46 +00:00
|
|
|
SettingsStore settingsStore;
|
|
|
|
|
2021-10-01 15:13:10 +00:00
|
|
|
YatStore yatStore;
|
|
|
|
|
2020-07-23 12:20:52 +00:00
|
|
|
TradesStore tradesStore;
|
|
|
|
|
2021-03-12 19:04:37 +00:00
|
|
|
OrdersStore ordersStore;
|
|
|
|
|
2020-07-23 12:20:52 +00:00
|
|
|
TradeFilterStore tradeFilterStore;
|
|
|
|
|
|
|
|
TransactionFilterStore transactionFilterStore;
|
|
|
|
|
2020-08-28 20:04:48 +00:00
|
|
|
Map<String, List<FilterItem>> filterItems;
|
2020-07-28 16:03:34 +00:00
|
|
|
|
2021-03-16 13:20:46 +00:00
|
|
|
bool get isBuyEnabled => settingsStore.isBitcoinBuyEnabled;
|
|
|
|
|
2021-10-04 13:03:35 +00:00
|
|
|
bool get shouldShowYatPopup => settingsStore.shouldShowYatPopup;
|
|
|
|
|
|
|
|
@action
|
|
|
|
void furtherShowYatPopup(bool shouldShow) =>
|
|
|
|
settingsStore.shouldShowYatPopup = shouldShow;
|
|
|
|
|
2022-03-30 15:57:04 +00:00
|
|
|
@observable
|
|
|
|
bool isEnabledExchangeAction;
|
|
|
|
|
|
|
|
@observable
|
|
|
|
bool hasExchangeAction;
|
|
|
|
|
|
|
|
@observable
|
|
|
|
bool isEnabledBuyAction;
|
|
|
|
|
|
|
|
@observable
|
|
|
|
bool hasBuyAction;
|
|
|
|
|
|
|
|
@observable
|
|
|
|
bool isEnabledSellAction;
|
|
|
|
|
|
|
|
@observable
|
|
|
|
bool hasSellAction;
|
|
|
|
|
2020-11-13 18:29:01 +00:00
|
|
|
ReactionDisposer _onMoneroAccountChangeReaction;
|
|
|
|
|
2020-11-20 16:27:56 +00:00
|
|
|
ReactionDisposer _onMoneroBalanceChangeReaction;
|
2020-11-17 18:16:58 +00:00
|
|
|
|
2021-06-04 15:25:17 +00:00
|
|
|
@observable
|
|
|
|
bool isOutdatedElectrumWallet;
|
|
|
|
|
2020-08-27 16:54:34 +00:00
|
|
|
Future<void> reconnect() async {
|
|
|
|
final node = appStore.settingsStore.getCurrentNode(wallet.type);
|
|
|
|
await wallet.connectToNode(node: node);
|
|
|
|
}
|
|
|
|
|
2020-10-24 12:55:24 +00:00
|
|
|
@action
|
2021-05-07 07:36:38 +00:00
|
|
|
void _onWalletChange(
|
|
|
|
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>,
|
|
|
|
TransactionInfo>
|
|
|
|
wallet) {
|
2020-10-24 12:55:24 +00:00
|
|
|
this.wallet = wallet;
|
2020-11-30 17:17:44 +00:00
|
|
|
type = wallet.type;
|
2020-07-23 12:20:52 +00:00
|
|
|
name = wallet.name;
|
2021-05-11 15:37:26 +00:00
|
|
|
isOutdatedElectrumWallet =
|
|
|
|
wallet.type == WalletType.bitcoin && wallet.seed.split(' ').length < 24;
|
2022-03-30 15:57:04 +00:00
|
|
|
updateActions();
|
2020-11-13 18:29:01 +00:00
|
|
|
|
2021-12-24 12:37:24 +00:00
|
|
|
if (wallet.type == WalletType.monero) {
|
|
|
|
subname = monero.getCurrentAccount(wallet)?.label;
|
2020-11-17 18:16:58 +00:00
|
|
|
|
|
|
|
_onMoneroAccountChangeReaction?.reaction?.dispose();
|
2020-11-20 16:27:56 +00:00
|
|
|
_onMoneroBalanceChangeReaction?.reaction?.dispose();
|
2020-11-17 18:16:58 +00:00
|
|
|
|
2021-12-24 12:37:24 +00:00
|
|
|
_onMoneroAccountChangeReaction = reaction((_) => monero.getMoneroWalletDetails(wallet)
|
2021-07-13 05:46:34 +00:00
|
|
|
.account, (Account account) => _onMoneroAccountChange(wallet));
|
2020-11-17 18:16:58 +00:00
|
|
|
|
2021-12-24 12:37:24 +00:00
|
|
|
_onMoneroBalanceChangeReaction = reaction((_) => monero.getMoneroWalletDetails(wallet).balance,
|
2020-12-04 19:09:55 +00:00
|
|
|
(MoneroBalance balance) => _onMoneroTransactionsUpdate(wallet));
|
2020-11-13 18:29:01 +00:00
|
|
|
|
2020-11-18 17:09:34 +00:00
|
|
|
_onMoneroTransactionsUpdate(wallet);
|
2020-11-13 18:29:01 +00:00
|
|
|
} else {
|
2021-01-06 13:34:04 +00:00
|
|
|
subname = null;
|
|
|
|
|
2020-11-18 17:09:34 +00:00
|
|
|
transactions.clear();
|
|
|
|
|
2020-11-13 18:29:01 +00:00
|
|
|
transactions.addAll(wallet.transactionHistory.transactions.values.map(
|
2020-12-04 19:09:55 +00:00
|
|
|
(transaction) => TransactionListItem(
|
2020-11-13 18:29:01 +00:00
|
|
|
transaction: transaction,
|
|
|
|
balanceViewModel: balanceViewModel,
|
|
|
|
settingsStore: appStore.settingsStore)));
|
|
|
|
}
|
2020-12-16 19:16:47 +00:00
|
|
|
|
|
|
|
connectMapToListWithTransform(
|
|
|
|
appStore.wallet.transactionHistory.transactions,
|
|
|
|
transactions,
|
2021-05-07 07:36:38 +00:00
|
|
|
(TransactionInfo val) => TransactionListItem(
|
2020-12-16 19:16:47 +00:00
|
|
|
transaction: val,
|
|
|
|
balanceViewModel: balanceViewModel,
|
|
|
|
settingsStore: appStore.settingsStore),
|
|
|
|
filter: (TransactionInfo tx) {
|
2021-12-24 12:37:24 +00:00
|
|
|
if (wallet.type == WalletType.monero) {
|
|
|
|
return monero.getTransactionInfoAccountId(tx) == monero.getCurrentAccount(wallet).id;
|
2021-05-07 07:36:38 +00:00
|
|
|
}
|
2020-12-16 19:16:47 +00:00
|
|
|
|
2021-05-07 07:36:38 +00:00
|
|
|
return true;
|
|
|
|
});
|
2020-11-13 18:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
2021-12-24 12:37:24 +00:00
|
|
|
void _onMoneroAccountChange(WalletBase wallet) {
|
|
|
|
subname = monero.getCurrentAccount(wallet)?.label;
|
2020-11-18 17:09:34 +00:00
|
|
|
_onMoneroTransactionsUpdate(wallet);
|
2020-11-17 18:16:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
2021-12-24 12:37:24 +00:00
|
|
|
void _onMoneroTransactionsUpdate(WalletBase wallet) {
|
2020-07-23 12:20:52 +00:00
|
|
|
transactions.clear();
|
2020-11-13 18:29:01 +00:00
|
|
|
|
2021-12-24 12:37:24 +00:00
|
|
|
final _accountTransactions = monero.getTransactionHistory(wallet).transactions.values
|
|
|
|
.where((tx) => monero.getTransactionInfoAccountId(tx) == monero.getCurrentAccount(wallet).id)
|
2020-12-04 19:09:55 +00:00
|
|
|
.toList();
|
2020-11-13 18:29:01 +00:00
|
|
|
|
2020-12-04 19:09:55 +00:00
|
|
|
transactions.addAll(_accountTransactions.map((transaction) =>
|
|
|
|
TransactionListItem(
|
2020-08-25 16:32:40 +00:00
|
|
|
transaction: transaction,
|
2020-11-12 09:32:57 +00:00
|
|
|
balanceViewModel: balanceViewModel,
|
|
|
|
settingsStore: appStore.settingsStore)));
|
2020-07-23 12:20:52 +00:00
|
|
|
}
|
2022-03-30 15:57:04 +00:00
|
|
|
|
|
|
|
void updateActions() {
|
|
|
|
isEnabledExchangeAction = wallet.type != WalletType.haven;
|
|
|
|
hasExchangeAction = !isHaven;
|
|
|
|
isEnabledBuyAction = wallet.type != WalletType.haven
|
|
|
|
&& wallet.type != WalletType.monero;
|
|
|
|
hasBuyAction = !isMoneroOnly && !isHaven;
|
|
|
|
isEnabledSellAction = wallet.type != WalletType.haven
|
|
|
|
&& wallet.type != WalletType.monero
|
|
|
|
&& wallet.type != WalletType.litecoin;
|
|
|
|
hasSellAction = !isMoneroOnly && !isHaven;
|
|
|
|
}
|
2020-07-23 12:20:52 +00:00
|
|
|
}
|