-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
852 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,59 @@ | ||
import React from "react"; | ||
import React, { useEffect } from "react"; | ||
|
||
import VaccinesTable from "./vaccinesTable"; | ||
import { useNavigate } from "react-router"; | ||
import { useDispatch } from "react-redux"; | ||
import { useTranslation } from "react-i18next"; | ||
import { | ||
deleteVaccine, | ||
deleteVaccineReset, | ||
getVaccines, | ||
} from "../../../../state/vaccines/actions"; | ||
import { getVaccineTypes } from "../../../../state/types/vaccines"; | ||
import { VaccineDTO } from "../../../../generated"; | ||
import { PATHS } from "../../../../consts"; | ||
import Button from "../../button/Button"; | ||
|
||
export const Vaccines = () => { | ||
return <VaccinesTable />; | ||
const navigate = useNavigate(); | ||
const dispatch = useDispatch(); | ||
const { t } = useTranslation(); | ||
|
||
useEffect(() => { | ||
dispatch(getVaccines()); | ||
dispatch(getVaccineTypes()); | ||
|
||
return () => { | ||
dispatch(deleteVaccineReset()); | ||
}; | ||
}, [dispatch]); | ||
|
||
const handleEdit = (row: VaccineDTO) => { | ||
navigate(PATHS.admin_vaccines_edit.replace(":code", row.code!), { | ||
state: row, | ||
}); | ||
}; | ||
|
||
const handleDelete = (row: VaccineDTO) => { | ||
dispatch(deleteVaccine(row.code ?? "")); | ||
}; | ||
|
||
return ( | ||
<VaccinesTable | ||
onEdit={handleEdit} | ||
onDelete={handleDelete} | ||
headerActions={ | ||
<Button | ||
onClick={() => { | ||
navigate(PATHS.admin_vaccines_new); | ||
}} | ||
type="button" | ||
variant="contained" | ||
color="primary" | ||
> | ||
{t("vaccine.addVaccine")} | ||
</Button> | ||
} | ||
/> | ||
); | ||
}; |
40 changes: 40 additions & 0 deletions
40
src/components/accessories/admin/vaccines/editVaccine/EditVaccine.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { useTranslation } from "react-i18next"; | ||
import VaccineForm from "../vaccineForm/VaccineForm"; | ||
import React from "react"; | ||
import { getInitialFields } from "../vaccineForm/consts"; | ||
import { useDispatch, useSelector } from "react-redux"; | ||
import { VaccineDTO } from "../../../../../generated"; | ||
import { ApiResponse } from "../../../../../state/types"; | ||
import { updateVaccine } from "../../../../../state/vaccines/actions"; | ||
import { IState } from "../../../../../types"; | ||
import { Navigate, useLocation, useParams } from "react-router"; | ||
import { PATHS } from "../../../../../consts"; | ||
|
||
export const EditVaccine = () => { | ||
const dispatch = useDispatch(); | ||
const { t } = useTranslation(); | ||
const { state }: { state: VaccineDTO | undefined } = useLocation(); | ||
const { code } = useParams(); | ||
const update = useSelector<IState, ApiResponse<VaccineDTO>>( | ||
(state) => state.vaccines.update | ||
); | ||
|
||
const handleSubmit = (value: VaccineDTO) => { | ||
dispatch(updateVaccine({ ...value, lock: state?.lock })); | ||
}; | ||
|
||
if (state?.code?.toString() !== code?.toString()) { | ||
return <Navigate to={PATHS.admin_vaccines} />; | ||
} | ||
|
||
return ( | ||
<VaccineForm | ||
creationMode={false} | ||
onSubmit={handleSubmit} | ||
isLoading={!!update.isLoading} | ||
resetButtonLabel={t("common.cancel")} | ||
submitButtonLabel={t("vaccine.updateVaccine")} | ||
fields={getInitialFields(state)} | ||
/> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./EditVaccine"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
export * from "./Vaccines"; | ||
export * from "./editVaccine"; | ||
export * from "./newVaccine"; |
32 changes: 32 additions & 0 deletions
32
src/components/accessories/admin/vaccines/newVaccine/NewVaccine.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { useTranslation } from "react-i18next"; | ||
import VaccineForm from "../vaccineForm/VaccineForm"; | ||
import React from "react"; | ||
import { getInitialFields } from "../vaccineForm/consts"; | ||
import { useDispatch, useSelector } from "react-redux"; | ||
import { VaccineDTO } from "../../../../../generated"; | ||
import { createVaccine } from "../../../../../state/vaccines/actions"; | ||
import { IState } from "../../../../../types"; | ||
import { ApiResponse } from "../../../../../state/types"; | ||
|
||
export const NewVaccine = () => { | ||
const dispatch = useDispatch(); | ||
const { t } = useTranslation(); | ||
const create = useSelector<IState, ApiResponse<VaccineDTO>>( | ||
(state) => state.vaccines.create | ||
); | ||
|
||
const handleSubmit = (value: VaccineDTO) => { | ||
dispatch(createVaccine(value)); | ||
}; | ||
|
||
return ( | ||
<VaccineForm | ||
creationMode | ||
onSubmit={handleSubmit} | ||
isLoading={!!create.isLoading} | ||
resetButtonLabel={t("common.cancel")} | ||
submitButtonLabel={t("vaccine.saveVaccine")} | ||
fields={getInitialFields(undefined)} | ||
/> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./NewVaccine"; |
249 changes: 249 additions & 0 deletions
249
src/components/accessories/admin/vaccines/vaccineForm/VaccineForm.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,249 @@ | ||
import { useFormik } from "formik"; | ||
import { get, has } from "lodash"; | ||
import React, { | ||
FC, | ||
useCallback, | ||
useEffect, | ||
useMemo, | ||
useRef, | ||
useState, | ||
} from "react"; | ||
import { useTranslation } from "react-i18next"; | ||
import { object, string } from "yup"; | ||
import warningIcon from "../../../../../assets/warning-icon.png"; | ||
import { | ||
formatAllFieldValues, | ||
getFromFields, | ||
} from "../../../../../libraries/formDataHandling/functions"; | ||
import checkIcon from "../../../../../assets/check-icon.png"; | ||
import Button from "../../../button/Button"; | ||
import ConfirmationDialog from "../../../confirmationDialog/ConfirmationDialog"; | ||
import TextField from "../../../textField/TextField"; | ||
import "./styles.scss"; | ||
import { IVaccineFormProps } from "./types"; | ||
import { useDispatch, useSelector } from "react-redux"; | ||
import { IState } from "../../../../../types"; | ||
import InfoBox from "../../../infoBox/InfoBox"; | ||
import { useNavigate } from "react-router"; | ||
import { IVaccineState } from "../../../../../state/vaccines/types"; | ||
import { PATHS } from "../../../../../consts"; | ||
import { | ||
createVaccineReset, | ||
updateVaccineReset, | ||
} from "../../../../../state/vaccines/actions"; | ||
import AutocompleteField from "../../../autocompleteField/AutocompleteField"; | ||
import { getVaccineTypes } from "../../../../../state/types/vaccines/actions"; | ||
|
||
const VaccineForm: FC<IVaccineFormProps> = ({ | ||
fields, | ||
onSubmit, | ||
creationMode, | ||
submitButtonLabel, | ||
resetButtonLabel, | ||
isLoading, | ||
}) => { | ||
const dispatch = useDispatch(); | ||
const { t } = useTranslation(); | ||
const navigate = useNavigate(); | ||
const infoBoxRef = useRef<HTMLDivElement>(null); | ||
const [openResetConfirmation, setOpenResetConfirmation] = useState(false); | ||
|
||
const vaccineStore = useSelector<IState, IVaccineState>( | ||
(state) => state.vaccines | ||
); | ||
|
||
const vaccinesTypeState = useSelector( | ||
(state: IState) => state.types.vaccines.getVaccineTypes | ||
); | ||
|
||
const vaccinesTypeOptions = useMemo( | ||
() => | ||
vaccinesTypeState.data?.map((item) => ({ | ||
value: item.code, | ||
label: item.description, | ||
})) ?? [], | ||
[vaccinesTypeState.data] | ||
); | ||
|
||
const errorMessage = useMemo( | ||
() => | ||
(creationMode | ||
? vaccineStore.create.error?.message | ||
: vaccineStore.update.error?.message) ?? t("common.somethingwrong"), | ||
[ | ||
creationMode, | ||
t, | ||
vaccineStore.create.error?.message, | ||
vaccineStore.update.error?.message, | ||
] | ||
); | ||
|
||
const initialValues = getFromFields(fields, "value"); | ||
|
||
const validationSchema = object({ | ||
code: string().required(t("common.required")), | ||
description: string().required(t("common.required")), | ||
vaccineType: string().required(t("common.required")), | ||
}); | ||
|
||
const formik = useFormik({ | ||
initialValues, | ||
validationSchema, | ||
enableReinitialize: true, | ||
onSubmit: (values) => { | ||
const formattedValues = formatAllFieldValues(fields, values); | ||
formattedValues.vaccineType = vaccinesTypeState.data?.find( | ||
(item) => item.code === values.vaccineType | ||
); | ||
onSubmit(formattedValues as any); | ||
}, | ||
}); | ||
|
||
const { setFieldValue, handleBlur } = formik; | ||
|
||
const isValid = (fieldName: string): boolean => { | ||
return has(formik.touched, fieldName) && has(formik.errors, fieldName); | ||
}; | ||
|
||
const getErrorText = (fieldName: string): string => { | ||
return has(formik.touched, fieldName) | ||
? (get(formik.errors, fieldName) as string) | ||
: ""; | ||
}; | ||
|
||
const handleResetConfirmation = () => { | ||
setOpenResetConfirmation(false); | ||
navigate(-1); | ||
}; | ||
|
||
const onBlurCallback = useCallback( | ||
(fieldName: string) => | ||
(e: React.FocusEvent<HTMLDivElement>, value: string) => { | ||
handleBlur(e); | ||
setFieldValue(fieldName, value); | ||
}, | ||
[handleBlur, setFieldValue] | ||
); | ||
|
||
const cleanUp = useCallback(() => { | ||
if (creationMode) { | ||
dispatch(createVaccineReset()); | ||
} else { | ||
dispatch(updateVaccineReset()); | ||
} | ||
}, [creationMode, dispatch]); | ||
|
||
useEffect(() => { | ||
dispatch(getVaccineTypes()); | ||
}, [dispatch]); | ||
|
||
useEffect(() => { | ||
return cleanUp; | ||
}, [cleanUp]); | ||
|
||
return ( | ||
<div className="vaccineForm"> | ||
<form className="vaccineForm__form" onSubmit={formik.handleSubmit}> | ||
<div className="row start-sm center-xs"> | ||
<div className="vaccineForm__item"> | ||
<TextField | ||
field={formik.getFieldProps("code")} | ||
theme="regular" | ||
label={t("vaccine.code")} | ||
isValid={isValid("code")} | ||
errorText={getErrorText("code")} | ||
onBlur={formik.handleBlur} | ||
type="text" | ||
disabled={isLoading || !creationMode} | ||
/> | ||
</div> | ||
<div className="vaccineForm__item"> | ||
<AutocompleteField | ||
fieldName="vaccineType" | ||
fieldValue={formik.values.vaccineType} | ||
label={t("vaccine.vaccinetype")} | ||
isValid={isValid("vaccineType")} | ||
errorText={getErrorText("vaccineType")} | ||
onBlur={onBlurCallback("vaccineType")} | ||
options={vaccinesTypeOptions} | ||
loading={vaccinesTypeState.status === "LOADING"} | ||
disabled={isLoading} | ||
/> | ||
</div> | ||
<div className="vaccineForm__item"> | ||
<TextField | ||
field={formik.getFieldProps("description")} | ||
theme="regular" | ||
label={t("vaccine.description")} | ||
isValid={isValid("description")} | ||
errorText={getErrorText("description")} | ||
onBlur={formik.handleBlur} | ||
type="text" | ||
disabled={isLoading} | ||
/> | ||
</div> | ||
</div> | ||
|
||
<div className="vaccineForm__buttonSet"> | ||
<div className="submit_button"> | ||
<Button type="submit" variant="contained" disabled={isLoading}> | ||
{submitButtonLabel} | ||
</Button> | ||
</div> | ||
<div className="reset_button"> | ||
<Button | ||
type="reset" | ||
variant="text" | ||
disabled={isLoading} | ||
onClick={() => setOpenResetConfirmation(true)} | ||
> | ||
{resetButtonLabel} | ||
</Button> | ||
</div> | ||
</div> | ||
<ConfirmationDialog | ||
isOpen={openResetConfirmation} | ||
title={resetButtonLabel.toUpperCase()} | ||
info={ | ||
creationMode | ||
? t("vaccine.cancelCreation") | ||
: t("vaccine.cancelUpdate") | ||
} | ||
icon={warningIcon} | ||
primaryButtonLabel={t("common.ok")} | ||
secondaryButtonLabel={t("common.discard")} | ||
handlePrimaryButtonClick={handleResetConfirmation} | ||
handleSecondaryButtonClick={() => setOpenResetConfirmation(false)} | ||
/> | ||
{(creationMode | ||
? vaccineStore.create.status === "FAIL" | ||
: vaccineStore.update.status === "FAIL") && ( | ||
<div ref={infoBoxRef} className="info-box-container"> | ||
<InfoBox type="error" message={errorMessage} /> | ||
</div> | ||
)} | ||
<ConfirmationDialog | ||
isOpen={ | ||
!!(creationMode | ||
? vaccineStore.create.hasSucceeded | ||
: vaccineStore.update.hasSucceeded) | ||
} | ||
title={creationMode ? t("vaccine.created") : t("vaccine.updated")} | ||
icon={checkIcon} | ||
info={ | ||
creationMode | ||
? t("vaccine.createSuccess") | ||
: t("vaccine.updateSuccess", { code: formik.values.code }) | ||
} | ||
primaryButtonLabel="Ok" | ||
handlePrimaryButtonClick={() => { | ||
navigate(PATHS.admin_vaccines); | ||
}} | ||
handleSecondaryButtonClick={() => ({})} | ||
/> | ||
</form> | ||
</div> | ||
); | ||
}; | ||
|
||
export default VaccineForm; |
Oops, something went wrong.