|
|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
// ignore: must_be_immutable
|
|
|
|
|
import 'package:autocomplete_textfield/autocomplete_textfield.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/config/size_config.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/enum/master_lookup_key.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/enum/viewstate.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/model/search_drug/get_medication_response_model.dart';
|
|
|
|
|
@ -8,6 +9,7 @@ import 'package:doctor_app_flutter/core/viewModel/project_view_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/master_key_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/patients/profile/soap_update/shared_soap_widgets/bottom_sheet_dialog_button.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/util/helpers.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
|
|
|
|
@ -53,7 +55,6 @@ class _AddMedicationState extends State<AddMedication> {
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
ProjectViewModel projectViewModel = Provider.of(context);
|
|
|
|
|
final screenSize = MediaQuery.of(context).size;
|
|
|
|
|
return FractionallySizedBox(
|
|
|
|
|
child: BaseView<SOAPViewModel>(
|
|
|
|
|
onModelReady: (model) async {
|
|
|
|
|
@ -75,340 +76,367 @@ class _AddMedicationState extends State<AddMedication> {
|
|
|
|
|
await model.getMedicationList();
|
|
|
|
|
},
|
|
|
|
|
builder: (_, model, w) => AppScaffold(
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
isShowAppBar: true,
|
|
|
|
|
appBar: BottomSheetTitle(
|
|
|
|
|
title: TranslationBase.of(context).addMedication,
|
|
|
|
|
),
|
|
|
|
|
body: Center(
|
|
|
|
|
child: Container(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 10,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 16,
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Center(
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
isShowAppBar: true,
|
|
|
|
|
appBar: BottomSheetTitle(
|
|
|
|
|
title: TranslationBase.of(context).addMedication,
|
|
|
|
|
),
|
|
|
|
|
body: Center(
|
|
|
|
|
child: Container(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 10,
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: FractionallySizedBox(
|
|
|
|
|
widthFactor: 0.9,
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 16,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 16,
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
// height: screenSize.height * 0.070,
|
|
|
|
|
child: InkWell(
|
|
|
|
|
onTap: model.allMedicationList != null
|
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: SizeConfig.heightMultiplier * (SizeConfig.isHeightVeryShort ?2:SizeConfig.isHeightShort?2:2),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
// height: screenSize.height * 0.070,
|
|
|
|
|
child: InkWell(
|
|
|
|
|
onTap: model.allMedicationList != null
|
|
|
|
|
? () {
|
|
|
|
|
setState(() {
|
|
|
|
|
_selectedMedication = null;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
: null,
|
|
|
|
|
child: _selectedMedication == null
|
|
|
|
|
? CustomAutoCompleteTextField(
|
|
|
|
|
isShowError: isFormSubmitted &&
|
|
|
|
|
_selectedMedication == null,
|
|
|
|
|
child: AutoCompleteTextField<
|
|
|
|
|
GetMedicationResponseModel>(
|
|
|
|
|
decoration: TextFieldsUtils
|
|
|
|
|
.textFieldSelectorDecoration(
|
|
|
|
|
TranslationBase.of(
|
|
|
|
|
context)
|
|
|
|
|
.searchMedicineNameHere,
|
|
|
|
|
null,
|
|
|
|
|
true,
|
|
|
|
|
suffixIcon:
|
|
|
|
|
Icons.search),
|
|
|
|
|
itemSubmitted: (item) =>
|
|
|
|
|
setState(() =>
|
|
|
|
|
_selectedMedication =
|
|
|
|
|
item),
|
|
|
|
|
key: key,
|
|
|
|
|
suggestions:
|
|
|
|
|
model.allMedicationList,
|
|
|
|
|
itemBuilder: (context,
|
|
|
|
|
suggestion) =>
|
|
|
|
|
new Padding(
|
|
|
|
|
child: AppText(suggestion
|
|
|
|
|
.description +
|
|
|
|
|
'/' +
|
|
|
|
|
suggestion
|
|
|
|
|
.genericName),
|
|
|
|
|
padding:
|
|
|
|
|
EdgeInsets.all(
|
|
|
|
|
8.0)),
|
|
|
|
|
itemSorter: (a, b) => 1,
|
|
|
|
|
itemFilter: (suggestion,
|
|
|
|
|
input) =>
|
|
|
|
|
suggestion.genericName.toLowerCase().startsWith(input.toLowerCase()) ||
|
|
|
|
|
suggestion.description
|
|
|
|
|
.toLowerCase()
|
|
|
|
|
.startsWith(input
|
|
|
|
|
.toLowerCase()) ||
|
|
|
|
|
suggestion.keywords
|
|
|
|
|
.toLowerCase()
|
|
|
|
|
.startsWith(input
|
|
|
|
|
.toLowerCase()),
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
: AppTextFieldCustom(
|
|
|
|
|
height: Helpers.getTextFieldHeight(),
|
|
|
|
|
hintText: _selectedMedication !=
|
|
|
|
|
null
|
|
|
|
|
? _selectedMedication
|
|
|
|
|
.description +
|
|
|
|
|
(' (${_selectedMedication.genericName} )')
|
|
|
|
|
: TranslationBase.of(
|
|
|
|
|
context)
|
|
|
|
|
.searchMedicineNameHere,
|
|
|
|
|
minLines: 1,
|
|
|
|
|
maxLines: 1,
|
|
|
|
|
isTextFieldHasSuffix: true,
|
|
|
|
|
suffixIcon: IconButton(
|
|
|
|
|
icon: Icon(
|
|
|
|
|
Icons.search,
|
|
|
|
|
color: Colors.grey.shade600,
|
|
|
|
|
)),
|
|
|
|
|
enabled: false,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
AppTextFieldCustom(
|
|
|
|
|
height: Helpers.getTextFieldHeight(),
|
|
|
|
|
enabled: false,
|
|
|
|
|
onClick: model.medicationDoseTimeList !=
|
|
|
|
|
null
|
|
|
|
|
? () {
|
|
|
|
|
setState(() {
|
|
|
|
|
_selectedMedication = null;
|
|
|
|
|
});
|
|
|
|
|
MasterKeyDailog dialog =
|
|
|
|
|
MasterKeyDailog(
|
|
|
|
|
list: model
|
|
|
|
|
.medicationDoseTimeList,
|
|
|
|
|
okText:
|
|
|
|
|
TranslationBase.of(context)
|
|
|
|
|
.ok,
|
|
|
|
|
selectedValue:
|
|
|
|
|
_selectedMedicationDose,
|
|
|
|
|
okFunction: (selectedValue) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_selectedMedicationDose =
|
|
|
|
|
selectedValue;
|
|
|
|
|
|
|
|
|
|
doseController
|
|
|
|
|
.text = projectViewModel
|
|
|
|
|
.isArabic
|
|
|
|
|
? _selectedMedicationDose
|
|
|
|
|
.nameAr
|
|
|
|
|
: _selectedMedicationDose
|
|
|
|
|
.nameEn;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
showDialog(
|
|
|
|
|
barrierDismissible: false,
|
|
|
|
|
context: context,
|
|
|
|
|
builder:
|
|
|
|
|
(BuildContext context) {
|
|
|
|
|
return dialog;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
: null,
|
|
|
|
|
child: _selectedMedication == null
|
|
|
|
|
? CustomAutoCompleteTextField(
|
|
|
|
|
isShowError: isFormSubmitted &&
|
|
|
|
|
_selectedMedication == null,
|
|
|
|
|
child: AutoCompleteTextField<
|
|
|
|
|
GetMedicationResponseModel>(
|
|
|
|
|
decoration: TextFieldsUtils
|
|
|
|
|
.textFieldSelectorDecoration(
|
|
|
|
|
TranslationBase.of(
|
|
|
|
|
context)
|
|
|
|
|
.searchMedicineNameHere,
|
|
|
|
|
null,
|
|
|
|
|
true,
|
|
|
|
|
suffixIcon: Icons.search),
|
|
|
|
|
itemSubmitted: (item) => setState(
|
|
|
|
|
() => _selectedMedication =
|
|
|
|
|
item),
|
|
|
|
|
key: key,
|
|
|
|
|
suggestions:
|
|
|
|
|
model.allMedicationList,
|
|
|
|
|
itemBuilder: (context,
|
|
|
|
|
suggestion) =>
|
|
|
|
|
new Padding(
|
|
|
|
|
child: AppText(suggestion
|
|
|
|
|
.description +
|
|
|
|
|
'/' +
|
|
|
|
|
suggestion
|
|
|
|
|
.genericName),
|
|
|
|
|
padding:
|
|
|
|
|
EdgeInsets.all(8.0)),
|
|
|
|
|
itemSorter: (a, b) => 1,
|
|
|
|
|
itemFilter: (suggestion, input) =>
|
|
|
|
|
suggestion.genericName.toLowerCase().startsWith(
|
|
|
|
|
input.toLowerCase()) ||
|
|
|
|
|
suggestion.description
|
|
|
|
|
.toLowerCase()
|
|
|
|
|
.startsWith(input
|
|
|
|
|
.toLowerCase()) ||
|
|
|
|
|
suggestion.keywords
|
|
|
|
|
.toLowerCase()
|
|
|
|
|
.startsWith(
|
|
|
|
|
input.toLowerCase()),
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
: AppTextFieldCustom(
|
|
|
|
|
hintText: _selectedMedication !=
|
|
|
|
|
null
|
|
|
|
|
? _selectedMedication
|
|
|
|
|
.description +
|
|
|
|
|
(' (${_selectedMedication.genericName} )')
|
|
|
|
|
: TranslationBase.of(context)
|
|
|
|
|
.searchMedicineNameHere,
|
|
|
|
|
minLines: 2,
|
|
|
|
|
maxLines: 2,
|
|
|
|
|
isTextFieldHasSuffix: true,
|
|
|
|
|
suffixIcon: IconButton(
|
|
|
|
|
icon: Icon(
|
|
|
|
|
Icons.search,
|
|
|
|
|
color: Colors.grey.shade600,
|
|
|
|
|
)),
|
|
|
|
|
enabled: false,
|
|
|
|
|
),
|
|
|
|
|
hintText:
|
|
|
|
|
TranslationBase.of(context).doseTime,
|
|
|
|
|
maxLines: 1,
|
|
|
|
|
minLines: 1,
|
|
|
|
|
isTextFieldHasSuffix: true,
|
|
|
|
|
controller: doseController,
|
|
|
|
|
validationError: isFormSubmitted &&
|
|
|
|
|
_selectedMedicationDose == null
|
|
|
|
|
? TranslationBase.of(context)
|
|
|
|
|
.emptyMessage
|
|
|
|
|
: null,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
AppTextFieldCustom(
|
|
|
|
|
enabled: false,
|
|
|
|
|
onClick: model.medicationDoseTimeList != null
|
|
|
|
|
? () {
|
|
|
|
|
MasterKeyDailog dialog =
|
|
|
|
|
MasterKeyDailog(
|
|
|
|
|
list: model.medicationDoseTimeList,
|
|
|
|
|
okText:
|
|
|
|
|
TranslationBase.of(context).ok,
|
|
|
|
|
selectedValue: _selectedMedicationDose,
|
|
|
|
|
okFunction: (selectedValue) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_selectedMedicationDose =
|
|
|
|
|
selectedValue;
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
AppTextFieldCustom(
|
|
|
|
|
height: Helpers.getTextFieldHeight(),
|
|
|
|
|
enabled: false,
|
|
|
|
|
isTextFieldHasSuffix: true,
|
|
|
|
|
onClick: model.medicationStrengthList !=
|
|
|
|
|
null
|
|
|
|
|
? () {
|
|
|
|
|
MasterKeyDailog dialog =
|
|
|
|
|
MasterKeyDailog(
|
|
|
|
|
list: model
|
|
|
|
|
.medicationStrengthList,
|
|
|
|
|
okText:
|
|
|
|
|
TranslationBase.of(context)
|
|
|
|
|
.ok,
|
|
|
|
|
selectedValue:
|
|
|
|
|
_selectedMedicationStrength,
|
|
|
|
|
okFunction: (selectedValue) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_selectedMedicationStrength =
|
|
|
|
|
selectedValue;
|
|
|
|
|
|
|
|
|
|
doseController
|
|
|
|
|
.text = projectViewModel
|
|
|
|
|
.isArabic
|
|
|
|
|
? _selectedMedicationDose
|
|
|
|
|
.nameAr
|
|
|
|
|
: _selectedMedicationDose
|
|
|
|
|
.nameEn;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
showDialog(
|
|
|
|
|
barrierDismissible: false,
|
|
|
|
|
context: context,
|
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
|
return dialog;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
: null,
|
|
|
|
|
hintText:
|
|
|
|
|
TranslationBase.of(context).doseTime,
|
|
|
|
|
maxLines: 2,
|
|
|
|
|
minLines: 2,
|
|
|
|
|
isTextFieldHasSuffix: true,
|
|
|
|
|
controller: doseController,
|
|
|
|
|
validationError: isFormSubmitted &&
|
|
|
|
|
_selectedMedicationDose == null
|
|
|
|
|
? TranslationBase.of(context).emptyMessage
|
|
|
|
|
: null,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
AppTextFieldCustom(
|
|
|
|
|
enabled: false,
|
|
|
|
|
isTextFieldHasSuffix: true,
|
|
|
|
|
onClick: model.medicationStrengthList != null
|
|
|
|
|
? () {
|
|
|
|
|
MasterKeyDailog dialog =
|
|
|
|
|
MasterKeyDailog(
|
|
|
|
|
list: model.medicationStrengthList,
|
|
|
|
|
okText:
|
|
|
|
|
TranslationBase.of(context).ok,
|
|
|
|
|
selectedValue: _selectedMedicationStrength,
|
|
|
|
|
okFunction: (selectedValue) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_selectedMedicationStrength =
|
|
|
|
|
selectedValue;
|
|
|
|
|
strengthController
|
|
|
|
|
.text = projectViewModel
|
|
|
|
|
.isArabic
|
|
|
|
|
? _selectedMedicationStrength
|
|
|
|
|
.nameAr
|
|
|
|
|
: _selectedMedicationStrength
|
|
|
|
|
.nameEn;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
showDialog(
|
|
|
|
|
barrierDismissible: false,
|
|
|
|
|
context: context,
|
|
|
|
|
builder:
|
|
|
|
|
(BuildContext context) {
|
|
|
|
|
return dialog;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
: null,
|
|
|
|
|
hintText:
|
|
|
|
|
TranslationBase.of(context).strength,
|
|
|
|
|
maxLines: 1,
|
|
|
|
|
minLines: 1,
|
|
|
|
|
controller: strengthController,
|
|
|
|
|
validationError: isFormSubmitted &&
|
|
|
|
|
_selectedMedicationStrength ==
|
|
|
|
|
null
|
|
|
|
|
? TranslationBase.of(context)
|
|
|
|
|
.emptyMessage
|
|
|
|
|
: null,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
AppTextFieldCustom(
|
|
|
|
|
height: Helpers.getTextFieldHeight(),
|
|
|
|
|
enabled: false,
|
|
|
|
|
isTextFieldHasSuffix: true,
|
|
|
|
|
onClick: model.medicationRouteList != null
|
|
|
|
|
? () {
|
|
|
|
|
MasterKeyDailog dialog =
|
|
|
|
|
MasterKeyDailog(
|
|
|
|
|
list: model.medicationRouteList,
|
|
|
|
|
selectedValue:
|
|
|
|
|
_selectedMedicationRoute,
|
|
|
|
|
okText:
|
|
|
|
|
TranslationBase.of(context)
|
|
|
|
|
.ok,
|
|
|
|
|
okFunction: (selectedValue) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_selectedMedicationRoute =
|
|
|
|
|
selectedValue;
|
|
|
|
|
|
|
|
|
|
strengthController
|
|
|
|
|
.text = projectViewModel
|
|
|
|
|
.isArabic
|
|
|
|
|
? _selectedMedicationStrength
|
|
|
|
|
.nameAr
|
|
|
|
|
: _selectedMedicationStrength
|
|
|
|
|
.nameEn;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
showDialog(
|
|
|
|
|
barrierDismissible: false,
|
|
|
|
|
context: context,
|
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
|
return dialog;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
: null,
|
|
|
|
|
hintText:
|
|
|
|
|
TranslationBase.of(context).strength,
|
|
|
|
|
maxLines: 2,
|
|
|
|
|
minLines: 2,
|
|
|
|
|
controller: strengthController,
|
|
|
|
|
validationError: isFormSubmitted &&
|
|
|
|
|
_selectedMedicationStrength == null
|
|
|
|
|
? TranslationBase.of(context).emptyMessage
|
|
|
|
|
: null,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
AppTextFieldCustom(
|
|
|
|
|
enabled: false,
|
|
|
|
|
isTextFieldHasSuffix: true,
|
|
|
|
|
onClick: model.medicationRouteList != null
|
|
|
|
|
? () {
|
|
|
|
|
MasterKeyDailog dialog =
|
|
|
|
|
MasterKeyDailog(
|
|
|
|
|
list: model.medicationRouteList,
|
|
|
|
|
selectedValue: _selectedMedicationRoute,
|
|
|
|
|
okText:
|
|
|
|
|
TranslationBase.of(context).ok,
|
|
|
|
|
okFunction: (selectedValue) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_selectedMedicationRoute =
|
|
|
|
|
selectedValue;
|
|
|
|
|
routeController
|
|
|
|
|
.text = projectViewModel
|
|
|
|
|
.isArabic
|
|
|
|
|
? _selectedMedicationRoute
|
|
|
|
|
.nameAr
|
|
|
|
|
: _selectedMedicationRoute
|
|
|
|
|
.nameEn;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
showDialog(
|
|
|
|
|
barrierDismissible: false,
|
|
|
|
|
context: context,
|
|
|
|
|
builder:
|
|
|
|
|
(BuildContext context) {
|
|
|
|
|
return dialog;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
: null,
|
|
|
|
|
hintText:
|
|
|
|
|
TranslationBase.of(context).route,
|
|
|
|
|
maxLines: 1,
|
|
|
|
|
minLines: 1,
|
|
|
|
|
controller: routeController,
|
|
|
|
|
validationError: isFormSubmitted &&
|
|
|
|
|
_selectedMedicationRoute == null
|
|
|
|
|
? TranslationBase.of(context)
|
|
|
|
|
.emptyMessage
|
|
|
|
|
: null,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
AppTextFieldCustom(
|
|
|
|
|
height: Helpers.getTextFieldHeight(),
|
|
|
|
|
onClick: model.medicationFrequencyList !=
|
|
|
|
|
null
|
|
|
|
|
? () {
|
|
|
|
|
MasterKeyDailog dialog =
|
|
|
|
|
MasterKeyDailog(
|
|
|
|
|
list: model
|
|
|
|
|
.medicationFrequencyList,
|
|
|
|
|
okText:
|
|
|
|
|
TranslationBase.of(context)
|
|
|
|
|
.ok,
|
|
|
|
|
selectedValue:
|
|
|
|
|
_selectedMedicationFrequency,
|
|
|
|
|
okFunction: (selectedValue) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_selectedMedicationFrequency =
|
|
|
|
|
selectedValue;
|
|
|
|
|
|
|
|
|
|
routeController
|
|
|
|
|
.text = projectViewModel
|
|
|
|
|
.isArabic
|
|
|
|
|
? _selectedMedicationRoute
|
|
|
|
|
.nameAr
|
|
|
|
|
: _selectedMedicationRoute
|
|
|
|
|
.nameEn;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
showDialog(
|
|
|
|
|
barrierDismissible: false,
|
|
|
|
|
context: context,
|
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
|
return dialog;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
: null,
|
|
|
|
|
hintText: TranslationBase.of(context).route,
|
|
|
|
|
maxLines: 2,
|
|
|
|
|
minLines: 2,
|
|
|
|
|
controller: routeController,
|
|
|
|
|
validationError: isFormSubmitted &&
|
|
|
|
|
_selectedMedicationRoute == null
|
|
|
|
|
? TranslationBase.of(context).emptyMessage
|
|
|
|
|
: null,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
AppTextFieldCustom(
|
|
|
|
|
onClick: model.medicationFrequencyList != null
|
|
|
|
|
? () {
|
|
|
|
|
MasterKeyDailog dialog =
|
|
|
|
|
MasterKeyDailog(
|
|
|
|
|
list: model.medicationFrequencyList,
|
|
|
|
|
okText:
|
|
|
|
|
TranslationBase.of(context).ok,
|
|
|
|
|
selectedValue: _selectedMedicationFrequency,
|
|
|
|
|
okFunction: (selectedValue) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_selectedMedicationFrequency =
|
|
|
|
|
selectedValue;
|
|
|
|
|
frequencyController
|
|
|
|
|
.text = projectViewModel
|
|
|
|
|
.isArabic
|
|
|
|
|
? _selectedMedicationFrequency
|
|
|
|
|
.nameAr
|
|
|
|
|
: _selectedMedicationFrequency
|
|
|
|
|
.nameEn;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
showDialog(
|
|
|
|
|
barrierDismissible: false,
|
|
|
|
|
context: context,
|
|
|
|
|
builder:
|
|
|
|
|
(BuildContext context) {
|
|
|
|
|
return dialog;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
: null,
|
|
|
|
|
hintText:
|
|
|
|
|
TranslationBase.of(context).frequency,
|
|
|
|
|
enabled: false,
|
|
|
|
|
maxLines: 1,
|
|
|
|
|
minLines: 1,
|
|
|
|
|
isTextFieldHasSuffix: true,
|
|
|
|
|
controller: frequencyController,
|
|
|
|
|
validationError: isFormSubmitted &&
|
|
|
|
|
_selectedMedicationFrequency ==
|
|
|
|
|
null
|
|
|
|
|
? TranslationBase.of(context)
|
|
|
|
|
.emptyMessage
|
|
|
|
|
: null,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: SizeConfig.heightMultiplier * (SizeConfig.isHeightVeryShort ?20:SizeConfig.isHeightShort?15:10),
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
frequencyController
|
|
|
|
|
.text = projectViewModel
|
|
|
|
|
.isArabic
|
|
|
|
|
? _selectedMedicationFrequency
|
|
|
|
|
.nameAr
|
|
|
|
|
: _selectedMedicationFrequency
|
|
|
|
|
.nameEn;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
showDialog(
|
|
|
|
|
barrierDismissible: false,
|
|
|
|
|
context: context,
|
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
|
return dialog;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
: null,
|
|
|
|
|
hintText:
|
|
|
|
|
TranslationBase.of(context).frequency,
|
|
|
|
|
enabled: false,
|
|
|
|
|
maxLines: 2,
|
|
|
|
|
minLines: 2,
|
|
|
|
|
isTextFieldHasSuffix: true,
|
|
|
|
|
controller: frequencyController,
|
|
|
|
|
validationError: isFormSubmitted &&
|
|
|
|
|
_selectedMedicationFrequency == null
|
|
|
|
|
? TranslationBase.of(context).emptyMessage
|
|
|
|
|
: null,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 30,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
]),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
bottomSheet:model.state == ViewState.Busy?Container(height: 0,):
|
|
|
|
|
BottomSheetDialogButton(
|
|
|
|
|
label: TranslationBase.of(context)
|
|
|
|
|
.addMedication
|
|
|
|
|
.toUpperCase(),
|
|
|
|
|
onTap: () {
|
|
|
|
|
setState(() {
|
|
|
|
|
isFormSubmitted = true;
|
|
|
|
|
});
|
|
|
|
|
if (_selectedMedication != null &&
|
|
|
|
|
_selectedMedicationDose != null &&
|
|
|
|
|
_selectedMedicationStrength != null &&
|
|
|
|
|
_selectedMedicationRoute != null &&
|
|
|
|
|
_selectedMedicationFrequency != null) {
|
|
|
|
|
widget.medicationController.text = widget
|
|
|
|
|
.medicationController.text +
|
|
|
|
|
'${_selectedMedication.description} (${TranslationBase.of(context).doseTime} ) ${doseController.text} (${TranslationBase.of(context).strength}) ${strengthController.text} (${TranslationBase.of(context).route}) ${routeController.text} (${TranslationBase.of(context).frequency}) ${frequencyController.text} \n \n';
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
bottomSheet: model.state == ViewState.Busy
|
|
|
|
|
? Container(
|
|
|
|
|
height: 0,
|
|
|
|
|
)
|
|
|
|
|
: BottomSheetDialogButton(
|
|
|
|
|
label:
|
|
|
|
|
TranslationBase.of(context).addMedication,
|
|
|
|
|
onTap: () {
|
|
|
|
|
setState(() {
|
|
|
|
|
isFormSubmitted = true;
|
|
|
|
|
});
|
|
|
|
|
if (_selectedMedication != null &&
|
|
|
|
|
_selectedMedicationDose != null &&
|
|
|
|
|
_selectedMedicationStrength != null &&
|
|
|
|
|
_selectedMedicationRoute != null &&
|
|
|
|
|
_selectedMedicationFrequency != null) {
|
|
|
|
|
widget.medicationController.text = widget
|
|
|
|
|
.medicationController.text +
|
|
|
|
|
'${_selectedMedication.description} (${TranslationBase.of(context).doseTime} ) ${doseController.text} (${TranslationBase.of(context).strength}) ${strengthController.text} (${TranslationBase.of(context).route}) ${routeController.text} (${TranslationBase.of(context).frequency}) ${frequencyController.text} \n \n';
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
)),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|