|
|
|
|
@ -1,6 +1,11 @@
|
|
|
|
|
import 'package:doctor_app_flutter/core/enum/viewstate.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/viewModel/LiveCarePatientViewModel.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/live_care/live-care_transfer_to_admin.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/patients/profile/profile_screen/PatientProfileCardModel.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/patients/profile/PatientProfileButton.dart';
|
|
|
|
|
@ -8,6 +13,7 @@ import 'package:doctor_app_flutter/widgets/patients/profile/patient-profile-head
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/buttons/app_buttons_widget.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/loader/gif_loader_dialog_utils.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter_staggered_grid_view/flutter_staggered_grid_view.dart';
|
|
|
|
|
import 'package:hexcolor/hexcolor.dart';
|
|
|
|
|
@ -31,6 +37,8 @@ class _EndCallScreenState extends State<EndCallScreen> {
|
|
|
|
|
String from;
|
|
|
|
|
String to;
|
|
|
|
|
|
|
|
|
|
LiveCarePatientViewModel liveCareModel;
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
final List<PatientProfileCardModel> cardsList = [
|
|
|
|
|
@ -46,13 +54,17 @@ class _EndCallScreenState extends State<EndCallScreen> {
|
|
|
|
|
'',
|
|
|
|
|
'patient/vital_signs.png',
|
|
|
|
|
isInPatient: isInpatient, onTap: () {
|
|
|
|
|
Helpers.showConfirmationDialog(
|
|
|
|
|
context,
|
|
|
|
|
Helpers.showConfirmationDialog(context,
|
|
|
|
|
"${TranslationBase.of(context).areYouSureYouWantTo} ${TranslationBase.of(context).endLC} ${TranslationBase.of(context).consultation} ?",
|
|
|
|
|
() {
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
() async {
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
|
GifLoaderDialogUtils.showMyDialog(context);
|
|
|
|
|
liveCareModel.endCallWithCharge(0);
|
|
|
|
|
GifLoaderDialogUtils.hideDialog(context);
|
|
|
|
|
if (liveCareModel.state == ViewState.ErrorLocal) {
|
|
|
|
|
DrAppToastMsg.showErrorToast(liveCareModel.error);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}, isDartIcon: true, dartIcon: DoctorApp.end_consultaion),
|
|
|
|
|
PatientProfileCardModel(
|
|
|
|
|
TranslationBase.of(context).sendLC,
|
|
|
|
|
@ -65,122 +77,133 @@ class _EndCallScreenState extends State<EndCallScreen> {
|
|
|
|
|
dartIcon: DoctorApp.send_instruction),
|
|
|
|
|
PatientProfileCardModel(TranslationBase.of(context).transferTo,
|
|
|
|
|
TranslationBase.of(context).admin, '', 'patient/health_summary.png',
|
|
|
|
|
onTap: () {},
|
|
|
|
|
onTap: () {
|
|
|
|
|
Navigator.push(context, MaterialPageRoute(
|
|
|
|
|
builder: (BuildContext context) =>
|
|
|
|
|
LivaCareTransferToAdmin(patient:widget.patient)));
|
|
|
|
|
},
|
|
|
|
|
isInPatient: isInpatient,
|
|
|
|
|
isDartIcon: true,
|
|
|
|
|
dartIcon: DoctorApp.transfer_to_admin),
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return AppScaffold(
|
|
|
|
|
appBarTitle: TranslationBase.of(context).patientProfile,
|
|
|
|
|
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
|
|
|
|
|
isShowAppBar: true,
|
|
|
|
|
appBar: PatientProfileHeaderNewDesignAppBar(
|
|
|
|
|
widget.patient, arrivalType ?? '7', '1',
|
|
|
|
|
isInpatient: isInpatient,
|
|
|
|
|
height: (widget.patient.patientStatusType != null &&
|
|
|
|
|
widget.patient.patientStatusType == 43)
|
|
|
|
|
? 210
|
|
|
|
|
: isDischargedPatient
|
|
|
|
|
? 240
|
|
|
|
|
: 0,
|
|
|
|
|
isDischargedPatient: isDischargedPatient),
|
|
|
|
|
body: Container(
|
|
|
|
|
height: !isSearchAndOut
|
|
|
|
|
? isDischargedPatient
|
|
|
|
|
? MediaQuery.of(context).size.height * 0.64
|
|
|
|
|
: MediaQuery.of(context).size.height * 0.65
|
|
|
|
|
: MediaQuery.of(context).size.height * 0.69,
|
|
|
|
|
child: ListView(
|
|
|
|
|
children: [
|
|
|
|
|
Padding(
|
|
|
|
|
padding:
|
|
|
|
|
const EdgeInsets.symmetric(vertical: 15.0, horizontal: 15),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).patient,
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).endcall,
|
|
|
|
|
fontSize: 26,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 10,
|
|
|
|
|
),
|
|
|
|
|
StaggeredGridView.countBuilder(
|
|
|
|
|
shrinkWrap: true,
|
|
|
|
|
physics: NeverScrollableScrollPhysics(),
|
|
|
|
|
crossAxisSpacing: 10,
|
|
|
|
|
mainAxisSpacing: 10,
|
|
|
|
|
crossAxisCount: 3,
|
|
|
|
|
itemCount: cardsList.length,
|
|
|
|
|
staggeredTileBuilder: (int index) => StaggeredTile.fit(1),
|
|
|
|
|
itemBuilder: (BuildContext context, int index) =>
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
patient: widget.patient,
|
|
|
|
|
patientType: patientType,
|
|
|
|
|
arrivalType: arrivalType,
|
|
|
|
|
from: from,
|
|
|
|
|
to: to,
|
|
|
|
|
nameLine1: cardsList[index].nameLine1,
|
|
|
|
|
nameLine2: cardsList[index].nameLine2,
|
|
|
|
|
route: cardsList[index].route,
|
|
|
|
|
icon: cardsList[index].icon,
|
|
|
|
|
isInPatient: cardsList[index].isInPatient,
|
|
|
|
|
isDischargedPatient: cardsList[index].isDischargedPatient,
|
|
|
|
|
isDisable: cardsList[index].isDisable,
|
|
|
|
|
onTap: cardsList[index].onTap,
|
|
|
|
|
isLoading: cardsList[index].isLoading,
|
|
|
|
|
isDartIcon: cardsList[index].isDartIcon,
|
|
|
|
|
dartIcon: cardsList[index].dartIcon,
|
|
|
|
|
return BaseView<LiveCarePatientViewModel>(
|
|
|
|
|
onModelReady: (model) {
|
|
|
|
|
liveCareModel = model;
|
|
|
|
|
},
|
|
|
|
|
builder: (_, model, w) => AppScaffold(
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
appBarTitle: TranslationBase.of(context).patientProfile,
|
|
|
|
|
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
|
|
|
|
|
isShowAppBar: true,
|
|
|
|
|
appBar: PatientProfileHeaderNewDesignAppBar(
|
|
|
|
|
widget.patient, arrivalType ?? '7', '1',
|
|
|
|
|
isInpatient: isInpatient,
|
|
|
|
|
height: (widget.patient.patientStatusType != null &&
|
|
|
|
|
widget.patient.patientStatusType == 43)
|
|
|
|
|
? 210
|
|
|
|
|
: isDischargedPatient
|
|
|
|
|
? 240
|
|
|
|
|
: 0,
|
|
|
|
|
isDischargedPatient: isDischargedPatient),
|
|
|
|
|
body: Container(
|
|
|
|
|
height: !isSearchAndOut
|
|
|
|
|
? isDischargedPatient
|
|
|
|
|
? MediaQuery.of(context).size.height * 0.64
|
|
|
|
|
: MediaQuery.of(context).size.height * 0.65
|
|
|
|
|
: MediaQuery.of(context).size.height * 0.69,
|
|
|
|
|
child: ListView(
|
|
|
|
|
children: [
|
|
|
|
|
Padding(
|
|
|
|
|
padding:
|
|
|
|
|
const EdgeInsets.symmetric(vertical: 15.0, horizontal: 15),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).patient,
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).endcall,
|
|
|
|
|
fontSize: 26,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 10,
|
|
|
|
|
),
|
|
|
|
|
StaggeredGridView.countBuilder(
|
|
|
|
|
shrinkWrap: true,
|
|
|
|
|
physics: NeverScrollableScrollPhysics(),
|
|
|
|
|
crossAxisSpacing: 10,
|
|
|
|
|
mainAxisSpacing: 10,
|
|
|
|
|
crossAxisCount: 3,
|
|
|
|
|
itemCount: cardsList.length,
|
|
|
|
|
staggeredTileBuilder: (int index) => StaggeredTile.fit(1),
|
|
|
|
|
itemBuilder: (BuildContext context, int index) =>
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
patient: widget.patient,
|
|
|
|
|
patientType: patientType,
|
|
|
|
|
arrivalType: arrivalType,
|
|
|
|
|
from: from,
|
|
|
|
|
to: to,
|
|
|
|
|
nameLine1: cardsList[index].nameLine1,
|
|
|
|
|
nameLine2: cardsList[index].nameLine2,
|
|
|
|
|
route: cardsList[index].route,
|
|
|
|
|
icon: cardsList[index].icon,
|
|
|
|
|
isInPatient: cardsList[index].isInPatient,
|
|
|
|
|
isDischargedPatient:
|
|
|
|
|
cardsList[index].isDischargedPatient,
|
|
|
|
|
isDisable: cardsList[index].isDisable,
|
|
|
|
|
onTap: cardsList[index].onTap,
|
|
|
|
|
isLoading: cardsList[index].isLoading,
|
|
|
|
|
isDartIcon: cardsList[index].isDartIcon,
|
|
|
|
|
dartIcon: cardsList[index].dartIcon,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: MediaQuery.of(context).size.height * 0.05,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
bottomSheet: Container(
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
borderRadius: BorderRadius.all(
|
|
|
|
|
Radius.circular(0.0),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: MediaQuery.of(context).size.height * 0.05,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
border: Border.all(color: HexColor('#707070'), width: 0),
|
|
|
|
|
),
|
|
|
|
|
height: MediaQuery.of(context).size.height * 0.1,
|
|
|
|
|
width: double.infinity,
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 10,
|
|
|
|
|
bottomSheet: Container(
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
borderRadius: BorderRadius.all(
|
|
|
|
|
Radius.circular(0.0),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
child: FractionallySizedBox(
|
|
|
|
|
widthFactor: .80,
|
|
|
|
|
child: Center(
|
|
|
|
|
child: AppButton(
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
color: Colors.red[600],
|
|
|
|
|
title: "Close", //TranslationBase.of(context).close,
|
|
|
|
|
onPressed: () async {},
|
|
|
|
|
border: Border.all(color: HexColor('#707070'), width: 0),
|
|
|
|
|
),
|
|
|
|
|
height: MediaQuery.of(context).size.height * 0.1,
|
|
|
|
|
width: double.infinity,
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 10,
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
child: FractionallySizedBox(
|
|
|
|
|
widthFactor: .80,
|
|
|
|
|
child: Center(
|
|
|
|
|
child: AppButton(
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
color: Colors.red[600],
|
|
|
|
|
title: "Close", //TranslationBase.of(context).close,
|
|
|
|
|
onPressed: () async {},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
|