mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
76 lines
1.6 KiB
Dart
76 lines
1.6 KiB
Dart
import 'package:mobx/mobx.dart';
|
|
import 'package:cake_wallet/src/domain/monero/account.dart';
|
|
import 'package:cw_monero/account_list.dart' as account_list;
|
|
|
|
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();
|
|
print(account_list.accountSizeNative());
|
|
}
|
|
|
|
@observable
|
|
ObservableList<Account> accounts;
|
|
bool _isRefreshing;
|
|
bool _isUpdating;
|
|
|
|
Future 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) => Account.fromRow(accountRow))
|
|
.toList();
|
|
|
|
Future addAccount({String label}) async {
|
|
await account_list.addAccount(label: label);
|
|
await update();
|
|
}
|
|
|
|
Future setLabelAccount({int accountIndex, String label}) async {
|
|
await account_list.setLabelForAccount(
|
|
accountIndex: accountIndex, label: label);
|
|
await update();
|
|
}
|
|
|
|
void refresh() {
|
|
if (_isRefreshing) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
_isRefreshing = true;
|
|
account_list.refreshAccounts();
|
|
_isRefreshing = false;
|
|
} catch (e) {
|
|
_isRefreshing = false;
|
|
print(e);
|
|
rethrow;
|
|
}
|
|
}
|
|
}
|