mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
50 lines
1.4 KiB
Dart
50 lines
1.4 KiB
Dart
import 'package:cake_wallet/ionia/ionia_create_state.dart';
|
|
import 'package:cake_wallet/ionia/ionia_service.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cake_wallet/ionia/ionia_gift_card.dart';
|
|
|
|
part 'ionia_account_view_model.g.dart';
|
|
|
|
class IoniaAccountViewModel = IoniaAccountViewModelBase with _$IoniaAccountViewModel;
|
|
|
|
abstract class IoniaAccountViewModelBase with Store {
|
|
IoniaAccountViewModelBase({required this.ioniaService})
|
|
: email = '',
|
|
giftCards = [],
|
|
merchantState = InitialIoniaMerchantLoadingState() {
|
|
ioniaService.getUserEmail().then((email) => this.email = email);
|
|
updateUserGiftCards();
|
|
}
|
|
|
|
final IoniaService ioniaService;
|
|
|
|
@observable
|
|
String email;
|
|
|
|
@observable
|
|
List<IoniaGiftCard> giftCards;
|
|
|
|
@observable
|
|
IoniaMerchantState merchantState;
|
|
|
|
@computed
|
|
int get countOfMerch => giftCards.where((giftCard) => !giftCard.isEmpty).length;
|
|
|
|
@computed
|
|
List<IoniaGiftCard> get activeMechs => giftCards.where((giftCard) => !giftCard.isEmpty).toList();
|
|
|
|
@computed
|
|
List<IoniaGiftCard> get redeemedMerchs => giftCards.where((giftCard) => giftCard.isEmpty).toList();
|
|
|
|
@action
|
|
void logout() {
|
|
ioniaService.logout();
|
|
}
|
|
|
|
@action
|
|
Future<void> updateUserGiftCards() async {
|
|
merchantState = IoniaLoadingMerchantState();
|
|
giftCards = await ioniaService.getCurrentUserGiftCardSummaries();
|
|
merchantState = IoniaLoadedMerchantState();
|
|
}
|
|
}
|