fix allergies
parent
fe39a22481
commit
1330d680ab
@ -0,0 +1,499 @@
|
|||||||
|
import 'package:doctor_app_flutter/core/enum/viewstate.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/viewModel/SOAP_view_model.dart';
|
||||||
|
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/models/SOAP/my_selected_allergy.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/TextFields.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_buttons_widget.dart';
|
||||||
|
import 'package:eva_icons_flutter/eva_icons_flutter.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
import 'app_texts_widget.dart';
|
||||||
|
import 'dialogs/master_key_dailog.dart';
|
||||||
|
|
||||||
|
class MasterKeyCheckboxSearchAllergiesWidget extends StatefulWidget {
|
||||||
|
final SOAPViewModel model;
|
||||||
|
final Function addSelectedAllergy;
|
||||||
|
final Function(MasterKeyModel) removeAllergy;
|
||||||
|
final Function(MySelectedAllergy mySelectedAllergy) addAllergy;
|
||||||
|
final bool Function(MasterKeyModel) isServiceSelected;
|
||||||
|
final List<MasterKeyModel> masterList;
|
||||||
|
final String buttonName;
|
||||||
|
final String hintSearchText;
|
||||||
|
|
||||||
|
MasterKeyCheckboxSearchAllergiesWidget(
|
||||||
|
{Key key,
|
||||||
|
this.model,
|
||||||
|
this.addSelectedAllergy,
|
||||||
|
this.removeAllergy,
|
||||||
|
this.masterList,
|
||||||
|
this.addAllergy,
|
||||||
|
this.isServiceSelected,
|
||||||
|
this.buttonName,
|
||||||
|
this.hintSearchText})
|
||||||
|
: super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
_MasterKeyCheckboxSearchAllergiesWidgetState createState() =>
|
||||||
|
_MasterKeyCheckboxSearchAllergiesWidgetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _MasterKeyCheckboxSearchAllergiesWidgetState
|
||||||
|
extends State<MasterKeyCheckboxSearchAllergiesWidget> {
|
||||||
|
List<MasterKeyModel> items = List();
|
||||||
|
MasterKeyModel _selectedAllergySeverity;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
items.addAll(widget.masterList);
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
ProjectViewModel projectViewModel = Provider.of(context);
|
||||||
|
return Container(
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Container(
|
||||||
|
height: MediaQuery.of(context).size.height * 0.62,
|
||||||
|
child: Center(
|
||||||
|
child: Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.circular(12),
|
||||||
|
color: Colors.white),
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
TextFields(
|
||||||
|
hintText: widget.hintSearchText ??
|
||||||
|
TranslationBase.of(context).selectAllergy,
|
||||||
|
borderWidth: 0.0,
|
||||||
|
padding: EdgeInsets.all(20),
|
||||||
|
borderRadius: 0,
|
||||||
|
suffixIcon: EvaIcons.search,
|
||||||
|
onChanged: (value) {
|
||||||
|
filterSearchResults(value);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
|
FractionallySizedBox(
|
||||||
|
widthFactor: 0.9,
|
||||||
|
child: Container(
|
||||||
|
height: MediaQuery.of(context).size.height * 0.60,
|
||||||
|
child: ListView.builder(
|
||||||
|
itemCount: items.length,
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
TextEditingController remarkController = TextEditingController(text: items[index].remarks);
|
||||||
|
TextEditingController severityController = TextEditingController(text: _selectedAllergySeverity!= null ?projectViewModel
|
||||||
|
.isArabic
|
||||||
|
? _selectedAllergySeverity
|
||||||
|
.nameAr
|
||||||
|
: _selectedAllergySeverity
|
||||||
|
.nameEn: null);
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
InkWell(
|
||||||
|
onTap: () {
|
||||||
|
setState(() {
|
||||||
|
if (widget.isServiceSelected(
|
||||||
|
items[index])) {
|
||||||
|
widget
|
||||||
|
.removeAllergy(items[index]);
|
||||||
|
} else {
|
||||||
|
// TODO add Allergy
|
||||||
|
|
||||||
|
MySelectedAllergy
|
||||||
|
mySelectedAllergy =
|
||||||
|
new MySelectedAllergy(
|
||||||
|
selectedAllergy:
|
||||||
|
items[index],
|
||||||
|
selectedAllergySeverity:
|
||||||
|
_selectedAllergySeverity, remark: "fdfdf", isChecked: true);
|
||||||
|
widget.addAllergy(mySelectedAllergy);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Checkbox(
|
||||||
|
value: widget
|
||||||
|
.isServiceSelected(
|
||||||
|
items[index]),
|
||||||
|
activeColor:
|
||||||
|
Colors.red[800],
|
||||||
|
onChanged: (bool newValue) {
|
||||||
|
// setState(() {
|
||||||
|
// if (widget
|
||||||
|
// .isServiceSelected(items[index])) {
|
||||||
|
// widget.removeHistory(items[index]);
|
||||||
|
// } else {
|
||||||
|
// widget.addHistory(items[index]);
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
}),
|
||||||
|
Expanded(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets
|
||||||
|
.symmetric(
|
||||||
|
horizontal: 10,
|
||||||
|
vertical: 0),
|
||||||
|
child: AppText(
|
||||||
|
projectViewModel.isArabic
|
||||||
|
? items[index]
|
||||||
|
.nameAr !=
|
||||||
|
""
|
||||||
|
? items[index]
|
||||||
|
.nameAr
|
||||||
|
: items[index]
|
||||||
|
.nameEn
|
||||||
|
: items[index].nameEn,
|
||||||
|
color: Color(0xFF575757),
|
||||||
|
fontSize: 16,
|
||||||
|
fontWeight:
|
||||||
|
FontWeight.w600,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if(widget
|
||||||
|
.isServiceSelected(
|
||||||
|
items[index]))
|
||||||
|
Column(children: [
|
||||||
|
TextFields(
|
||||||
|
onTapTextFields: widget.model
|
||||||
|
.allergySeverityList !=
|
||||||
|
null
|
||||||
|
? () {
|
||||||
|
MasterKeyDailog dialog =
|
||||||
|
MasterKeyDailog(
|
||||||
|
list: widget.model
|
||||||
|
.allergySeverityList,
|
||||||
|
okText:
|
||||||
|
TranslationBase.of(
|
||||||
|
context)
|
||||||
|
.ok,
|
||||||
|
okFunction:
|
||||||
|
(selectedValue) {
|
||||||
|
setState(() {
|
||||||
|
_selectedAllergySeverity =
|
||||||
|
selectedValue;
|
||||||
|
|
||||||
|
severityController
|
||||||
|
.text = projectViewModel
|
||||||
|
.isArabic
|
||||||
|
? _selectedAllergySeverity
|
||||||
|
.nameAr
|
||||||
|
: _selectedAllergySeverity
|
||||||
|
.nameEn;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
showDialog(
|
||||||
|
barrierDismissible:
|
||||||
|
false,
|
||||||
|
context: context,
|
||||||
|
builder: (BuildContext
|
||||||
|
context) {
|
||||||
|
return dialog;
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
: null,
|
||||||
|
hasLabelText:
|
||||||
|
severityController.text !=
|
||||||
|
''
|
||||||
|
? true
|
||||||
|
: false,
|
||||||
|
showLabelText: true,
|
||||||
|
hintText:
|
||||||
|
TranslationBase.of(context)
|
||||||
|
.selectSeverity,
|
||||||
|
fontSize: 13.5,
|
||||||
|
readOnly: true,
|
||||||
|
// hintColor: Colors.black,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
maxLines: 2,
|
||||||
|
minLines: 1,
|
||||||
|
controller: severityController,
|
||||||
|
validator: (value) {
|
||||||
|
if (value == null)
|
||||||
|
return TranslationBase.of(
|
||||||
|
context)
|
||||||
|
.emptyMessage;
|
||||||
|
else
|
||||||
|
return null;
|
||||||
|
}),
|
||||||
|
SizedBox(
|
||||||
|
height: 5,
|
||||||
|
),
|
||||||
|
// if(isFormSubmitted &&
|
||||||
|
// _selectedAllergySeverity == null)
|
||||||
|
// CustomValidationError(),
|
||||||
|
|
||||||
|
SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
margin: EdgeInsets.only(
|
||||||
|
left: 0, right: 0, top: 15),
|
||||||
|
child: TextFields(
|
||||||
|
hasLabelText:
|
||||||
|
remarkController.text !=
|
||||||
|
''
|
||||||
|
? true
|
||||||
|
: false,
|
||||||
|
showLabelText: true,
|
||||||
|
hintText: TranslationBase.of(
|
||||||
|
context)
|
||||||
|
.remarks,
|
||||||
|
fontSize: 13.5,
|
||||||
|
// hintColor: Colors.black,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
maxLines: 25,
|
||||||
|
minLines: 10,
|
||||||
|
controller: remarkController,
|
||||||
|
validator: (value) {
|
||||||
|
if (value == null)
|
||||||
|
return TranslationBase.of(
|
||||||
|
context)
|
||||||
|
.emptyMessage;
|
||||||
|
else
|
||||||
|
return null;
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
|
],)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
// DividerWithSpacesAround(),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
// ListView(
|
||||||
|
// children: [
|
||||||
|
// TextFields(
|
||||||
|
// hintText: widget.hintSearchText ??
|
||||||
|
// TranslationBase.of(context).searchHistory,
|
||||||
|
// borderWidth: 0.0,
|
||||||
|
// padding: EdgeInsets.all(20),
|
||||||
|
// borderRadius: 0,
|
||||||
|
// suffixIcon: EvaIcons.search,
|
||||||
|
// onChanged: (value) {
|
||||||
|
// filterSearchResults(value);
|
||||||
|
// },
|
||||||
|
// ),
|
||||||
|
// // SizedBox(height: 15,),
|
||||||
|
// DividerWithSpacesAround(),
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// // Container(
|
||||||
|
// // // padding:EdgeInsets.all(20),
|
||||||
|
// // child: Column(
|
||||||
|
// // children: items.map((historyInfo) {
|
||||||
|
// // return Column(
|
||||||
|
// // children: [
|
||||||
|
// // InkWell(
|
||||||
|
// // onTap:(){
|
||||||
|
// //
|
||||||
|
// // setState(() {
|
||||||
|
// // if (widget
|
||||||
|
// // .isServiceSelected(historyInfo)) {
|
||||||
|
// // widget.removeHistory(historyInfo);
|
||||||
|
// // } else {
|
||||||
|
// // widget.addHistory(historyInfo);
|
||||||
|
// // }
|
||||||
|
// // });
|
||||||
|
// // },
|
||||||
|
// //
|
||||||
|
// // child: Column(
|
||||||
|
// // children: [
|
||||||
|
// // Row(
|
||||||
|
// // children: [
|
||||||
|
// // Checkbox(
|
||||||
|
// // value:true,
|
||||||
|
// // // widget.isServiceSelected(historyInfo),
|
||||||
|
// // activeColor: Colors.red[800],
|
||||||
|
// // onChanged: (bool newValue) {
|
||||||
|
// // // setState(() {
|
||||||
|
// // // if (widget
|
||||||
|
// // // .isServiceSelected(historyInfo)) {
|
||||||
|
// // // widget.removeHistory(historyInfo);
|
||||||
|
// // // } else {
|
||||||
|
// // // widget.addHistory(historyInfo);
|
||||||
|
// // // }
|
||||||
|
// // // });
|
||||||
|
// // }),
|
||||||
|
// // Expanded(
|
||||||
|
// // child: Padding(
|
||||||
|
// // padding: const EdgeInsets.symmetric(
|
||||||
|
// // horizontal: 10, vertical: 0),
|
||||||
|
// // child: AppText(projectViewModel.isArabic
|
||||||
|
// // ? historyInfo.nameAr!=""?historyInfo.nameAr:historyInfo.nameEn
|
||||||
|
// // : historyInfo.nameEn,
|
||||||
|
// // color: Color(0xFF575757),
|
||||||
|
// // fontSize: 16,
|
||||||
|
// // fontWeight:FontWeight.w600,
|
||||||
|
// // ),
|
||||||
|
// // ),
|
||||||
|
// // ),
|
||||||
|
// // ],
|
||||||
|
// // ),
|
||||||
|
// // TextFields(
|
||||||
|
// // onTapTextFields: widget.model
|
||||||
|
// // .allergySeverityList != null
|
||||||
|
// // ? () {
|
||||||
|
// // MasterKeyDailog dialog = MasterKeyDailog(
|
||||||
|
// // list: widget.model.allergySeverityList,
|
||||||
|
// // okText: TranslationBase
|
||||||
|
// // .of(context)
|
||||||
|
// // .ok,
|
||||||
|
// // okFunction: (selectedValue) {
|
||||||
|
// // // setState(() {
|
||||||
|
// // // _selectedAllergySeverity =
|
||||||
|
// // // selectedValue;
|
||||||
|
// // //
|
||||||
|
// // // severityController.text =
|
||||||
|
// // // projectViewModel.isArabic
|
||||||
|
// // // ? _selectedAllergySeverity
|
||||||
|
// // // .nameAr
|
||||||
|
// // // : _selectedAllergySeverity
|
||||||
|
// // // .nameEn;
|
||||||
|
// // // });
|
||||||
|
// // },
|
||||||
|
// // );
|
||||||
|
// // showDialog(
|
||||||
|
// // barrierDismissible: false,
|
||||||
|
// // context: context,
|
||||||
|
// // builder: (BuildContext context) {
|
||||||
|
// // return dialog;
|
||||||
|
// // },
|
||||||
|
// // );
|
||||||
|
// // }
|
||||||
|
// // : null,
|
||||||
|
// // hasLabelText: severityController.text !=
|
||||||
|
// // '' ? true : false,
|
||||||
|
// // showLabelText: true,
|
||||||
|
// // hintText: TranslationBase
|
||||||
|
// // .of(context)
|
||||||
|
// // .selectSeverity,
|
||||||
|
// // fontSize: 13.5,
|
||||||
|
// // readOnly: true,
|
||||||
|
// // // hintColor: Colors.black,
|
||||||
|
// // fontWeight: FontWeight.w600,
|
||||||
|
// // maxLines: 2,
|
||||||
|
// // minLines: 1,
|
||||||
|
// // controller: severityController,
|
||||||
|
// // validator: (value) {
|
||||||
|
// // if (value == null)
|
||||||
|
// // return TranslationBase
|
||||||
|
// // .of(context)
|
||||||
|
// // .emptyMessage;
|
||||||
|
// // else
|
||||||
|
// // return null;
|
||||||
|
// // }), SizedBox(
|
||||||
|
// // height: 5,
|
||||||
|
// // ),
|
||||||
|
// // // if(isFormSubmitted &&
|
||||||
|
// // // _selectedAllergySeverity == null)
|
||||||
|
// // // CustomValidationError(),
|
||||||
|
// //
|
||||||
|
// // SizedBox(
|
||||||
|
// // height: 10,
|
||||||
|
// // ),
|
||||||
|
// // Container(
|
||||||
|
// // margin: EdgeInsets.only(
|
||||||
|
// // left: 0, right: 0, top: 15),
|
||||||
|
// // child: TextFields(
|
||||||
|
// // hasLabelText: remarkController.text != ''?true:false,
|
||||||
|
// // showLabelText: true,
|
||||||
|
// // hintText: TranslationBase.of(context).remarks,
|
||||||
|
// // fontSize: 13.5,
|
||||||
|
// // // hintColor: Colors.black,
|
||||||
|
// // fontWeight: FontWeight.w600,
|
||||||
|
// // maxLines: 25,
|
||||||
|
// // minLines: 10,
|
||||||
|
// // controller: remarkController,
|
||||||
|
// // validator: (value) {
|
||||||
|
// // if (value == null)
|
||||||
|
// // return TranslationBase
|
||||||
|
// // .of(context)
|
||||||
|
// // .emptyMessage;
|
||||||
|
// // else
|
||||||
|
// // return null;
|
||||||
|
// // }),
|
||||||
|
// // ), SizedBox(
|
||||||
|
// // height: 10,
|
||||||
|
// // ),
|
||||||
|
// // ],
|
||||||
|
// // ),
|
||||||
|
// // ),
|
||||||
|
// // // DividerWithSpacesAround(),
|
||||||
|
// // ],
|
||||||
|
// // );
|
||||||
|
// // }).toList(),
|
||||||
|
// // ),
|
||||||
|
// // ),
|
||||||
|
// ],
|
||||||
|
// ),
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
|
if (widget.model.state == ViewState.Idle)
|
||||||
|
AppButton(
|
||||||
|
title: widget.buttonName ??
|
||||||
|
TranslationBase.of(context).addSelectedHistories,
|
||||||
|
padding: 10,
|
||||||
|
color: Color(0xFF359846),
|
||||||
|
onPressed: () {
|
||||||
|
widget.addSelectedAllergy();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void filterSearchResults(String query) {
|
||||||
|
List<MasterKeyModel> dummySearchList = List();
|
||||||
|
dummySearchList.addAll(widget.masterList);
|
||||||
|
if (query.isNotEmpty) {
|
||||||
|
List<MasterKeyModel> dummyListData = List();
|
||||||
|
dummySearchList.forEach((items) {
|
||||||
|
if (items.nameAr.toLowerCase().contains(query.toLowerCase()) ||
|
||||||
|
items.nameEn.toLowerCase().contains(query.toLowerCase())) {
|
||||||
|
dummyListData.add(items);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
setState(() {
|
||||||
|
items.clear();
|
||||||
|
items.addAll(dummyListData);
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
setState(() {
|
||||||
|
items.clear();
|
||||||
|
items.addAll(widget.masterList);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue