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.
		
		
		
		
		
			
		
			
	
	
		
			234 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			Dart
		
	
		
		
			
		
	
	
			234 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			Dart
		
	
| 
											1 month ago
										 | import 'package:easy_localization/easy_localization.dart'; | ||
|  | import 'package:flutter/material.dart'; | ||
|  | import 'package:hmg_patient_app_new/core/app_assets.dart'; | ||
|  | import 'package:hmg_patient_app_new/core/app_export.dart'; | ||
|  | import 'package:hmg_patient_app_new/core/dependencies.dart'; | ||
|  | import 'package:hmg_patient_app_new/core/enums.dart'; | ||
|  | import 'package:hmg_patient_app_new/core/utils/validation_utils.dart'; | ||
|  | import 'package:hmg_patient_app_new/extensions/string_extensions.dart'; | ||
|  | import 'package:hmg_patient_app_new/extensions/widget_extensions.dart'; | ||
|  | import 'package:hmg_patient_app_new/features/authentication/authentication_view_model.dart'; | ||
| 
											1 month ago
										 | import 'package:hmg_patient_app_new/features/medical_file/medical_file_view_model.dart'; | ||
| 
											1 month ago
										 | import 'package:hmg_patient_app_new/features/medical_file/models/family_file_response_model.dart'; | ||
|  | import 'package:hmg_patient_app_new/generated/locale_keys.g.dart'; | ||
| 
											1 month ago
										 | import 'package:hmg_patient_app_new/presentation/lab/collapsing_list_view.dart'; | ||
| 
											1 month ago
										 | import 'package:hmg_patient_app_new/presentation/my_family/widget/family_cards.dart'; | ||
|  | import 'package:hmg_patient_app_new/theme/colors.dart'; | ||
|  | import 'package:hmg_patient_app_new/widgets/appbar/app_bar_widget.dart'; | ||
|  | import 'package:hmg_patient_app_new/widgets/buttons/custom_button.dart'; | ||
|  | import 'package:hmg_patient_app_new/widgets/common_bottom_sheet.dart'; | ||
|  | import 'package:hmg_patient_app_new/widgets/custom_tab_bar.dart'; | ||
|  | import 'package:hmg_patient_app_new/widgets/dropdown/country_dropdown_widget.dart'; | ||
|  | import 'package:hmg_patient_app_new/widgets/input_widget.dart'; | ||
| 
											1 month ago
										 | import 'package:provider/provider.dart'; | ||
| 
											1 month ago
										 | 
 | ||
|  | class FamilyMedicalScreen extends StatefulWidget { | ||
|  |   final List<FamilyFileResponseModelLists> profiles; | ||
|  |   final Function(FamilyFileResponseModelLists) onSelect; | ||
|  | 
 | ||
|  |   const FamilyMedicalScreen({ | ||
| 
											1 month ago
										 |     super.key, | ||
| 
											1 month ago
										 |     required this.profiles, | ||
|  |     required this.onSelect, | ||
| 
											1 month ago
										 |   }); | ||
| 
											1 month ago
										 | 
 | ||
|  |   @override | ||
|  |   State<FamilyMedicalScreen> createState() => _FamilyMedicalScreenState(); | ||
|  | } | ||
|  | 
 | ||
|  | class _FamilyMedicalScreenState extends State<FamilyMedicalScreen> { | ||
| 
											1 month ago
										 |   List<CustomTabBarModel> tabs = [CustomTabBarModel(null, LocaleKeys.medicalFile.tr()), CustomTabBarModel(null, LocaleKeys.request.tr())]; | ||
| 
											1 month ago
										 |   MedicalFileViewModel? medicalVM; | ||
|  | 
 | ||
|  |   @override | ||
|  |   void initState() { | ||
|  |     super.initState(); | ||
| 
											1 month ago
										 |     medicalVM = context.read<MedicalFileViewModel>(); | ||
| 
											1 month ago
										 |   } | ||
| 
											1 month ago
										 | 
 | ||
|  |   @override | ||
|  |   Widget build(BuildContext context) { | ||
|  |     return Scaffold( | ||
| 
											1 month ago
										 |       body: CollapsingListView( | ||
|  |           title: "My Medical File".needTranslation, | ||
|  |           child: Column( | ||
|  |             mainAxisSize: MainAxisSize.min, | ||
|  |             crossAxisAlignment: CrossAxisAlignment.start, | ||
|  |             children: [ | ||
|  |               CustomTabBar( | ||
|  |                 tabs: tabs, | ||
|  |                 onTabChange: (index) { | ||
|  |                   medicalVM!.onFamilyFileTabChange(index); | ||
|  |                 }, | ||
|  |               ), | ||
|  |               SizedBox(height: 25.h), | ||
|  |               Consumer<MedicalFileViewModel>(builder: (context, medicalVM, child) => getFamilyTabs(index: medicalVM.getSelectedFamilyFileTabIndex)), | ||
|  |               SizedBox(height: 20.h), | ||
|  |             ], | ||
|  |           ).paddingSymmetrical(20, 0)), | ||
| 
											1 month ago
										 |       bottomSheet: Container( | ||
|  |           decoration: RoundedRectangleBorder().toSmoothCornerDecoration( | ||
|  |             color: AppColors.whiteColor, | ||
|  |             customBorder: BorderRadius.only(topLeft: Radius.circular(24), topRight: Radius.circular(24)), | ||
|  |           ), | ||
|  |           padding: EdgeInsets.symmetric(vertical: 10.h, horizontal: 20.h), | ||
|  |           child: CustomButton( | ||
| 
											1 month ago
										 |               text: "Add a new family member", | ||
|  |               onPressed: () { | ||
|  |                 showModelSheet(); | ||
|  |               }, | ||
|  |               icon: AppAssets.add_icon, | ||
|  |               height: 56.h, | ||
|  |               fontWeight: FontWeight.w600)), | ||
| 
											1 month ago
										 |     ); | ||
| 
											1 month ago
										 |     // return Scaffold(
 | ||
|  |     //   backgroundColor: AppColors.scaffoldBgColor,
 | ||
|  |     //   appBar: CustomAppBar(
 | ||
|  |     //     onBackPressed: () {
 | ||
|  |     //       Navigator.of(context).pop();
 | ||
|  |     //     },
 | ||
|  |     //     onLanguageChanged: (lang) {},
 | ||
|  |     //     hideLogoAndLang: true,
 | ||
|  |     //   ),
 | ||
|  |     //   body: SingleChildScrollView(
 | ||
|  |     //     child: Column(
 | ||
|  |     //       mainAxisSize: MainAxisSize.min,
 | ||
|  |     //       crossAxisAlignment: CrossAxisAlignment.start,
 | ||
|  |     //       children: [
 | ||
|  |     //         LocaleKeys.myMedicalFile.tr().toText26(color: AppColors.textColor, weight: FontWeight.w600, letterSpacing: -2),
 | ||
|  |     //         SizedBox(height: 25.h),
 | ||
|  |     //         CustomTabBar(
 | ||
|  |     //           tabs: tabs,
 | ||
|  |     //           onTabChange: (index) {
 | ||
|  |     //             medicalVM!.onFamilyFileTabChange(index);
 | ||
|  |     //           },
 | ||
|  |     //         ),
 | ||
|  |     //         SizedBox(height: 25.h),
 | ||
|  |     //         Consumer<MedicalFileViewModel>(builder: (context, medicalVM, child) => getFamilyTabs(index: medicalVM.getSelectedFamilyFileTabIndex)),
 | ||
|  |     //         SizedBox(height: 20.h),
 | ||
|  |     //       ],
 | ||
|  |     //     ).paddingSymmetrical(20, 0),
 | ||
|  |     //   ),
 | ||
|  |     //   bottomSheet: Container(
 | ||
|  |     //       decoration: RoundedRectangleBorder().toSmoothCornerDecoration(
 | ||
|  |     //         color: AppColors.whiteColor,
 | ||
|  |     //         customBorder: BorderRadius.only(topLeft: Radius.circular(24), topRight: Radius.circular(24)),
 | ||
|  |     //       ),
 | ||
|  |     //       padding: EdgeInsets.symmetric(vertical: 10.h, horizontal: 20.h),
 | ||
|  |     //       child: CustomButton(
 | ||
|  |     //         text: "Add a new family member",
 | ||
|  |     //         onPressed: () {
 | ||
|  |     //           showModelSheet();
 | ||
|  |     //         },
 | ||
|  |     //         icon: AppAssets.add_icon,
 | ||
|  |     //         height: 56.h,
 | ||
|  |     //         fontWeight: FontWeight.w600,
 | ||
|  |     //       )),
 | ||
|  |     // );
 | ||
| 
											1 month ago
										 |   } | ||
|  | 
 | ||
| 
											1 month ago
										 |   Widget getFamilyTabs({required int index}) { | ||
|  |     switch (index) { | ||
|  |       case 0: | ||
|  |         return FamilyCards( | ||
|  |           profiles: medicalVM!.patientFamilyFiles, | ||
|  |           onSelect: (FamilyFileResponseModelLists profile) { | ||
|  |             medicalVM!.switchFamilyFiles(responseID: profile.responseId, patientID: profile.patientId, phoneNumber: profile.mobileNumber); | ||
|  |           }, | ||
|  |           isShowDetails: true, | ||
|  |         ); | ||
|  |       case 1: | ||
|  |         return FamilyCards( | ||
|  |           profiles: medicalVM!.pendingFamilyFiles, | ||
|  |           onSelect: (FamilyFileResponseModelLists profile) { | ||
|  |             // medicalVM!.switchFamilyFiles(responseID: profile.responseId, patientID: profile.patientId, phoneNumber: profile.mobileNumber);
 | ||
|  |           }, | ||
|  |           isShowDetails: true, | ||
| 
											1 month ago
										 |         ); | ||
|  |       default: | ||
| 
											1 month ago
										 |         return SizedBox.shrink(); | ||
|  |     } | ||
|  |   } | ||
|  | 
 | ||
| 
											1 month ago
										 |   Future<void> showModelSheet() async { | ||
| 
											1 month ago
										 |     AuthenticationViewModel authVm = getIt.get<AuthenticationViewModel>(); | ||
| 
											1 month ago
										 |     return await showCommonBottomSheetWithoutHeight(context, | ||
| 
											1 month ago
										 |         title: "Add Family Member", | ||
| 
											1 month ago
										 |         useSafeArea: true, | ||
| 
											1 month ago
										 |         child: Column( | ||
|  |           crossAxisAlignment: CrossAxisAlignment.start, | ||
|  |           mainAxisAlignment: MainAxisAlignment.start, | ||
| 
											1 month ago
										 |           mainAxisSize: MainAxisSize.min, | ||
| 
											1 month ago
										 |           children: [ | ||
|  |             "Please fill the below field to add a new family member to your profile".toText16(color: AppColors.textColor, weight: FontWeight.w500), | ||
|  |             SizedBox(height: 20.h), | ||
|  |             Container( | ||
|  |               decoration: BoxDecoration(color: Colors.white, borderRadius: BorderRadius.circular(24)), | ||
|  |               padding: EdgeInsets.symmetric(horizontal: 16.h, vertical: 8.h), | ||
|  |               child: Column( | ||
|  |                 children: [ | ||
|  |                   CustomCountryDropdown( | ||
|  |                     countryList: CountryEnum.values, | ||
|  |                     onCountryChange: authVm.onCountryChange, | ||
|  |                   ).paddingOnly(top: 8.h, bottom: 16.h), | ||
| 
											1 month ago
										 |                   Divider(height: 1.h, color: AppColors.spacerLineColor), | ||
| 
											1 month ago
										 |                   TextInputWidget( | ||
|  |                     labelText: LocaleKeys.nationalIdNumber.tr(), | ||
|  |                     hintText: "xxxxxxxxx", | ||
|  |                     controller: authVm.nationalIdController, | ||
|  |                     // focusNode: _nationalIdFocusNode,
 | ||
|  |                     isEnable: true, | ||
|  |                     prefix: null, | ||
|  |                     isAllowRadius: true, | ||
|  |                     isBorderAllowed: false, | ||
|  |                     isAllowLeadingIcon: true, | ||
|  |                     autoFocus: true, | ||
|  |                     keyboardType: TextInputType.number, | ||
|  |                     padding: EdgeInsets.symmetric(vertical: 8.h), | ||
|  |                     leadingIcon: AppAssets.student_card, | ||
|  |                   ).paddingOnly(top: 8.h, bottom: 8.h), | ||
| 
											1 month ago
										 |                   Divider(height: 1.h, color: AppColors.spacerLineColor), | ||
| 
											1 month ago
										 |                   TextInputWidget( | ||
|  |                     labelText: LocaleKeys.phoneNumber.tr(), | ||
| 
											1 month ago
										 |                     hintText: "", | ||
| 
											1 month ago
										 |                     controller: authVm.phoneNumberController, | ||
|  |                     isEnable: true, | ||
|  |                     prefix: authVm.selectedCountrySignup.countryCode, | ||
|  |                     isAllowRadius: true, | ||
|  |                     isBorderAllowed: false, | ||
|  |                     isAllowLeadingIcon: true, | ||
|  |                     autoFocus: true, | ||
|  |                     keyboardType: TextInputType.number, | ||
|  |                     padding: EdgeInsets.symmetric(vertical: 8.h), | ||
|  |                     leadingIcon: AppAssets.smart_phone, | ||
| 
											1 month ago
										 |                   ).paddingOnly(top: 8.h, bottom: 4.h), | ||
| 
											1 month ago
										 |                 ], | ||
|  |               ), | ||
|  |             ), | ||
|  |             SizedBox(height: 20.h), | ||
|  |             CustomButton( | ||
|  |                 text: "Verify the member", | ||
|  |                 onPressed: () { | ||
|  |                   FocusScope.of(context).unfocus(); | ||
|  |                   if (ValidationUtils.isValidatedIdAndPhoneWithCountryValidation( | ||
|  |                     nationalId: authVm.nationalIdController.text, | ||
|  |                     selectedCountry: authVm.selectedCountrySignup, | ||
|  |                     phoneNumber: authVm.phoneNumberController.text, | ||
|  |                     onOkPress: () { | ||
|  |                       Navigator.of(context).pop(); | ||
|  |                     }, | ||
| 
											1 month ago
										 |                   )) { | ||
| 
											1 month ago
										 |                     // authVm.addFamilyMember(otpTypeEnum: OTPTypeEnum.sms, isExcludedUser: true);
 | ||
|  |                     medicalVM?.addFamilyFile(otpTypeEnum: OTPTypeEnum.sms, isExcludedUser: true); | ||
| 
											1 month ago
										 |                   } | ||
| 
											1 month ago
										 |                 }, | ||
|  |                 icon: AppAssets.add_icon, | ||
|  |                 height: 56.h, | ||
|  |                 fontWeight: FontWeight.w600), | ||
|  |             SizedBox(height: 20.h), | ||
|  |           ], | ||
|  |         ), | ||
|  |         callBackFunc: () {}); | ||
|  |   } | ||
|  | } |