mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 17:57:36 +00:00
39 lines
1,020 B
Dart
39 lines
1,020 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cake_wallet/src/domain/common/transaction_info.dart';
|
|
|
|
abstract class TransactionHistoryBase<TransactionType extends TransactionInfo> {
|
|
TransactionHistoryBase() : _isUpdating = false;
|
|
|
|
@observable
|
|
ObservableMap<String, TransactionType> transactions;
|
|
|
|
bool _isUpdating;
|
|
|
|
Future<void> update() async {
|
|
if (_isUpdating) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
_isUpdating = false;
|
|
transactions.addAll(await fetchTransactions());
|
|
_isUpdating = true;
|
|
} catch (e) {
|
|
_isUpdating = false;
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
void updateAsync({void Function() onFinished}) {
|
|
fetchTransactionsAsync(
|
|
(transaction) => transactions[transaction.id] = transaction,
|
|
onFinished: onFinished);
|
|
}
|
|
|
|
void fetchTransactionsAsync(
|
|
void Function(TransactionType transaction) onTransactionLoaded,
|
|
{void Function() onFinished});
|
|
|
|
Future<Map<String, TransactionType>> fetchTransactions();
|
|
}
|