Mih File Structure enhancement
This commit is contained in:
parent
f5c05d7431
commit
b69a52a5a8
294 changed files with 2782 additions and 4473 deletions
49
Frontend/lib/mih_providers/mzansi_wallet_provider.dart
Normal file
49
Frontend/lib/mih_providers/mzansi_wallet_provider.dart
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:mzansi_innovation_hub/mih_objects/loyalty_card.dart';
|
||||
|
||||
class MzansiWalletProvider extends ChangeNotifier {
|
||||
List<MIHLoyaltyCard> loyaltyCards;
|
||||
List<MIHLoyaltyCard> favouriteCards;
|
||||
int toolIndex;
|
||||
|
||||
MzansiWalletProvider({
|
||||
this.loyaltyCards = const [],
|
||||
this.favouriteCards = const [],
|
||||
this.toolIndex = 0,
|
||||
});
|
||||
|
||||
void reset() {
|
||||
toolIndex = 0;
|
||||
loyaltyCards = [];
|
||||
favouriteCards = [];
|
||||
}
|
||||
|
||||
void setToolIndex(int index) {
|
||||
toolIndex = index;
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
void setLoyaltyCards({required List<MIHLoyaltyCard> cards}) async {
|
||||
loyaltyCards = cards;
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
void setFavouriteCards({required List<MIHLoyaltyCard> cards}) async {
|
||||
favouriteCards = cards;
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
void deleteLoyaltyCard({required int cardId}) {
|
||||
loyaltyCards.removeWhere((card) => card.idloyalty_cards == cardId);
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
void editLoyaltyCard({required MIHLoyaltyCard updatedCard}) {
|
||||
int index = loyaltyCards.indexWhere(
|
||||
(card) => card.idloyalty_cards == updatedCard.idloyalty_cards);
|
||||
if (index != -1) {
|
||||
loyaltyCards[index] = updatedCard;
|
||||
notifyListeners();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue