начал переделывать поэтапное создание приема

This commit is contained in:
Андрей Дувакин 2025-06-01 13:50:40 +05:00
parent 20f754fbc6
commit 08c3bb5c7b
2 changed files with 203 additions and 83 deletions

View File

@ -11,7 +11,8 @@ import {
Input,
InputNumber,
Modal,
Result, Row,
Result,
Row,
Select,
Spin,
Steps,
@ -20,20 +21,20 @@ import {
import useAppointmentFormModal from "./useAppointmentFormModal.js";
import useAppointmentFormModalUI from "./useAppointmentFormModalUI.js";
import LoadingIndicator from "../../../../../../Widgets/LoadingIndicator.jsx";
import {DefaultModalPropType} from "../../../../../../../Types/defaultModalPropType.js";
import {useMemo} from "react";
import PropTypes from "prop-types";
dayjs.extend(utc);
dayjs.extend(timezone);
dayjs.tz.setDefault('Europe/Moscow');
const AppointmentFormModal = ({visible, onCancel}) => {
const AppointmentFormModal = ({onCancel}) => {
const appointmentFormModalData = useAppointmentFormModal();
const appointmentFormModalUI = useAppointmentFormModalUI(
visible,
onCancel,
appointmentFormModalData.createAppointment,
appointmentFormModalData.updateAppointment
appointmentFormModalData.updateAppointment,
appointmentFormModalData.patients,
);
if (appointmentFormModalData.isError) {
@ -46,17 +47,21 @@ const AppointmentFormModal = ({visible, onCancel}) => {
);
}
const patientsItems = appointmentFormModalData.filteredPatients.map((patient) => ({
const patientsItems = appointmentFormModalUI.filteredPatients.map((patient) => ({
key: patient.id,
label: `${patient.last_name} ${patient.first_name} (${appointmentFormModalUI.getDateString(patient.birthday)})`,
children: <div>
<p><b>Пациент:</b> {patient.last_name} {patient.first_name}</p>
<p><b>Дата рождения:</b> {appointmentFormModalUI.getDateString(patient.birthday)}</p>
<p><b>Диагноз:</b> {patient.diagnosis}</p>
<p><b>Email:</b> {patient.email}</p>
<p><b>Телефон:</b> {patient.phone}</p>
<Button type="primary" onClick={() => appointmentFormModalUI.setSelectedPatient(patient)}>Выбрать</Button>
</div>,
children: (
<div>
<p><b>Пациент:</b> {patient.last_name} {patient.first_name}</p>
<p><b>Дата рождения:</b> {appointmentFormModalUI.getDateString(patient.birthday)}</p>
<p><b>Диагноз:</b> {patient.diagnosis || 'Не указан'}</p>
<p><b>Email:</b> {patient.email || 'Не указан'}</p>
<p><b>Телефон:</b> {patient.phone || 'Не указан'}</p>
<Button type="primary" onClick={() => appointmentFormModalUI.setSelectedPatient(patient)}>
Выбрать
</Button>
</div>
),
}));
const SelectPatientStep = useMemo(() => {
@ -65,11 +70,9 @@ const AppointmentFormModal = ({visible, onCancel}) => {
<Typography.Text strong>
{appointmentFormModalUI.selectedPatient.last_name} {appointmentFormModalUI.selectedPatient.first_name}
</Typography.Text>
<p><b>Дата
рождения:</b> {appointmentFormModalUI.getSelectedPatientBirthdayString()}
</p>
<p><b>Email:</b> {appointmentFormModalUI.selectedPatient.email}</p>
<p><b>Телефон:</b> {appointmentFormModalUI.selectedPatient.phone}</p>
<p><b>Дата рождения:</b> {appointmentFormModalUI.getSelectedPatientBirthdayString()}</p>
<p><b>Email:</b> {appointmentFormModalUI.selectedPatient.email || 'Не указан'}</p>
<p><b>Телефон:</b> {appointmentFormModalUI.selectedPatient.phone || 'Не указан'}</p>
<Button
type="primary"
onClick={appointmentFormModalUI.resetPatient}
@ -87,17 +90,13 @@ const AppointmentFormModal = ({visible, onCancel}) => {
style={appointmentFormModalUI.searchInputStyle}
allowClear
/>
<div style={appointmentFormModalUI.chooseContainerStyle}>
<Collapse
items={patientsItems}
/>
<Collapse items={patientsItems}/>
</div>
</>
);
}, [appointmentFormModalUI, patientsItems]);
const AppointmentStep = useMemo(() => {
return (
<Form
@ -112,30 +111,12 @@ const AppointmentFormModal = ({visible, onCancel}) => {
days_until_the_next_appointment: appointmentFormModalUI.selectedAppointment.days_until_the_next_appointment,
results: appointmentFormModalUI.selectedAppointment.results,
}
: {}
: {
patient_id: appointmentFormModalUI.selectedPatient?.id,
}
}
layout="vertical"
>
<Form.Item
name="patient_id"
label="Пациент"
rules={[{required: true, message: 'Выберите пациента'}]}
>
<Select
showSearch
optionFilterProp="children"
filterOption={(input, option) =>
option.children.join(' ').toLowerCase().includes(input.toLowerCase())
}
placeholder="Выберите пациента"
>
{appointmentFormModalData.patients.map(patient => (
<Select.Option key={patient.id} value={patient.id}>
{patient.last_name} {patient.first_name}
</Select.Option>
))}
</Select>
</Form.Item>
<Form.Item
name="type_id"
label="Тип приема"
@ -159,9 +140,9 @@ const AppointmentFormModal = ({visible, onCancel}) => {
<Form.Item
name="days_until_the_next_appointment"
label="Дней до следующего приема"
rules={[{type: 'number', min: 1, message: 'Введите неотрицательное число'}]}
rules={[{type: 'number', min: 0, message: 'Введите неотрицательное число'}]}
>
<InputNumber min={1} defaultValue={1} style={{width: '100%'}}/>
<InputNumber min={0} style={{width: '100%'}}/>
</Form.Item>
<Form.Item
name="results"
@ -169,22 +150,47 @@ const AppointmentFormModal = ({visible, onCancel}) => {
>
<ReactQuill theme="snow" style={{height: 150, marginBottom: 40}}/>
</Form.Item>
<Form.Item>
<Button type="primary" htmlType="submit">
{appointmentFormModalUI.selectedAppointment ? 'Сохранить' : 'Создать'}
</Button>
</Form.Item>
</Form>
);
}, [appointmentFormModalData.appointmentTypes, appointmentFormModalData.patients, appointmentFormModalUI.form, appointmentFormModalUI.handleOk, appointmentFormModalUI.selectedAppointment]);
}, [
appointmentFormModalData,
appointmentFormModalUI,
]);
const steps = [{
title: 'Выбор пациента', content: SelectPatientStep,
}, {
title: 'Заполнение информации о приеме', content: AppointmentStep,
}, {
title: 'Подтверждение', content: ConfirmStep,
}];
const ConfirmStep = useMemo(() => {
const values = appointmentFormModalUI.form.getFieldsValue();
const patient = appointmentFormModalData.patients.find(p => p.id === values.patient_id);
const appointmentType = appointmentFormModalData.appointmentTypes.find(t => t.id === values.type_id);
return (
<div style={appointmentFormModalUI.blockStepStyle}>
<Typography.Title level={4}>Подтверждение</Typography.Title>
<p><b>Пациент:</b> {patient ? `${patient.last_name} ${patient.first_name}` : 'Не выбран'}</p>
<p><b>Тип приема:</b> {appointmentType ? appointmentType.name : 'Не выбран'}</p>
<p><b>Время
приема:</b> {values.appointment_datetime ? dayjs(values.appointment_datetime).tz('Europe/Moscow').format('DD.MM.YYYY HH:mm') : 'Не указано'}
</p>
<p><b>Дней до следующего приема:</b> {values.days_until_the_next_appointment || 'Не указано'}</p>
<p><b>Результаты приема:</b></p>
<div dangerouslySetInnerHTML={{__html: values.results || 'Не указаны'}}/>
</div>
);
}, [appointmentFormModalUI, appointmentFormModalData]);
const steps = [
{
title: 'Выбор пациента',
content: SelectPatientStep,
},
{
title: 'Заполнение информации о приеме',
content: AppointmentStep,
},
{
title: 'Подтверждение',
content: ConfirmStep,
},
];
return (
<>
@ -196,8 +202,9 @@ const AppointmentFormModal = ({visible, onCancel}) => {
open={appointmentFormModalUI.modalVisible}
onCancel={appointmentFormModalUI.handleCancel}
footer={null}
width={appointmentFormModalUI.modalWidth}
>
{appointmentFormModalData.loading ? (
{appointmentFormModalData.isLoading ? (
<div style={appointmentFormModalUI.loadingContainerStyle}>
<Spin size="large"/>
</div>
@ -207,7 +214,6 @@ const AppointmentFormModal = ({visible, onCancel}) => {
</div>
)}
{!appointmentFormModalUI.screenXS && (
<Steps
current={appointmentFormModalUI.currentStep}
@ -243,6 +249,8 @@ const AppointmentFormModal = ({visible, onCancel}) => {
);
};
AppointmentFormModal.propTypes = DefaultModalPropType;
AppointmentFormModal.propTypes = {
onCancel: PropTypes.func.isRequired,
};
export default AppointmentFormModal;

View File

@ -1,32 +1,59 @@
import { Form, notification } from "antd";
import { useDispatch, useSelector } from "react-redux";
import { closeModal } from "../../../../../../../Redux/Slices/appointmentsSlice.js";
import {useEffect, useState} from "react";
import {Form, notification} from "antd";
import {useDispatch, useSelector} from "react-redux";
import {closeModal} from "../../../../../../../Redux/Slices/appointmentsSlice.js";
import {useEffect, useMemo, useState} from "react";
import dayjs from "dayjs";
import { useGetAppointmentsQuery } from "../../../../../../../Api/appointmentsApi.js";
import {useGetAppointmentsQuery} from "../../../../../../../Api/appointmentsApi.js";
import {Grid} from "antd";
const useAppointmentFormModalUI = (visible, onCancel, createAppointment, updateAppointment) => {
const {useBreakpoint} = Grid;
const useAppointmentFormModalUI = (onCancel, createAppointment, updateAppointment, patients) => {
const dispatch = useDispatch();
const { modalVisible, selectedAppointment } = useSelector(state => state.appointmentsUI);
const {modalVisible, selectedAppointment} = useSelector(state => state.appointmentsUI);
const [form] = Form.useForm();
const screens = useBreakpoint();
const [selectedPatient, setSelectedPatient] = useState(null);
const [currentStep, setCurrentStep] = useState(0);
const [searchPatientString, setSearchPatientString] = useState("");
const [formValues, setFormValues] = useState({});
const resetPatient = () => setSelectedPatient(null);
const getDateString = (date) => {
return new Date(date).toLocaleDateString('ru-RU');
};
const { data: appointments = [] } = useGetAppointmentsQuery(undefined, {
const {data: appointments = []} = useGetAppointmentsQuery(undefined, {
pollingInterval: 20000,
});
const blockStepStyle = {marginBottom: 16};
const searchInputStyle = {marginBottom: 16};
const chooseContainerStyle = {maxHeight: 400, overflowY: "auto"};
const loadingContainerStyle = {display: "flex", justifyContent: "center", alignItems: "center", height: 200};
const stepsContentStyle = {marginBottom: 16};
const stepsIndicatorStyle = {marginBottom: 16};
const footerRowStyle = {marginTop: 16};
const footerButtonStyle = {marginLeft: 8};
const screenXS = !screens.sm;
const direction = screenXS ? "vertical" : "horizontal";
const filteredPatients = useMemo(() => patients.filter((patient) => {
const searchLower = searchPatientString.toLowerCase();
return Object.values(patient)
.filter(value => typeof value === "string")
.some(value => value.toLowerCase().includes(searchLower));
}), [patients, searchPatientString]);
useEffect(() => {
if (visible) {
if (modalVisible) {
form.resetFields();
setSelectedPatient(null);
setCurrentStep(0);
setSearchPatientString("");
setFormValues({});
if (selectedAppointment) {
const patient = appointments.find(p => p.id === selectedAppointment.patient_id);
setSelectedPatient(patient);
setCurrentStep(1); // При редактировании начинаем со второго шага
form.setFieldsValue({
patient_id: selectedAppointment.patient_id,
type_id: selectedAppointment.type_id,
@ -38,16 +65,70 @@ const useAppointmentFormModalUI = (visible, onCancel, createAppointment, updateA
});
}
}
}, [visible, selectedAppointment, form]);
}, [modalVisible, selectedAppointment, form, appointments]);
const handleSetSearchPatientString = (e) => {
setSearchPatientString(e.target.value);
};
const getDateString = (date) => {
return date ? dayjs(date).format('DD.MM.YYYY') : 'Не указано';
};
const getSelectedPatientBirthdayString = () => {
return selectedPatient ? getDateString(selectedPatient.birthday) : 'Не выбран';
};
const resetPatient = () => {
setSelectedPatient(null);
form.setFieldsValue({patient_id: undefined});
};
const modalWidth = useMemo(() => screenXS ? 700 : "90%", [screenXS]);
const handleClickNextButton = async () => {
if (currentStep === 0) {
if (!selectedPatient) {
notification.error({
message: 'Ошибка',
description: 'Пожалуйста, выберите пациента.',
placement: 'topRight',
});
return;
}
form.setFieldsValue({patient_id: selectedPatient.id});
setCurrentStep(1);
} else if (currentStep === 1) {
try {
const values = await form.validateFields();
setFormValues(values);
setCurrentStep(2);
} catch (error) {
notification.error({
message: 'Ошибка валидации',
description: 'Пожалуйста, заполните все обязательные поля.',
placement: 'topRight',
});
}
} else if (currentStep === 2) {
await handleOk();
}
};
const handleClickBackButton = () => {
if (currentStep > 0) {
setCurrentStep(currentStep - 1);
}
};
const handleOk = async () => {
try {
const values = await form.validateFields();
const values = formValues;
// Проверка пересечения времени
const appointmentTime = values.appointment_datetime;
const hasConflict = appointments.some(app =>
app.id !== selectedAppointment?.id && // Исключаем текущий прием при редактировании
app.id !== selectedAppointment?.id &&
dayjs(app.appointment_datetime).tz('Europe/Moscow').isSame(appointmentTime, 'minute')
);
@ -79,7 +160,7 @@ const useAppointmentFormModalUI = (visible, onCancel, createAppointment, updateA
}
if (selectedAppointment) {
await updateAppointment({ id: selectedAppointment.id, data }).unwrap();
await updateAppointment({id: selectedAppointment.id, data}).unwrap();
notification.success({
message: 'Прием обновлен',
description: 'Прием успешно обновлен.',
@ -96,6 +177,9 @@ const useAppointmentFormModalUI = (visible, onCancel, createAppointment, updateA
dispatch(closeModal());
form.resetFields();
setSelectedPatient(null);
setCurrentStep(0);
setFormValues({});
} catch (error) {
notification.error({
message: 'Ошибка',
@ -107,19 +191,47 @@ const useAppointmentFormModalUI = (visible, onCancel, createAppointment, updateA
const handleCancel = () => {
form.resetFields();
setSelectedPatient(null);
setCurrentStep(0);
setSearchPatientString("");
setFormValues({});
onCancel();
};
const disableBackButton = currentStep === 0;
const disableNextButton = currentStep === 0 && !selectedPatient;
const nextButtonText = currentStep === 2 ? (selectedAppointment ? 'Сохранить' : 'Создать') : 'Далее';
return {
form,
modalVisible,
selectedAppointment,
selectedPatient,
setSelectedPatient,
currentStep,
searchPatientString,
handleSetSearchPatientString,
filteredPatients,
handleOk,
handleCancel,
resetPatient,
getDateString,
getSelectedPatientBirthdayString,
handleClickNextButton,
handleClickBackButton,
modalWidth,
disableBackButton,
disableNextButton,
nextButtonText,
blockStepStyle,
searchInputStyle,
chooseContainerStyle,
loadingContainerStyle,
stepsContentStyle,
stepsIndicatorStyle,
footerRowStyle,
footerButtonStyle,
screenXS,
direction,
};
};