Merge branch 'textfield-validation' into 'development'
referral changes See merge request Cloud_Solution/doctor_app_flutter!501merge-requests/502/merge
commit
963c40b8d5
@ -1,54 +0,0 @@
|
||||
import 'package:doctor_app_flutter/core/viewModel/referred_view_model.dart';
|
||||
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
||||
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||
import 'package:doctor_app_flutter/widgets/doctor/my_referred_patient_widget.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../widgets/shared/app_scaffold_widget.dart';
|
||||
|
||||
class MyReferredPatient extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<ReferredPatientViewModel>(
|
||||
onModelReady: (model) => model.getMyReferredPatient(),
|
||||
builder: (_, model, w) => AppScaffold(
|
||||
baseViewModel: model,
|
||||
isShowAppBar: false,
|
||||
appBarTitle: TranslationBase.of(context).myReferredPatient,
|
||||
body: model.listMyReferredPatientModel.length == 0
|
||||
? Center(
|
||||
child: AppText(
|
||||
TranslationBase.of(context).errorNoSchedule,
|
||||
color: Theme.of(context).errorColor,
|
||||
),
|
||||
)
|
||||
: Container(
|
||||
padding: EdgeInsetsDirectional.fromSTEB(20, 0, 20, 0),
|
||||
child: ListView(
|
||||
children: <Widget>[
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
SizedBox(
|
||||
height: 100,
|
||||
),
|
||||
Container(
|
||||
child: Column(
|
||||
//children: referredPatientProvider.listMyReferralPatientModel.map((item) {
|
||||
children: model.listMyReferredPatientModel
|
||||
.map((item) {
|
||||
return MyReferredPatientWidget(
|
||||
myReferredPatientModel: item,
|
||||
model: model);
|
||||
}).toList(),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
));
|
||||
}
|
||||
}
|
||||
@ -1,311 +0,0 @@
|
||||
import 'package:doctor_app_flutter/config/size_config.dart';
|
||||
import 'package:doctor_app_flutter/core/enum/viewstate.dart';
|
||||
import 'package:doctor_app_flutter/core/viewModel/referred_view_model.dart';
|
||||
import 'package:doctor_app_flutter/models/patient/my_referral/my_referred_patient_model.dart';
|
||||
import 'package:doctor_app_flutter/util/dr_app_toast_msg.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/Text.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/app_button.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/expandable-widget-header-body.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class MyReferredPatientWidget extends StatefulWidget {
|
||||
final MyReferredPatientModel myReferredPatientModel;
|
||||
final ReferredPatientViewModel model;
|
||||
|
||||
MyReferredPatientWidget({Key key, this.myReferredPatientModel, this.model});
|
||||
|
||||
@override
|
||||
_MyReferredPatientWidgetState createState() =>
|
||||
_MyReferredPatientWidgetState();
|
||||
}
|
||||
|
||||
class _MyReferredPatientWidgetState extends State<MyReferredPatientWidget> {
|
||||
bool _showDetails = false;
|
||||
bool _isLoading = false;
|
||||
TextEditingController answerController;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
margin: EdgeInsets.symmetric(horizontal: 16, vertical: 10),
|
||||
padding: EdgeInsets.only(left: 0, top: 8, right: 0, bottom: 0),
|
||||
decoration: BoxDecoration(
|
||||
shape: BoxShape.rectangle,
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
border: Border.fromBorderSide(BorderSide(
|
||||
color: Color(0xffCCCCCC),
|
||||
width: 2,
|
||||
)),
|
||||
color: Color(0xffffffff),
|
||||
),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
HeaderBodyExpandableNotifier(
|
||||
headerWidget: Container(
|
||||
margin: EdgeInsets.all(10),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: <Widget>[
|
||||
AppText(
|
||||
'${widget.myReferredPatientModel.firstName} ${widget.myReferredPatientModel.lastName}',
|
||||
fontSize: 2.5 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
InkWell(
|
||||
onTap: () {
|
||||
setState(() {
|
||||
_showDetails = !_showDetails;
|
||||
});
|
||||
},
|
||||
child: Image.asset(
|
||||
"assets/images/ic_circle_arrow.png",
|
||||
width: 25,
|
||||
height: 25,
|
||||
color: Colors.black,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
bodyWidget: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
SizedBox(
|
||||
height: 5,
|
||||
),
|
||||
Divider(
|
||||
color: Color(0xFF000000),
|
||||
height: 0.5,
|
||||
),
|
||||
Table(
|
||||
border: TableBorder.symmetric(
|
||||
inside: BorderSide(width: 0.5),
|
||||
),
|
||||
children: [
|
||||
TableRow(children: [
|
||||
Container(
|
||||
margin: EdgeInsets.all(2.5),
|
||||
padding: EdgeInsets.all(5),
|
||||
decoration: BoxDecoration(),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
AppText(
|
||||
TranslationBase.of(context).fileNo,
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
AppText(
|
||||
'${widget.myReferredPatientModel.patientId}',
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.w300,
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.only(
|
||||
left: 4, top: 2.5, right: 2.5, bottom: 2.5),
|
||||
padding: EdgeInsets.all(5),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
AppText(
|
||||
TranslationBase.of(context).referralDoctor,
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
Texts(
|
||||
widget.myReferredPatientModel
|
||||
.referralDoctorName,
|
||||
maxLength: 80,
|
||||
readMore: true,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
]),
|
||||
TableRow(
|
||||
children: [
|
||||
Container(
|
||||
margin: EdgeInsets.all(2.5),
|
||||
padding: EdgeInsets.all(5),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
AppText(
|
||||
TranslationBase.of(context).referringClinic,
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
AppText(
|
||||
'${widget.myReferredPatientModel.referralClinicDescription}',
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.w300,
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.only(
|
||||
left: 4, top: 2.5, right: 2.5, bottom: 2.5),
|
||||
padding: EdgeInsets.all(5),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
AppText(
|
||||
TranslationBase.of(context).frequency,
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
AppText(
|
||||
widget.myReferredPatientModel
|
||||
.frequencyDescription,
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.w300,
|
||||
)
|
||||
],
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
TableRow(children: [
|
||||
Container(
|
||||
margin: EdgeInsets.all(2.5),
|
||||
padding: EdgeInsets.all(5),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
AppText(
|
||||
TranslationBase.of(context).priority,
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
AppText(
|
||||
'${widget.myReferredPatientModel.priorityDescription}',
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.w300,
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.only(
|
||||
left: 4, top: 2.5, right: 2.5, bottom: 2.5),
|
||||
padding: EdgeInsets.all(5),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
AppText(
|
||||
TranslationBase.of(context).maxResponseTime,
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
AppText(
|
||||
Helpers.getDateFormatted(widget
|
||||
.myReferredPatientModel.maxResponseTime),
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.w300,
|
||||
)
|
||||
],
|
||||
),
|
||||
)
|
||||
])
|
||||
],
|
||||
),
|
||||
Divider(
|
||||
color: Color(0xFF000000),
|
||||
height: 0.5,
|
||||
),
|
||||
SizedBox(
|
||||
height: 5,
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.all(10),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
AppText(
|
||||
TranslationBase.of(context).clinicDetailsandRemarks,
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.bold,
|
||||
textAlign: TextAlign.start,
|
||||
),
|
||||
SizedBox(
|
||||
height: 5,
|
||||
),
|
||||
Texts(
|
||||
'${widget.myReferredPatientModel.referringDoctorRemarks}',
|
||||
style: "bodyText1",
|
||||
readMore: true,
|
||||
textAlign: TextAlign.start,
|
||||
maxLength: 100),
|
||||
SizedBox(
|
||||
height: 5,
|
||||
),
|
||||
AppText(
|
||||
TranslationBase.of(context).answerSuggestions,
|
||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.bold,
|
||||
textAlign: TextAlign.start,
|
||||
),
|
||||
SizedBox(
|
||||
height: 5,
|
||||
),
|
||||
Texts(
|
||||
'${widget.myReferredPatientModel.referredDoctorRemarks}',
|
||||
style: "bodyText1",
|
||||
readMore: true,
|
||||
textAlign: TextAlign.start,
|
||||
maxLength: 100),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 5,
|
||||
),
|
||||
SizedBox(height: 10.0),
|
||||
Container(
|
||||
margin: EdgeInsets.all(10),
|
||||
width: double.infinity,
|
||||
child: Button(
|
||||
onTap: () async {
|
||||
try {
|
||||
await widget.model
|
||||
.verify(widget.myReferredPatientModel);
|
||||
|
||||
DrAppToastMsg.showSuccesToast(
|
||||
'Verify Successfully');
|
||||
} catch (e) {
|
||||
DrAppToastMsg.showErrorToast(e);
|
||||
}
|
||||
},
|
||||
title: TranslationBase.of(context).verify,
|
||||
loading: widget.model.state == ViewState.BusyLocal,
|
||||
),
|
||||
)
|
||||
],
|
||||
)
|
||||
],
|
||||
),
|
||||
isExpand: _showDetails,
|
||||
)
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue