fix issue
parent
f08a91b0b8
commit
30bc9b4bea
@ -0,0 +1,251 @@
|
|||||||
|
import 'package:doctor_app_flutter/config/size_config.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/enum/patient_type.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/model/PatientSearchRequestModel.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/viewModel/PatientSearchViewModel.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/viewModel/auth_view_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/viewModel/project_view_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart';
|
||||||
|
import 'package:doctor_app_flutter/models/patient/patient_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/routes.dart';
|
||||||
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
||||||
|
import 'package:doctor_app_flutter/screens/patients/patient_search/header.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/patients/PatientCard.dart';
|
||||||
|
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/errors/error_message.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/loader/gif_loader_dialog_utils.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/text_fields/app_text_form_field.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/text_fields/text_fields_utils.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:hexcolor/hexcolor.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
// ignore: must_be_immutable
|
||||||
|
class OutPatientsScreen extends StatefulWidget {
|
||||||
|
final patientSearchForm;
|
||||||
|
final selectedType;
|
||||||
|
final isAppbar;
|
||||||
|
final arrivalType;
|
||||||
|
final isView;
|
||||||
|
final PatientType selectedPatientType;
|
||||||
|
final PatientSearchRequestModel patientSearchRequestModel;
|
||||||
|
final bool isSearchWithKeyInfo;
|
||||||
|
final bool isSearch;
|
||||||
|
final bool isInpatient;
|
||||||
|
final bool isSearchAndOut;
|
||||||
|
final String searchKey;
|
||||||
|
|
||||||
|
|
||||||
|
OutPatientsScreen(
|
||||||
|
{this.patientSearchForm,
|
||||||
|
this.selectedType,
|
||||||
|
this.isAppbar = true,
|
||||||
|
this.arrivalType,
|
||||||
|
this.isView,
|
||||||
|
this.selectedPatientType,
|
||||||
|
this.patientSearchRequestModel,
|
||||||
|
this.isSearchWithKeyInfo = true,
|
||||||
|
this.isSearch = false,
|
||||||
|
this.isInpatient = false, this.searchKey, this.isSearchAndOut=false});
|
||||||
|
|
||||||
|
@override
|
||||||
|
_OutPatientsScreenState createState() => _OutPatientsScreenState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _OutPatientsScreenState extends State<OutPatientsScreen> {
|
||||||
|
int clinicId;
|
||||||
|
AuthViewModel authProvider;
|
||||||
|
|
||||||
|
List<String> _locations = []; //['All', 'Today', 'Tomorrow', 'Next Week'];
|
||||||
|
|
||||||
|
int _activeLocation = 0;
|
||||||
|
String patientType;
|
||||||
|
String patientTypeTitle;
|
||||||
|
var selectedFilter = 1;
|
||||||
|
String arrivalType;
|
||||||
|
ProjectViewModel projectsProvider;
|
||||||
|
var isView;
|
||||||
|
final _controller = TextEditingController();
|
||||||
|
|
||||||
|
PatientModel patient;
|
||||||
|
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
authProvider = Provider.of(context);
|
||||||
|
_locations = [
|
||||||
|
TranslationBase.of(context).today,
|
||||||
|
TranslationBase.of(context).tomorrow,
|
||||||
|
TranslationBase.of(context).nextWeek,
|
||||||
|
];
|
||||||
|
final screenSize = MediaQuery.of(context).size;
|
||||||
|
|
||||||
|
|
||||||
|
return BaseView<PatientSearchViewModel>(
|
||||||
|
onModelReady: (model) async {
|
||||||
|
await model.getOutPatient(widget.patientSearchRequestModel);
|
||||||
|
},
|
||||||
|
builder: (_, model, w) => AppScaffold(
|
||||||
|
appBarTitle: "Search Patient",
|
||||||
|
isShowAppBar: true,
|
||||||
|
appBar: HeaderInSearch(
|
||||||
|
title: "My Out patient",
|
||||||
|
|
||||||
|
),
|
||||||
|
baseViewModel: model,
|
||||||
|
body: Column(
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
// color: Colors.red,
|
||||||
|
height: screenSize.height * 0.070,
|
||||||
|
decoration: TextFieldsUtils
|
||||||
|
.containerBorderDecoration(
|
||||||
|
Color(0Xffffffff),
|
||||||
|
Color(0xFFCCCCCC),
|
||||||
|
borderRadius: 4,
|
||||||
|
borderWidth: 0),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
|
children: _locations.map((item) {
|
||||||
|
bool _isActive = _locations[_activeLocation] == item
|
||||||
|
? true
|
||||||
|
: false;
|
||||||
|
|
||||||
|
return Expanded(
|
||||||
|
child: InkWell(
|
||||||
|
onTap: () async {
|
||||||
|
setState(() {
|
||||||
|
_activeLocation = _locations.indexOf(item);
|
||||||
|
});
|
||||||
|
GifLoaderDialogUtils.showMyDialog(context);
|
||||||
|
await model.getPatientBasedOnDate(item: item,
|
||||||
|
selectedPatientType: widget.selectedPatientType,
|
||||||
|
patientSearchRequestModel: widget
|
||||||
|
.patientSearchRequestModel,
|
||||||
|
isSearchWithKeyInfo: widget.isSearchWithKeyInfo);
|
||||||
|
GifLoaderDialogUtils.hideDialog(context);
|
||||||
|
},
|
||||||
|
child: Center(
|
||||||
|
child: Container(
|
||||||
|
height: screenSize.height * 0.070,
|
||||||
|
decoration: TextFieldsUtils.containerBorderDecoration(
|
||||||
|
_isActive
|
||||||
|
? Color(0xFFD02127 /*B8382B*/)
|
||||||
|
: Color(0xFFEAEAEA),
|
||||||
|
_isActive ? Color(0xFFD02127) : Color(0xFFEAEAEA),
|
||||||
|
borderRadius: 4,
|
||||||
|
borderWidth: 0),
|
||||||
|
child: Center(
|
||||||
|
child: AppText(
|
||||||
|
item,
|
||||||
|
fontSize: SizeConfig.textMultiplier * 1.8,
|
||||||
|
color: _isActive ? Colors.white : Color(0xFF2B353E),
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}).toList(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
SizedBox(height: 18.5),
|
||||||
|
Container(
|
||||||
|
width: SizeConfig.screenWidth * 0.9,
|
||||||
|
height: 75,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.all(
|
||||||
|
Radius.circular(6.0)),
|
||||||
|
border: Border.all(
|
||||||
|
width: 1.0,
|
||||||
|
color: HexColor("#CCCCCC"),
|
||||||
|
),
|
||||||
|
color: Colors.white),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment:
|
||||||
|
CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsets.only(
|
||||||
|
left: 10, top: 10),
|
||||||
|
child: AppText(
|
||||||
|
TranslationBase.of(
|
||||||
|
context)
|
||||||
|
.searchPatientName,
|
||||||
|
fontSize: 13,
|
||||||
|
)),
|
||||||
|
AppTextFormField(
|
||||||
|
// focusNode: focusProject,
|
||||||
|
controller: _controller,
|
||||||
|
borderColor: Colors.white,
|
||||||
|
prefix: IconButton(
|
||||||
|
icon: Icon(
|
||||||
|
DoctorApp.filter_1,
|
||||||
|
color: Colors.black,
|
||||||
|
),
|
||||||
|
iconSize: 20,
|
||||||
|
padding:
|
||||||
|
EdgeInsets.only(
|
||||||
|
bottom: 30),
|
||||||
|
),
|
||||||
|
onChanged: (String str) {
|
||||||
|
model.searchData(str);
|
||||||
|
}),
|
||||||
|
])),
|
||||||
|
SizedBox(
|
||||||
|
height: 10.0,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Container(
|
||||||
|
child: model.filterData.isEmpty
|
||||||
|
? Center(
|
||||||
|
child: ErrorMessage(
|
||||||
|
error: TranslationBase.of(context)
|
||||||
|
.youDontHaveAnyPatient,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: ListView.builder(
|
||||||
|
scrollDirection: Axis.vertical,
|
||||||
|
shrinkWrap: true,
|
||||||
|
itemCount: model.filterData.length,
|
||||||
|
itemBuilder: (BuildContext ctxt, int index) {
|
||||||
|
return Padding(
|
||||||
|
padding: EdgeInsets.all(8.0),
|
||||||
|
child: PatientCard(
|
||||||
|
patientInfo: model.filterData[index],
|
||||||
|
patientType: patientType,
|
||||||
|
arrivalType: arrivalType,
|
||||||
|
isFromSearch:widget.isSearchAndOut,
|
||||||
|
isInpatient: widget.isInpatient,
|
||||||
|
onTap: () {
|
||||||
|
// TODO change the parameter to daynamic
|
||||||
|
Navigator.of(context).pushNamed(
|
||||||
|
PATIENTS_PROFILE,
|
||||||
|
arguments: {
|
||||||
|
"patient": model.filterData[index],
|
||||||
|
"patientType": "1",
|
||||||
|
"from": widget
|
||||||
|
.patientSearchRequestModel.from,
|
||||||
|
"to": widget
|
||||||
|
.patientSearchRequestModel.from,
|
||||||
|
"isSearch": false,
|
||||||
|
"isInpatient": false,
|
||||||
|
"arrivalType": "7",
|
||||||
|
"isSearchAndOut": false,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// isFromSearch: widget.isSearch,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
})),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue