123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113 |
- import 'dart:convert';
- import 'package:fis_jsonrpc/rpc.dart';
- import 'package:flutter/material.dart';
- import 'package:get/get.dart';
- import 'package:vitalapp/components/button.dart';
- import 'package:vitalapp/components/dialog_input.dart';
- import 'package:vitalapp/components/dialog_number.dart';
- import 'package:vitalapp/components/dynamic_drawer.dart';
- import 'package:vitalapp/managers/interfaces/cachedRecord.dart';
- import 'package:vitalapp/managers/interfaces/template.dart';
- import 'package:vitalapp/pages/check/models/form.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_blood_pressure.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_blood_sugar.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_body_temperature.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_body_weight.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_boold_oxygen.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_check_box.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_health_guidance_check_box.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_input.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_number_input.dart';
- import 'dart:math' as math;
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_radio.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_radio_score.dart';
- import 'package:vitalapp/pages/check/widgets/device_controller.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_table.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_toxic_substance.dart';
- import 'package:vitalapp/pages/check/widgets/exam_configurable/exam_urinalys.dart';
- import 'package:vitalapp/pages/check/widgets/exam_table/homecare_bed_history_from.dart';
- import 'package:vitalapp/pages/check/widgets/exam_table/hospitalization_history_from.dart';
- import 'package:vitalapp/pages/check/widgets/exam_table/inoculate_history_from.dart';
- import 'package:vitalapp/pages/check/widgets/exam_table/main_medication_status_from.dart';
- import 'package:vitalapp/pages/check/widgets/title_clip_path.dart';
- class ConfigurableCard extends StatefulWidget {
- final String cardKey;
- final Future<bool> Function(String, String, dynamic) callBack;
- final Widget? followUpWidget;
- final String? patientCode;
- final String? examData;
- const ConfigurableCard({
- super.key,
- required this.cardKey,
- required this.callBack,
- this.followUpWidget,
- this.patientCode,
- this.examData,
- });
- @override
- State<ConfigurableCard> createState() => _ConfigurableFormState();
- }
- class _ConfigurableFormState extends State<ConfigurableCard> {
- /// 当前最新的模板的键值对
- Map<String, dynamic> templateRelation = {};
- /// 当前模板数据
- List<FormObject> currentTemplate = [];
- /// 当前title的下标
- int currentTitleIndex = 0;
- Map<String, dynamic> formValue = {};
- var scaffoldKey = GlobalKey<ScaffoldState>();
- final _templateManager = Get.find<ITemplateManager>();
- final _cachedRecordManager = Get.find<ICachedRecordManager>();
- final arrowHeight = math.tan(120 / 180) * 19;
- List<String> deviceList = ['Temp', 'GLU', 'NIBP', 'SpO2', 'BMI'];
- Map<String, dynamic> deviceCached = {};
- Map currentTable = {};
- List<String> storeTypeList = [
- 'Qi_Score',
- 'Yang_Score',
- 'Yin_Score',
- 'Tan_Score',
- 'Shi_Score',
- 'Xue_Score',
- 'Qiyu_Score',
- 'Te_Score',
- 'Ping_Score'
- ];
- @override
- void initState() {
- Get.put(DeviceController());
- super.initState();
- WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
- if (mounted) {
- initTemplate();
- }
- });
- }
- @override
- void dispose() {
- super.dispose();
- }
- Future<void> initTemplate() async {
- Get.find<DeviceController>().busy = true;
- await fetchTemplateIndex();
- await fetchTemplate(widget.cardKey);
- await fetchTemplateData();
- // GlobalCacheHelper.setItem(GlobalCacheHelper.keys.followUpEditTemp, "");//TODO
- Get.find<DeviceController>().busy = false;
- // if (!['GXY', 'TNB'].contains(widget.cardKey)) {
- // fetchTemplateData();
- // }
- }
- /// 读取健康检测的缓存
- Future<String?> readCachedRecord(String currentDevice) async {
- if (widget.patientCode == null) {
- return null;
- }
- String? value = await _cachedRecordManager.readCachedRecord(
- currentDevice,
- widget.patientCode!,
- 'ZLZS',
- );
- return value;
- }
- /// 读取体检的缓存
- Future<String?> readCachedCheck() async {
- if (widget.patientCode == null) {
- return null;
- }
- String? value = await _cachedRecordManager.readCachedRecord(
- widget.cardKey,
- widget.patientCode!,
- 'exam',
- );
- return value;
- }
- Future<void> readCached() async {
- for (var element in deviceList) {
- String? value = await readCachedRecord(element);
- if (value?.isNotEmpty ?? false) {
- deviceCached.addAll(jsonDecode(value!));
- }
- }
- }
- Future<void> fetchTemplateIndex() async {
- try {
- /// 获取模板的键值对
- String? templates;
- templates =
- await _templateManager.readTemplateRelation('templateRelation');
- templateRelation = jsonDecode(templates!);
- setState(() {});
- } catch (error) {
- print('发生错误: $error');
- }
- }
- Future<void> fetchTemplateData() async {
- // / 这逻辑需要优化
- if (widget.examData?.isNotEmpty ?? false) {
- formValue = jsonDecode(widget.examData!);
- return;
- }
- String? value = await readCachedCheck();
- await readCached();
- if (deviceCached.isNotEmpty) {
- formValue = deviceCached;
- setState(() {});
- return;
- }
- if (value?.isNotEmpty ?? false) {
- formValue = jsonDecode(value!);
- }
- formValue.forEach(
- (key, value) {
- if (value is List<String>) {
- formValue[key] = List<String>.from(formValue[key]);
- } else if (value is List<Map>) {
- formValue[key] = List<Map>.from(formValue[key]);
- }
- },
- );
- setState(() {});
- }
- Future<void> fetchTemplate(String key) async {
- try {
- if (templateRelation[key] == null) {
- currentTemplate = [];
- setState(() {});
- return;
- }
- var template =
- await _templateManager.readTemplate(templateRelation[key]!);
- String templateContent =
- TemplateDTO.fromJson(jsonDecode(template!)).templateContent!;
- List<Map<String, dynamic>> list =
- jsonDecode(templateContent).cast<Map<String, dynamic>>();
- for (var i in list) {
- if (i['children'] != null) {
- List<FormObject> currentChildren = [];
- for (var j in i['children']) {
- currentChildren.add(FormObject.fromJson(j));
- }
- i['children'] = currentChildren;
- }
- var item = FormObject.fromJson(i);
- currentTemplate.add(item);
- }
- if (widget.cardKey == 'LNRZYYJKGLFWJL') {
- for (var element in storeTypeList) {
- formValue[element] =
- calculatePhysicalFitnessScore(element, element == 'Ping_Score');
- }
- }
- setState(() {});
- } catch (error) {
- print('发生错误: $error');
- }
- }
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- key: scaffoldKey,
- endDrawer: VDynamicDrawerWrapper(scaffoldKey: scaffoldKey),
- resizeToAvoidBottomInset: false,
- body: Column(
- children: [
- Row(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- const SizedBox(
- width: 16,
- ),
- Container(
- margin: const EdgeInsets.only(top: 8),
- width: 130,
- height: 54,
- child: VButton(
- onTap: () => {Get.back()},
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: const [
- Icon(Icons.arrow_back_ios_new, size: 24),
- SizedBox(
- width: 8,
- ),
- Text("返回", style: TextStyle(fontSize: 20)),
- ],
- ),
- ),
- ),
- Expanded(
- child: Container(
- padding:
- const EdgeInsets.symmetric(vertical: 16, horizontal: 10),
- child: _buildTitleList(),
- ),
- ),
- Container(
- margin: const EdgeInsets.only(top: 8, right: 16),
- width: 130,
- height: 54,
- child: VButton(
- onTap: () async {
- final result = await widget.callBack(
- widget.cardKey,
- templateRelation[widget.cardKey]!,
- jsonEncode(formValue),
- );
- if (result) {
- Get.back();
- }
- },
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: const [
- Icon(Icons.save, size: 24),
- SizedBox(
- width: 8,
- ),
- Text("保存", style: TextStyle(fontSize: 20)),
- ],
- ),
- ),
- ),
- ],
- ),
- Expanded(
- child: Stack(
- children: [
- Row(
- mainAxisAlignment: MainAxisAlignment.start,
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- _buildDiagram(),
- _buildContent(),
- ],
- ),
- if (currentTitleIndex != currentTemplate.length - 1)
- _buildPositionedButton(
- () async {
- currentTitleIndex++;
- setState(() {});
- },
- right: -30,
- ),
- ],
- ),
- )
- ],
- ),
- );
- }
- Widget buildSingleItem(Widget item, int span) {
- return FractionallySizedBox(
- widthFactor: span == 24 ? 1 : 0.5,
- child: item,
- );
- }
- Widget buildWidget(FormObject? currentFormObject) {
- Map<String, Widget Function(FormObject)> widgetMap = {
- 'checkbox': _buildCheckBox,
- 'numberInput': _buildNumberInput,
- 'input': _buildInput,
- 'radio': _buildRadio,
- 'radioScore': _buildRadioScore,
- 'bloodPressure': _buildBloodPressure,
- 'bodyTemperature': _buildBodyTemperature,
- 'weight': _buildBodyWeight,
- 'sugar': _buildBodySugar,
- 'bloodOxygen': _buildBloodOxygen,
- 'healthGuidanceCheckBox': _buildHealthGuidanceCheckBox,
- 'medicalHistory': _buildMedicalHistory,
- 'homecareBedHistor': _buildHomecareBedHistory,
- 'table': _buildMainMedicationHistory,
- 'inoculateHistory': _buildInoculateHistory,
- 'safetyPrecautions': _buildToxicSubstance,
- 'urinalys': _buildUrinalysis,
- };
- Widget Function(FormObject) builder =
- widgetMap[currentFormObject?.type] ?? _buildInput;
- return builder(currentFormObject!);
- }
- Widget flowCardList() {
- int itemCount = 0;
- bool currentTemplateOptionsIsNotEmpty = false;
- if (currentTemplate.isNotEmpty) {
- itemCount = currentTemplate[currentTitleIndex].children?.length ?? 0;
- currentTemplateOptionsIsNotEmpty =
- currentTemplate[currentTitleIndex].options?.isNotEmpty ?? false;
- }
- List<Widget> items = List.generate(itemCount, (index) {
- FormObject? currentFormObject =
- currentTemplate[currentTitleIndex].children?[index];
- int span = currentFormObject?.span ?? 12;
- //父结构的options不等于空或null
- if (true) {
- //子结构的options若是无值则取父类的options值
- if (currentTemplateOptionsIsNotEmpty) {
- currentFormObject!.options =
- currentTemplate[currentTitleIndex].options;
- }
- }
- return buildSingleItem(buildWidget(currentFormObject), span);
- });
- return Scrollbar(
- thumbVisibility: true,
- child: SingleChildScrollView(
- child: Container(
- alignment: Alignment.topCenter,
- padding: const EdgeInsets.all(15),
- child: Wrap(
- runSpacing: 20, // 纵向元素间距
- alignment: WrapAlignment.start,
- children: items,
- ),
- ),
- ),
- );
- }
- /// title标签
- Widget _buildTitleList() {
- return Wrap(
- runSpacing: 10, // 设置子小部件之间的间距
- spacing: -12,
- alignment: WrapAlignment.start,
- children: currentTemplate.asMap().entries.map(
- (e) {
- /// TODO 这边需要改下
- MaterialColor currentColors = Colors.grey;
- e.value.children?.forEach((element) {
- if (formValue.containsKey(element.key)) {
- if (!(widget.cardKey == 'LNRZYYJKGLFWJL' &&
- element.parentKey == 'Ping_Score')) {
- currentColors = Colors.green;
- } else if (element.key == 'qusition1') {
- {
- currentColors = Colors.green;
- }
- }
- }
- });
- return TitleClipRect(
- title: e.value.label ?? '',
- color: currentTitleIndex == e.key ? null : currentColors,
- arrowHeight: arrowHeight,
- clickTitle: () {
- // if (widget.cardKey == 'LNRZYYJKGLFWJL' &&
- // currentTitleIndex == 0 &&
- // formValue.length != 33) {
- // PromptBox.toast('题目未答全,不可进行指导');
- // } else
- {
- currentTitleIndex = e.key;
- setState(() {});
- }
- },
- );
- },
- ).toList(),
- );
- }
- /// 示意图
- Widget _buildDiagram() {
- if (widget.cardKey == 'ZYYYFMYGHYFJZS') {
- return const SizedBox();
- }
- return Expanded(
- flex: 1,
- child: Stack(
- children: [
- /// TODO BAKA-优化
- _buildImageCard(),
- if (currentTitleIndex != 0)
- _buildPositionedButton(
- () async {
- if (currentTitleIndex == 0) {
- Get.back();
- } else {
- currentTitleIndex--;
- setState(() {});
- }
- },
- left: -30,
- ),
- ],
- ),
- );
- }
- Widget _buildImageCard() {
- // if (currentTemplate[currentTitleIndex].key == 'Temperature') {
- // return Container(
- // alignment: Alignment.topCenter,
- // margin: const EdgeInsets.all(16).copyWith(top: 0),
- // child: Image.asset(
- // 'assets/images/healthCheck/temp.png',
- // height: double.infinity,
- // fit: BoxFit.fitWidth, // 设置图像的适应方式
- // ),
- // );
- // }
- if (['GXY', 'TNB', 'LNRZYYJKGLFWJL'].contains(widget.cardKey)) {
- return widget.followUpWidget!;
- } else {
- return Container(
- alignment: Alignment.topCenter,
- margin: const EdgeInsets.all(16).copyWith(top: 0),
- child: Image.asset(
- 'assets/images/exam/normalMeasurementChart.png',
- height: double.infinity,
- fit: BoxFit.fitWidth, // 设置图像的适应方式
- ),
- );
- }
- }
- /// 按钮
- Widget _buildPositionedButton(Function onTap, {double? right, double? left}) {
- return Positioned(
- right: right,
- left: left,
- bottom: 0,
- top: 0,
- child: Container(
- width: 100,
- height: 100,
- alignment: Alignment.centerLeft,
- child: InkWell(
- onTap: () => onTap.call(),
- child: Container(
- width: 100,
- height: 100,
- padding: const EdgeInsets.all(20),
- alignment:
- right == null ? Alignment.centerRight : Alignment.centerLeft,
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(50),
- color: Theme.of(context).primaryColor.withOpacity(
- .8,
- ),
- ),
- child: Image.asset(
- right == null
- ? "assets/images/exam/left-arrow.png"
- : "assets/images/exam/right-arrow.png",
- width: 40,
- height: 40,
- color: Colors.white,
- fit: BoxFit.contain,
- ),
- ),
- ),
- ),
- );
- }
- /// 主页面
- Widget _buildContent() {
- return Expanded(
- flex: 2,
- child: flowCardList(),
- );
- }
- /// 多选框组件
- Widget _buildCheckBox(FormObject currentFormObject) {
- List<Option> options = currentFormObject.options ?? [];
- List<dynamic> currentSelectedCheckBox =
- formValue[currentFormObject.key!] ?? [];
- dynamic disabledValue = currentFormObject.disabledValue;
- void selectCheckBoxChange(Option e) {
- if (currentSelectedCheckBox.contains(e.value)) {
- currentSelectedCheckBox.remove(e.value);
- } else {
- if (disabledValue == e.value) {
- currentSelectedCheckBox = [disabledValue];
- } else {
- if (currentSelectedCheckBox.contains(disabledValue)) {
- // PromptBox.toast('选项冲突');
- } else {
- currentSelectedCheckBox.add(e.value ?? '');
- }
- }
- }
- formValue[currentFormObject.key!] = currentSelectedCheckBox;
- setState(() {});
- }
- return ExamCheckBox(
- options: options,
- currentSelectedCheckBox: currentSelectedCheckBox,
- currentFormObject: currentFormObject,
- selectCheckBoxChange: selectCheckBoxChange,
- disbaleOthers: currentSelectedCheckBox.contains(disabledValue),
- );
- }
- ///中医药健康指导多选框组件
- Widget _buildHealthGuidanceCheckBox(FormObject currentFormObject) {
- List<Option> options = currentFormObject.options ?? [];
- List<dynamic> currentSelectedCheckBox =
- formValue[currentFormObject.key!] ?? [];
- // var templateFromObj = currentTemplate.firstWhere(
- // (element) => element.label!.contains());
- var currentScoreKey = currentFormObject.groupKeys != null
- ? currentFormObject.groupKeys![0]
- : '';
- int score = formValue[currentScoreKey] ?? 0;
- String judgmentResult = getJudgmentResult(currentScoreKey);
- void selectCheckBoxChange(Option e) {
- if (currentSelectedCheckBox.contains(e.value)) {
- currentSelectedCheckBox.remove(e.value);
- } else {
- currentSelectedCheckBox.add(e.value ?? '');
- }
- formValue[currentFormObject.key!] = currentSelectedCheckBox;
- setState(() {});
- }
- return ExamHealthGuidanceCheckBox(
- options: options,
- currentSelectedCheckBox: currentSelectedCheckBox,
- currentFormObject: currentFormObject,
- selectCheckBoxChange: selectCheckBoxChange,
- score: score,
- judgmentResult: judgmentResult,
- );
- }
- String getJudgmentResult(String storeKey) {
- var score = formValue[storeKey] ?? 0;
- if (storeKey == 'Ping_Score') {
- if (score >= 17) {
- bool is8 = true;
- bool is10 = true;
- for (var e in storeTypeList) {
- if (formValue[e] != null && e != 'Ping_Score') {
- var otherScore = formValue[e];
- if (otherScore > 8) {
- if (is8) {
- is8 = false;
- }
- if (otherScore > 10) {
- is10 = false;
- }
- }
- if (!is10) {
- break;
- }
- }
- }
- if (is8) {
- return '是';
- } else if (is10) {
- return '基本是';
- }
- }
- return '否';
- } else {
- if (score >= 11) {
- return '是';
- } else if (9 == score && score == 10) {
- return '倾向是';
- } else {
- return '否';
- }
- }
- }
- /// 数字输入框组件
- Widget _buildNumberInput(FormObject currentFormObject) {
- String currentInputValue = formValue[currentFormObject.key!] ?? '';
- if ((formValue['Height']?.isNotEmpty ?? false) &&
- (formValue['Weight']?.isNotEmpty ?? false)) {
- formValue['Bmi'] = (double.parse(formValue['Weight']) /
- ((double.parse(formValue['Height']) / 100) *
- (double.parse(formValue['Height']) / 100)))
- .toStringAsFixed(2);
- }
- Future<void> commonInput() async {
- String? result = await VDialogNumber(
- title: currentFormObject.label,
- initialValue: formValue[currentFormObject.key],
- ).show();
- if (result?.isNotEmpty ?? false) {
- formValue[currentFormObject.key!] = result;
- currentInputValue = formValue[currentFormObject.key!];
- setState(() {});
- }
- }
- void specialInput(String value) {
- formValue[currentFormObject.key!] = value;
- currentInputValue = formValue[currentFormObject.key!];
- setState(() {});
- }
- return ExamNumberInput(
- currentInputValue: currentInputValue,
- commonInput: commonInput,
- specialInput: specialInput,
- currentFormObject: currentFormObject,
- );
- }
- Widget _buildInput(FormObject currentFormObject) {
- String currentInputValue = formValue[currentFormObject.key!] ?? '';
- Future<void> commonInput() async {
- String? result = await VDialogInput(
- title: currentFormObject.label,
- initialValue: formValue[currentFormObject.key],
- ).show();
- if (result?.isNotEmpty ?? false) {
- formValue[currentFormObject.key!] = result;
- currentInputValue = formValue[currentFormObject.key!];
- setState(() {});
- }
- }
- return ExamInput(
- currentInputValue: currentInputValue,
- commonInput: commonInput,
- currentFormObject: currentFormObject,
- );
- }
- /// 血压组件
- Widget _buildBloodPressure(FormObject currentFormObject) {
- Map currentValue = formValue[currentFormObject.key!] ?? {};
- print(currentFormObject.key!);
- void bloodPressure(Map value) {
- currentValue = value;
- formValue[currentFormObject.key!] = currentValue;
- // setState(() {});
- }
- return ExamBloodPressure(
- currentValue: currentValue,
- bloodPressure: bloodPressure,
- );
- }
- Widget _buildUrinalysis(FormObject currentFormObject) {
- Map currentValue = formValue[currentFormObject.key!] ?? {};
- void urinalysis(Map value) {
- currentValue = value;
- formValue[currentFormObject.key!] = currentValue;
- setState(() {});
- }
- return ExamUrinalysis(
- currentValue: currentValue,
- urinalysis: urinalysis,
- );
- }
- /// 单选框组件
- Widget _buildRadio(FormObject currentFormObject) {
- List<Option> options = currentFormObject.options ?? [];
- String currentSelected = formValue[currentFormObject.key!] ?? "";
- void selectRaidoChange(Option e) {
- currentSelected = e.value ?? '';
- formValue[currentFormObject.key!] = currentSelected;
- if (widget.cardKey == 'LNRZYYJKGLFWJL') {
- var pingScore = [
- 'qusition1',
- 'qusition2',
- 'qusition4',
- 'qusition5',
- 'qusition13'
- ];
- var isPingScore = pingScore.contains(currentFormObject.key);
- formValue[currentFormObject.groupKeys?[0]] =
- calculatePhysicalFitnessScore(
- currentFormObject.groupKeys?[0], false);
- if (isPingScore) {
- formValue['Ping_Score'] =
- calculatePhysicalFitnessScore('Ping_Score', isPingScore);
- }
- }
- setState(() {});
- }
- return ExamRadio(
- options: options,
- currentFormObject: currentFormObject,
- selectRaidoChange: selectRaidoChange,
- currentSelected: currentSelected,
- );
- }
- int calculatePhysicalFitnessScore(String currentScoreKey, bool isPingScore) {
- int score = 0;
- var currentTemplateStoreList = currentTemplate[0].children?.where(
- (element) =>
- element.groupKeys != null &&
- element.groupKeys!.contains(currentScoreKey));
- if (!isPingScore) {
- for (var element in currentTemplateStoreList!) {
- if (formValue[element.key!] != null) {
- score += int.parse(formValue[element.key!]!);
- }
- }
- } else {
- int index = 0;
- for (var element in currentTemplateStoreList!) {
- if (index == 0) {
- if (formValue[element.key!] != null) {
- score += int.parse(formValue[element.key!]!);
- }
- } else {
- score += formValue[element.key!] != null
- ? (6 - int.parse(formValue[element.key!]!))
- : 0;
- }
- index++;
- }
- }
- return score;
- }
- Widget _buildRadioScore(FormObject currentFormObject) {
- print(currentFormObject.toJson());
- List<Option> options = currentFormObject.options ?? [];
- String currentSelected =
- formValue[currentFormObject.childrenKey!.first] ?? "";
- String currentScore = formValue[currentFormObject.childrenKey!.last] ?? "";
- void selectRaidoChange(Option e) {
- currentSelected = e.value ?? '';
- formValue[currentFormObject.childrenKey!.first] = currentSelected;
- setState(() {});
- }
- void changeScore(String? score) {
- currentScore = score ?? '';
- formValue[currentFormObject.childrenKey!.last] = currentScore;
- setState(() {});
- }
- return ExamRadioScore(
- options: options,
- currentFormObject: currentFormObject,
- selectRaidoChange: selectRaidoChange,
- currentSelected: currentSelected,
- changeScore: changeScore,
- currentScore: currentScore,
- );
- }
- /// 体温组件
- Widget _buildBodyTemperature(FormObject currentFormObject) {
- String currentInputValue = formValue[currentFormObject.key!] ?? '';
- void bodyTemperatureInput(String value) {
- formValue[currentFormObject.key!] = value;
- currentInputValue = formValue[currentFormObject.key!];
- setState(() {});
- }
- return ExamBodyTemperature(
- currentInputValue: currentInputValue,
- bodyTemperatureInput: bodyTemperatureInput,
- currentFormObject: currentFormObject,
- );
- }
- Widget _buildToxicSubstance(FormObject currentFormObject) {
- List<Option> options = currentFormObject.options ?? [];
- String currentValue = formValue[currentFormObject.childrenKey!.first] ?? "";
- Map? currentSelectedToxicSubstance =
- formValue[currentFormObject.childrenKey!.last];
- void selectRaidoChange(Map e) {
- currentSelectedToxicSubstance = e;
- formValue[currentFormObject.childrenKey!.last] =
- currentSelectedToxicSubstance;
- setState(() {});
- }
- void selectValueChange(String e) {
- currentValue = e;
- formValue[currentFormObject.childrenKey!.first] = currentValue;
- setState(() {});
- }
- return ExamToxicSubstance(
- currentFormObject: currentFormObject,
- currentSelectedToxicSubstance: currentSelectedToxicSubstance,
- currentValue: currentValue,
- options: options,
- selectRadioChange: selectRaidoChange,
- selectValueChange: selectValueChange,
- );
- }
- /// 血氧
- Widget _buildBloodOxygen(FormObject currentFormObject) {
- Map<String, dynamic> currentValue = formValue;
- void bloodOxygenInput(Map<String, dynamic> bloodOxygen) {
- formValue['Pulse_Frequency'] = bloodOxygen['Pulse_Frequency'];
- formValue['Spo2'] = bloodOxygen['Spo2'];
- currentValue = bloodOxygen;
- setState(() {});
- }
- return ExamBloodOxygen(
- currentValue: currentValue,
- bloodOxygenInput: bloodOxygenInput,
- );
- }
- /// 住院史
- Widget _buildMedicalHistory(FormObject currentFormObject) {
- List<dynamic> currentValue = formValue[currentFormObject.key!] ?? [];
- int currentId = currentValue.length + 1;
- void resultChange(Map result) {
- currentValue.add(result);
- formValue[currentFormObject.key!] = currentValue;
- setState(() {});
- }
- void editResult(EditTableValue result) {
- currentValue[result.id! - 1] = result.value;
- formValue[currentFormObject.key!] = currentValue;
- setState(() {});
- }
- Future<void> addTableData() async {
- Get.dialog(
- HospitalizationHistoryForm(
- fromResult: (result) => resultChange(result),
- currentId: currentId,
- ),
- );
- }
- Future<void> editTableData(EditTableValue editTableValue) async {
- Get.dialog(
- HospitalizationHistoryForm(
- fromResult: (result) => editResult(result),
- currentId: editTableValue.id!,
- admissionJson: editTableValue.value,
- ),
- );
- }
- return ExamTable(
- tableThList: const ['序号', '入院日期', '出院日期', '原因', '医疗机构名称', '病案号', '操作'],
- currentFormObject: currentFormObject,
- currentValue: currentValue,
- addTableData: addTableData,
- editTableData: (value) => editTableData(value),
- );
- }
- /// 家庭病床史
- Widget _buildHomecareBedHistory(FormObject currentFormObject) {
- List<dynamic> currentValue = formValue[currentFormObject.key!] ?? [];
- int currentId = currentValue.length + 1;
- void resultChange(Map result) {
- for (var i in result.keys) {
- if (result[i] == "") {
- return;
- }
- }
- currentValue.add(result);
- formValue[currentFormObject.key!] = currentValue;
- setState(() {});
- }
- void editResult(EditTableValue result) {
- currentValue[result.id! - 1] = result.value;
- formValue[currentFormObject.key!] = currentValue;
- setState(() {});
- }
- Future<void> addTableData() async {
- Get.dialog(
- HomecareBedHistoryFrom(
- fromResult: (result) => resultChange(result),
- currentId: currentId,
- ),
- );
- }
- Future<void> editTableData(EditTableValue editTableValue) async {
- Get.dialog(
- HomecareBedHistoryFrom(
- fromResult: (result) => editResult(result),
- currentId: editTableValue.id!,
- admissionJson: editTableValue.value,
- ),
- );
- }
- return ExamTable(
- tableThList: const ['序号', '建床日期', '撤床日期', '原因', '医疗机构名称', '病案号', '操作'],
- currentFormObject: currentFormObject,
- currentValue: currentValue,
- addTableData: addTableData,
- editTableData: (value) => editTableData(value),
- );
- }
- Widget _buildMainMedicationHistory(FormObject currentFormObject) {
- List<dynamic> currentValue = formValue[currentFormObject.key!] ?? [];
- int currentId = currentValue.length + 1;
- void resultChange(Map result) {
- currentValue.add(result);
- formValue[currentFormObject.key!] = currentValue;
- setState(() {});
- }
- void editResult(EditTableValue result) {
- currentValue[result.id! - 1] = result.value;
- formValue[currentFormObject.key!] = currentValue;
- setState(() {});
- }
- Future<void> addTableData() async {
- Get.dialog(
- MainMedicationStatusFrom(
- fromResult: (result) => resultChange(result),
- currentId: currentId,
- ),
- );
- }
- Future<void> editTableData(EditTableValue editTableValue) async {
- Get.dialog(
- MainMedicationStatusFrom(
- fromResult: (result) => editResult(result),
- currentId: editTableValue.id!,
- admissionJson: editTableValue.value,
- ),
- );
- }
- return ExamTable(
- tableThList: const ['序号', '药物名称', '用法', '用量', '用药时间', '服药依从性', '操作'],
- currentFormObject: currentFormObject,
- currentValue: currentValue,
- addTableData: addTableData,
- editTableData: (value) => editTableData(value),
- );
- }
- Widget _buildInoculateHistory(FormObject currentFormObject) {
- List<dynamic> currentValue = formValue[currentFormObject.key!] ?? [];
- int currentId = currentValue.length + 1;
- void resultChange(Map result) {
- currentValue.add(result);
- formValue[currentFormObject.key!] = currentValue;
- setState(() {});
- }
- void editResult(EditTableValue result) {
- currentValue[result.id! - 1] = result.value;
- formValue[currentFormObject.key!] = currentValue;
- setState(() {});
- }
- Future<void> addTableData() async {
- Get.dialog(
- InoculateHistoryFrom(
- fromResult: (result) => resultChange(result),
- currentId: currentId,
- ),
- );
- }
- Future<void> editTableData(EditTableValue editTableValue) async {
- Get.dialog(
- InoculateHistoryFrom(
- fromResult: (result) => editResult(result),
- currentId: editTableValue.id!,
- admissionJson: editTableValue.value,
- ),
- );
- }
- return ExamTable(
- tableThList: const ['序号', '疫苗名称', '接种日期', '接种机构', '操作'],
- currentFormObject: currentFormObject,
- currentValue: currentValue,
- addTableData: addTableData,
- editTableData: (value) => editTableData(value),
- );
- }
- /// 体重
- Widget _buildBodyWeight(FormObject currentFormObject) {
- String currentInputValue = formValue[currentFormObject.key!] ?? '';
- void bodyWeightInput(String value) {
- formValue[currentFormObject.key!] = value;
- currentInputValue = formValue[currentFormObject.key!];
- setState(() {});
- }
- return ExamBodyWeight(
- currentInputValue: currentInputValue,
- bodyWeightInput: bodyWeightInput,
- currentFormObject: currentFormObject,
- );
- }
- /// 血糖
- Widget _buildBodySugar(FormObject currentFormObject) {
- String currentInputValue = formValue[currentFormObject.key!] ?? '';
- void bloodSugarInput(String value) {
- formValue[currentFormObject.key!] = value;
- currentInputValue = formValue[currentFormObject.key!];
- setState(() {});
- }
- return ExamBloodSugar(
- currentInputValue: currentInputValue,
- bloodSugarInput: bloodSugarInput,
- currentFormObject: currentFormObject,
- );
- }
- }
|