mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
97 lines
2.5 KiB
Dart
97 lines
2.5 KiB
Dart
import 'package:cw_core/monero_amount_format.dart';
|
|
import 'package:cw_core/utils/print_verbose.dart';
|
|
import 'package:cw_monero/api/wallet_manager.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cw_core/account.dart';
|
|
import 'package:cw_monero/api/account_list.dart' as account_list;
|
|
import 'package:monero/monero.dart' as monero;
|
|
|
|
part 'monero_account_list.g.dart';
|
|
|
|
class MoneroAccountList = MoneroAccountListBase with _$MoneroAccountList;
|
|
|
|
abstract class MoneroAccountListBase with Store {
|
|
MoneroAccountListBase()
|
|
: accounts = ObservableList<Account>(),
|
|
_isRefreshing = false,
|
|
_isUpdating = false {
|
|
refresh();
|
|
}
|
|
|
|
@observable
|
|
ObservableList<Account> accounts;
|
|
bool _isRefreshing;
|
|
bool _isUpdating;
|
|
|
|
void update() async {
|
|
if (_isUpdating) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
_isUpdating = true;
|
|
refresh();
|
|
final accounts = getAll();
|
|
|
|
if (accounts.isNotEmpty) {
|
|
this.accounts.clear();
|
|
this.accounts.addAll(accounts);
|
|
}
|
|
|
|
_isUpdating = false;
|
|
} catch (e) {
|
|
_isUpdating = false;
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
static Map<int, List<Account>> cachedAccounts = {};
|
|
|
|
List<Account> getAll() {
|
|
final allAccounts = account_list.getAllAccount();
|
|
final currentCount = allAccounts.length;
|
|
cachedAccounts[account_list.wptr!.address] ??= [];
|
|
|
|
if (cachedAccounts[account_list.wptr!.address]!.length == currentCount) {
|
|
return cachedAccounts[account_list.wptr!.address]!;
|
|
}
|
|
|
|
cachedAccounts[account_list.wptr!.address] = allAccounts.map((accountRow) {
|
|
final balance = monero.SubaddressAccountRow_getUnlockedBalance(accountRow);
|
|
|
|
return Account(
|
|
id: monero.SubaddressAccountRow_getRowId(accountRow),
|
|
label: monero.SubaddressAccountRow_getLabel(accountRow),
|
|
balance: moneroAmountToString(amount: monero.Wallet_amountFromString(balance)),
|
|
);
|
|
}).toList();
|
|
|
|
return cachedAccounts[account_list.wptr!.address]!;
|
|
}
|
|
|
|
Future<void> addAccount({required String label}) async {
|
|
await account_list.addAccount(label: label);
|
|
update();
|
|
}
|
|
|
|
Future<void> setLabelAccount({required int accountIndex, required String label}) async {
|
|
await account_list.setLabelForAccount(accountIndex: accountIndex, label: label);
|
|
update();
|
|
}
|
|
|
|
void refresh() {
|
|
if (_isRefreshing) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
_isRefreshing = true;
|
|
account_list.refreshAccounts();
|
|
_isRefreshing = false;
|
|
} catch (e) {
|
|
_isRefreshing = false;
|
|
printV(e);
|
|
rethrow;
|
|
}
|
|
}
|
|
}
|