2023-07-24 20:23:09 +00:00
|
|
|
import 'package:cw_core/monero_amount_format.dart';
|
|
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
import 'package:cw_core/account.dart';
|
|
|
|
import 'package:cw_nano/api/account_list.dart' as account_list;
|
|
|
|
import 'package:cw_nano/api/wallet.dart' as monero_wallet;
|
|
|
|
|
|
|
|
part 'nano_account_list.g.dart';
|
|
|
|
|
|
|
|
class NanoAccountList = NanoAccountListBase with _$NanoAccountList;
|
|
|
|
|
|
|
|
abstract class NanoAccountListBase with Store {
|
|
|
|
NanoAccountListBase()
|
|
|
|
: accounts = ObservableList<Account>(),
|
|
|
|
_isRefreshing = false,
|
|
|
|
_isUpdating = false {
|
2023-07-25 17:36:24 +00:00
|
|
|
// refresh();
|
2023-07-24 20:23:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Account> getAll() => account_list.getAllAccount().map((accountRow) {
|
|
|
|
final accountIndex = accountRow.getId();
|
|
|
|
final balance = monero_wallet.getFullBalance(accountIndex: accountIndex);
|
|
|
|
|
|
|
|
return Account(
|
|
|
|
id: accountRow.getId(),
|
|
|
|
label: accountRow.getLabel(),
|
|
|
|
balance: moneroAmountToString(amount: balance),
|
|
|
|
);
|
|
|
|
}).toList();
|
|
|
|
|
|
|
|
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;
|
|
|
|
print(e);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|