mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
47 lines
No EOL
1.3 KiB
Dart
47 lines
No EOL
1.3 KiB
Dart
import 'dart:async';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:cake_wallet/entities/template.dart';
|
|
|
|
part 'send_template_store.g.dart';
|
|
|
|
class SendTemplateStore = SendTemplateBase with _$SendTemplateStore;
|
|
|
|
abstract class SendTemplateBase with Store {
|
|
SendTemplateBase({required this.templateSource})
|
|
: templates = ObservableList<Template>() {
|
|
update();
|
|
}
|
|
|
|
@observable
|
|
ObservableList<Template> templates;
|
|
|
|
Box<Template> templateSource;
|
|
|
|
@action
|
|
void update() =>
|
|
templates.replaceRange(0, templates.length, templateSource.values.toList());
|
|
|
|
@action
|
|
Future<void> addTemplate({
|
|
required String name,
|
|
required bool isCurrencySelected,
|
|
required String address,
|
|
required String cryptoCurrency,
|
|
required String fiatCurrency,
|
|
required String amount,
|
|
required String amountFiat}) async {
|
|
final template = Template(
|
|
nameRaw: name,
|
|
isCurrencySelectedRaw: isCurrencySelected,
|
|
addressRaw: address,
|
|
cryptoCurrencyRaw: cryptoCurrency,
|
|
fiatCurrencyRaw: fiatCurrency,
|
|
amountRaw: amount,
|
|
amountFiatRaw: amountFiat);
|
|
await templateSource.add(template);
|
|
}
|
|
|
|
@action
|
|
Future<void> remove({required Template template}) async => await template.delete();
|
|
} |