mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 18:21:08 +00:00
77 lines
2.4 KiB
Dart
77 lines
2.4 KiB
Dart
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:isar/isar.dart';
|
|
import 'package:stackwallet/models/balance.dart';
|
|
import 'package:stackwallet/providers/db/main_db_provider.dart';
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
import 'package:stackwallet/wallets/isar/models/wallet_info.dart';
|
|
import 'package:stackwallet/wallets/isar/providers/util/watcher.dart';
|
|
|
|
final _wiProvider = ChangeNotifierProvider.autoDispose.family<Watcher, String>(
|
|
(ref, walletId) {
|
|
final collection = ref.watch(mainDBProvider).isar.walletInfo;
|
|
|
|
final watcher = Watcher(
|
|
collection.where().walletIdEqualTo(walletId).findFirstSync()!,
|
|
collection: collection,
|
|
);
|
|
|
|
ref.onDispose(() => watcher.dispose());
|
|
|
|
return watcher;
|
|
},
|
|
);
|
|
|
|
final pWalletInfo = Provider.autoDispose.family<WalletInfo, String>(
|
|
(ref, walletId) {
|
|
return ref.watch(_wiProvider(walletId)).value as WalletInfo;
|
|
},
|
|
);
|
|
|
|
final pWalletCoin = Provider.autoDispose.family<Coin, String>(
|
|
(ref, walletId) {
|
|
return ref.watch(_wiProvider(walletId)
|
|
.select((value) => (value.value as WalletInfo).coin));
|
|
},
|
|
);
|
|
|
|
final pWalletBalance = Provider.autoDispose.family<Balance, String>(
|
|
(ref, walletId) {
|
|
return ref.watch(_wiProvider(walletId)
|
|
.select((value) => (value.value as WalletInfo).cachedBalance));
|
|
},
|
|
);
|
|
|
|
final pWalletBalanceSecondary = Provider.autoDispose.family<Balance, String>(
|
|
(ref, walletId) {
|
|
return ref.watch(_wiProvider(walletId)
|
|
.select((value) => (value.value as WalletInfo).cachedSecondaryBalance));
|
|
},
|
|
);
|
|
|
|
final pWalletChainHeight = Provider.autoDispose.family<int, String>(
|
|
(ref, walletId) {
|
|
return ref.watch(_wiProvider(walletId)
|
|
.select((value) => (value.value as WalletInfo).cachedChainHeight));
|
|
},
|
|
);
|
|
|
|
final pWalletIsFavourite = Provider.autoDispose.family<bool, String>(
|
|
(ref, walletId) {
|
|
return ref.watch(_wiProvider(walletId)
|
|
.select((value) => (value.value as WalletInfo).isFavourite));
|
|
},
|
|
);
|
|
|
|
final pWalletName = Provider.autoDispose.family<String, String>(
|
|
(ref, walletId) {
|
|
return ref.watch(_wiProvider(walletId)
|
|
.select((value) => (value.value as WalletInfo).name));
|
|
},
|
|
);
|
|
|
|
final pWalletReceivingAddress = Provider.autoDispose.family<String, String>(
|
|
(ref, walletId) {
|
|
return ref.watch(_wiProvider(walletId)
|
|
.select((value) => (value.value as WalletInfo).cachedReceivingAddress));
|
|
},
|
|
);
|