You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			220 lines
		
	
	
		
			9.1 KiB
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			220 lines
		
	
	
		
			9.1 KiB
		
	
	
	
		
			Dart
		
	
| import 'package:easy_localization/easy_localization.dart';
 | |
| import 'package:flutter/foundation.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| import 'package:mohem_flutter_app/api/dashboard_api_client.dart';
 | |
| import 'package:mohem_flutter_app/api/offers_and_discounts_api_client.dart';
 | |
| import 'package:mohem_flutter_app/classes/utils.dart';
 | |
| import 'package:mohem_flutter_app/config/routes.dart';
 | |
| import 'package:mohem_flutter_app/generated/locale_keys.g.dart';
 | |
| import 'package:mohem_flutter_app/main.dart';
 | |
| import 'package:mohem_flutter_app/models/dashboard/drawer_menu_item_model.dart';
 | |
| import 'package:mohem_flutter_app/models/dashboard/get_attendance_tracking_list_model.dart';
 | |
| import 'package:mohem_flutter_app/models/dashboard/get_open_notifications_list.dart';
 | |
| import 'package:mohem_flutter_app/models/dashboard/itg_forms_model.dart';
 | |
| import 'package:mohem_flutter_app/models/dashboard/list_menu.dart';
 | |
| import 'package:mohem_flutter_app/models/dashboard/menu_entries.dart';
 | |
| import 'package:mohem_flutter_app/models/dashboard/menus.dart';
 | |
| import 'package:mohem_flutter_app/models/generic_response_model.dart';
 | |
| import 'package:mohem_flutter_app/models/offers_and_discounts/get_offers_list.dart';
 | |
| 
 | |
| /// Mix-in [DiagnosticableTreeMixin] to have access to [debugFillProperties] for the devtool
 | |
| // ignore: prefer_mixin
 | |
| class DashboardProviderModel with ChangeNotifier, DiagnosticableTreeMixin {
 | |
|   //Attendance Tracking
 | |
|   bool isAttendanceTrackingLoading = true;
 | |
|   int endTime = 0, isTimeRemainingInSeconds = 0;
 | |
|   double progress = 0.0;
 | |
|   GetAttendanceTracking? attendanceTracking;
 | |
| 
 | |
|   //Work List
 | |
|   bool isWorkListLoading = true;
 | |
|   int workListCounter = 0;
 | |
| 
 | |
|   //Misssing Swipe
 | |
|   bool isMissingSwipeLoading = true;
 | |
|   int missingSwipeCounter = 0;
 | |
| 
 | |
|   //Leave and Ticket Balance
 | |
|   bool isLeaveTicketBalanceLoading = true;
 | |
|   double leaveBalance = 0;
 | |
|   double ticketBalance = 0;
 | |
| 
 | |
|   //Menu Entries
 | |
|   bool isServicesMenusLoading = true;
 | |
|   List<Menus>? homeMenus;
 | |
|   List<GetMenuEntriesList>? getMenuEntriesList;
 | |
| 
 | |
|   //Offers And Discounts
 | |
|   bool isOffersLoading = true;
 | |
|   List<OffersListModel> getOffersList = [];
 | |
| 
 | |
|   //Attendance Tracking API's & Methods
 | |
|   Future<bool> fetchAttendanceTracking(context) async {
 | |
|     try {
 | |
|       attendanceTracking = await DashboardApiClient().getAttendanceTracking();
 | |
|       print("attendanceTracking:" + (attendanceTracking!.pRemainingHours).toString());
 | |
|       isAttendanceTrackingLoading = false;
 | |
|       // isTimeRemainingInSeconds = calculateSeconds( "00:00:00");
 | |
|       if (attendanceTracking?.pSwipeIn != null) {
 | |
|         isTimeRemainingInSeconds = calculateSeconds(attendanceTracking!.pRemainingHours ?? "00:00:00");
 | |
|         int totalShiftTimeInSeconds = calculateSeconds(attendanceTracking!.pScheduledHours ?? "00:00:00");
 | |
|         print("totalShiftTimeInSeconds: " + totalShiftTimeInSeconds.toString());
 | |
|         print("isTimeRemainingInSeconds: " + isTimeRemainingInSeconds.toString());
 | |
|         progress = (isTimeRemainingInSeconds / totalShiftTimeInSeconds);
 | |
|         endTime = DateTime.now().millisecondsSinceEpoch + Duration(seconds: isTimeRemainingInSeconds).inMilliseconds;
 | |
|         print("endTime " + endTime.toString());
 | |
|       }
 | |
| 
 | |
|       notifyListeners();
 | |
|     } catch (ex) {
 | |
|       Utils.handleException(ex, context, null);
 | |
|     }
 | |
|     return true;
 | |
|   }
 | |
| 
 | |
|   int calculateSeconds(String time) {
 | |
|     int hour = int.parse(time.split(":")[0]);
 | |
|     int mints = int.parse(time.split(":")[1]);
 | |
|     int seconds = int.parse(time.split(":")[2]);
 | |
|     return ((hour * 60 * 60) + (mints * 60) + seconds);
 | |
|   }
 | |
| 
 | |
|   void update(context) {
 | |
|     fetchAttendanceTracking(context);
 | |
|     // isAttendanceTrackingLoading = !isAttendanceTrackingLoading;
 | |
|     // isWorkListLoading = !isWorkListLoading;
 | |
|     // attendanceTracking?.pSwipeIn = "a";
 | |
|     // isTimeRemainingInSeconds = calculateSeconds("00:10:30");
 | |
|     // endTime = DateTime.now().millisecondsSinceEpoch + Duration(seconds: isTimeRemainingInSeconds).inMilliseconds;
 | |
|     // notifyListeners();
 | |
|   }
 | |
| 
 | |
|   ItgFormsModel? itgFormsModel;
 | |
|   List<GetOpenNotificationsList>? getOpenNotificationsList;
 | |
| 
 | |
|   //Work List API's & Methods
 | |
|   Future fetchWorkListCounter(context, {bool showLoading = false}) async {
 | |
|     try {
 | |
|       if (showLoading) Utils.showLoading(context);
 | |
|       GenericResponseModel? genericResponseModel = await DashboardApiClient().getOpenNotifications();
 | |
|       isWorkListLoading = false;
 | |
|       getOpenNotificationsList = genericResponseModel?.getOpenNotificationsList;
 | |
|       workListCounter = genericResponseModel?.pOPENNTFNUMBER ?? 0;
 | |
|       itgFormsModel = await DashboardApiClient().getItgFormsPendingTask();
 | |
|       workListCounter = workListCounter + (itgFormsModel?.totalCount ?? 0);
 | |
|       if (showLoading) Utils.hideLoading(context);
 | |
|       notifyListeners();
 | |
|     } catch (ex) {
 | |
|       isWorkListLoading = false;
 | |
|       logger.wtf(ex);
 | |
|       if (showLoading) Utils.hideLoading(context);
 | |
|       notifyListeners();
 | |
|       Utils.handleException(ex, context, null);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   //Missing Siwpe API's & Methods
 | |
|   Future fetchMissingSwipe(context) async {
 | |
|     try {
 | |
|       GenericResponseModel? genericResponseModel = await DashboardApiClient().getOpenMissingSwipes();
 | |
|       isMissingSwipeLoading = false;
 | |
|       missingSwipeCounter = genericResponseModel!.getOpenMissingSwipesList!.pOpenMissingSwipes ?? 0;
 | |
|       notifyListeners();
 | |
|     } catch (ex) {
 | |
|       isMissingSwipeLoading = false;
 | |
|       logger.wtf(ex);
 | |
|       notifyListeners();
 | |
|       Utils.handleException(ex, context, null);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   //Leave and Ticket Balance API's & Methods
 | |
|   Future fetchLeaveTicketBalance(context) async {
 | |
|     try {
 | |
|       GenericResponseModel? genericResponseModel = await DashboardApiClient().getAccrualBalances();
 | |
|       isLeaveTicketBalanceLoading = false;
 | |
|       leaveBalance = genericResponseModel?.getAccrualBalancesList![0].accrualNetEntitlement ?? 0.0;
 | |
|       ticketBalance = (genericResponseModel?.getAccrualBalancesList![1].accrualNetEntitlement ?? 0.0) + (genericResponseModel?.getAccrualBalancesList![2].accrualNetEntitlement ?? 0.0);
 | |
|       notifyListeners();
 | |
|     } catch (ex) {
 | |
|       isLeaveTicketBalanceLoading = false;
 | |
|       logger.wtf(ex);
 | |
|       notifyListeners();
 | |
|       Utils.handleException(ex, context, null);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   //List Menu API's & Methods
 | |
| 
 | |
|   List<DrawerMenuItem> drawerMenuItemList = [
 | |
|     DrawerMenuItem("assets/images/drawer/my_profile.svg", LocaleKeys.myProfile.tr(), AppRoutes.profile),
 | |
|     DrawerMenuItem("assets/images/drawer/performance_evaluation.svg", LocaleKeys.performanceEvaluation.tr(), AppRoutes.performanceEvaluation),
 | |
|     DrawerMenuItem("assets/images/drawer/mowadhafi.svg", LocaleKeys.mowadhafhi.tr(), AppRoutes.mowadhafhi),
 | |
|     DrawerMenuItem("assets/images/drawer/pending_trasactions.svg", LocaleKeys.pendingTransactions.tr(), AppRoutes.pendingTransactions),
 | |
|     DrawerMenuItem("assets/images/drawer/change_password.svg", LocaleKeys.changePassword.tr(), ""),
 | |
|   ];
 | |
| 
 | |
|   void fetchListMenu() async {
 | |
|     try {
 | |
|       List<ListMenu> menuList = await DashboardApiClient().getListMenu();
 | |
|       List findMyRequest = menuList.where((element) => element.menuName == "My Requests").toList();
 | |
|       if (findMyRequest.isNotEmpty) {
 | |
|         drawerMenuItemList.insert(3, DrawerMenuItem("assets/images/drawer/my_requests.svg", LocaleKeys.myRequest.tr(), AppRoutes.myRequests));
 | |
|       }
 | |
|       List findMyTeam = menuList.where((element) => element.menuName == "My Team").toList();
 | |
|       if (findMyTeam.isNotEmpty) {
 | |
|         drawerMenuItemList.insert(2, DrawerMenuItem("assets/images/drawer/my_team.svg", LocaleKeys.myTeamMembers.tr(), AppRoutes.myTeam));
 | |
|       }
 | |
|     } catch (ex) {
 | |
|       logger.wtf(ex);
 | |
|       Utils.handleException(ex, null, null);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   //Menu Entries API's & Methods
 | |
|   void fetchMenuEntries() async {
 | |
|     try {
 | |
|       GenericResponseModel? genericResponseModel = await DashboardApiClient().getGetMenuEntries();
 | |
|       getMenuEntriesList = genericResponseModel!.getMenuEntriesList;
 | |
|       homeMenus = parseMenus(getMenuEntriesList ?? []);
 | |
|       if (homeMenus!.isNotEmpty) {
 | |
|         homeMenus!.first.menuEntiesList.insert(0, GetMenuEntriesList(requestType: "MONTHLY_ATTENDANCE", prompt: LocaleKeys.monthlyAttendance.tr()));
 | |
|         homeMenus!.first.menuEntiesList.add(GetMenuEntriesList(requestType: "VACATION_RULE", prompt: LocaleKeys.vacationRule.tr()));
 | |
|       }
 | |
|       isServicesMenusLoading = false;
 | |
|       notifyListeners();
 | |
|     } catch (ex) {
 | |
|       logger.wtf(ex);
 | |
|       notifyListeners();
 | |
|       Utils.handleException(ex, null, null);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   void getCategoryOffersListAPI(BuildContext context) async {
 | |
|     try {
 | |
|       // Utils.showLoading(context);
 | |
|       getOffersList = await OffersAndDiscountsApiClient().getOffersList(0, 6);
 | |
|       isOffersLoading = false;
 | |
|       notifyListeners();
 | |
|     } catch (ex) {
 | |
|       // Utils.hideLoading(context);
 | |
|       notifyListeners();
 | |
|       Utils.handleException(ex, context, null);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   List<Menus> parseMenus(List<GetMenuEntriesList> getMenuEntriesList) {
 | |
|     List<Menus> menus = [];
 | |
|     for (int i = 0; i < getMenuEntriesList.length; i++) {
 | |
|       if (getMenuEntriesList[i].parentMenuName!.isEmpty) {
 | |
|         menus.add(Menus(getMenuEntriesList[i], getMenuEntriesList.where((element) => getMenuEntriesList[i].menuName == element.parentMenuName).toList()));
 | |
|       }
 | |
|     }
 | |
|     return menus;
 | |
|   }
 | |
| 
 | |
|   void notify() {
 | |
|     notifyListeners();
 | |
|   }
 | |
| }
 |