39280-vm/frontend/src/pages/reminders/reminders-edit.tsx
2026-03-23 16:25:45 +00:00

891 lines
9.4 KiB
TypeScript

import { mdiChartTimelineVariant, mdiUpload } from '@mdi/js'
import Head from 'next/head'
import React, { ReactElement, useEffect, useState } from 'react'
import DatePicker from "react-datepicker";
import "react-datepicker/dist/react-datepicker.css";
import dayjs from "dayjs";
import CardBox from '../../components/CardBox'
import LayoutAuthenticated from '../../layouts/Authenticated'
import SectionMain from '../../components/SectionMain'
import SectionTitleLineWithButton from '../../components/SectionTitleLineWithButton'
import { getPageTitle } from '../../config'
import { Field, Form, Formik } from 'formik'
import FormField from '../../components/FormField'
import BaseDivider from '../../components/BaseDivider'
import BaseButtons from '../../components/BaseButtons'
import BaseButton from '../../components/BaseButton'
import FormCheckRadio from '../../components/FormCheckRadio'
import FormCheckRadioGroup from '../../components/FormCheckRadioGroup'
import FormFilePicker from '../../components/FormFilePicker'
import FormImagePicker from '../../components/FormImagePicker'
import { SelectField } from "../../components/SelectField";
import { SelectFieldMany } from "../../components/SelectFieldMany";
import { SwitchField } from '../../components/SwitchField'
import {RichTextField} from "../../components/RichTextField";
import { update, fetch } from '../../stores/reminders/remindersSlice'
import { useAppDispatch, useAppSelector } from '../../stores/hooks'
import { useRouter } from 'next/router'
import {saveFile} from "../../helpers/fileSaver";
import dataFormatter from '../../helpers/dataFormatter';
import ImageField from "../../components/ImageField";
import {hasPermission} from "../../helpers/userPermissions";
const EditRemindersPage = () => {
const router = useRouter()
const dispatch = useAppDispatch()
const initVals = {
patient: null,
event: null,
channel: '',
scheduled_at: new Date(),
state: '',
message: '',
recipient_user: null,
accounts: null,
}
const [initialValues, setInitialValues] = useState(initVals)
const { reminders } = useAppSelector((state) => state.reminders)
const { currentUser } = useAppSelector((state) => state.auth);
const { id } = router.query
useEffect(() => {
dispatch(fetch({ id: id }))
}, [id])
useEffect(() => {
if (typeof reminders === 'object') {
setInitialValues(reminders)
}
}, [reminders])
useEffect(() => {
if (typeof reminders === 'object') {
const newInitialVal = {...initVals};
Object.keys(initVals).forEach(el => newInitialVal[el] = (reminders)[el])
setInitialValues(newInitialVal);
}
}, [reminders])
const handleSubmit = async (data) => {
await dispatch(update({ id: id, data }))
await router.push('/reminders/reminders-list')
}
return (
<>
<Head>
<title>{getPageTitle('Edit reminders')}</title>
</Head>
<SectionMain>
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={'Edit reminders'} main>
{''}
</SectionTitleLineWithButton>
<CardBox>
<Formik
enableReinitialize
initialValues={initialValues}
onSubmit={(values) => handleSubmit(values)}
>
<Form>
<FormField label='Patient' labelFor='patient'>
<Field
name='patient'
id='patient'
component={SelectField}
options={initialValues.patient}
itemRef={'patients'}
showField={'last_name'}
></Field>
</FormField>
<FormField label='Event' labelFor='event'>
<Field
name='event'
id='event'
component={SelectField}
options={initialValues.event}
itemRef={'calendar_events'}
showField={'title_text'}
></Field>
</FormField>
<FormField label="Channel" labelFor="channel">
<Field name="channel" id="channel" component="select">
<option value="push">push</option>
<option value="sms">sms</option>
<option value="email">email</option>
<option value="voice">voice</option>
</Field>
</FormField>
<FormField
label="Scheduledat"
>
<DatePicker
dateFormat="yyyy-MM-dd hh:mm"
showTimeSelect
selected={initialValues.scheduled_at ?
new Date(
dayjs(initialValues.scheduled_at).format('YYYY-MM-DD hh:mm'),
) : null
}
onChange={(date) => setInitialValues({...initialValues, 'scheduled_at': date})}
/>
</FormField>
<FormField label="State" labelFor="state">
<Field name="state" id="state" component="select">
<option value="pending">pending</option>
<option value="sent">sent</option>
<option value="failed">failed</option>
<option value="cancelled">cancelled</option>
</Field>
</FormField>
<FormField label="Message" hasTextareaHeight>
<Field name="message" as="textarea" placeholder="Message" />
</FormField>
<FormField label='Recipientuser' labelFor='recipient_user'>
<Field
name='recipient_user'
id='recipient_user'
component={SelectField}
options={initialValues.recipient_user}
itemRef={'users'}
showField={'firstName'}
></Field>
</FormField>
<FormField label='accounts' labelFor='accounts'>
<Field
name='accounts'
id='accounts'
component={SelectField}
options={initialValues.accounts}
itemRef={'accounts'}
showField={'name'}
></Field>
</FormField>
<BaseDivider />
<BaseButtons>
<BaseButton type="submit" color="info" label="Submit" />
<BaseButton type="reset" color="info" outline label="Reset" />
<BaseButton type='reset' color='danger' outline label='Cancel' onClick={() => router.push('/reminders/reminders-list')}/>
</BaseButtons>
</Form>
</Formik>
</CardBox>
</SectionMain>
</>
)
}
EditRemindersPage.getLayout = function getLayout(page: ReactElement) {
return (
<LayoutAuthenticated
permission={'UPDATE_REMINDERS'}
>
{page}
</LayoutAuthenticated>
)
}
export default EditRemindersPage