mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
113 lines
3.2 KiB
TypeScript
113 lines
3.2 KiB
TypeScript
import { FormEvent, useEffect } from 'react';
|
|
import { useSearchParams } from 'react-router-dom';
|
|
import {
|
|
Button,
|
|
Drawer,
|
|
DrawerBody,
|
|
DrawerCloseButton,
|
|
DrawerContent,
|
|
DrawerFooter,
|
|
DrawerHeader,
|
|
DrawerOverlay,
|
|
useDisclosure,
|
|
} from '@chakra-ui/react';
|
|
|
|
import ParamInput from './ParamInput';
|
|
import { ParamField } from './types';
|
|
|
|
import style from './ViewParamsEditor.module.scss';
|
|
|
|
type ViewParamsObj = { [key: string]: string | FormDataEntryValue };
|
|
|
|
/**
|
|
* Makes a new URLSearchParams object from the given params object
|
|
*/
|
|
const getURLSearchParamsFromObj = (paramsObj: ViewParamsObj, paramFields: ParamField[]) => {
|
|
const defaultValues = paramFields.reduce<Record<string, string>>((acc, { id, defaultValue }) => {
|
|
acc[id] = String(defaultValue);
|
|
return acc;
|
|
}, {});
|
|
|
|
return Object.entries(paramsObj).reduce((newSearchParams, [id, value]) => {
|
|
if (typeof value === 'string' && value.length && defaultValues[id] !== value) {
|
|
newSearchParams.set(id, value);
|
|
}
|
|
return newSearchParams;
|
|
}, new URLSearchParams());
|
|
};
|
|
|
|
interface EditFormDrawerProps {
|
|
paramFields: ParamField[];
|
|
}
|
|
|
|
// TODO: this is a good candidate for memoisation, but needs the paramFields to be stable
|
|
export default function ViewParamsEditor({ paramFields }: EditFormDrawerProps) {
|
|
const [searchParams, setSearchParams] = useSearchParams();
|
|
const { isOpen, onClose, onOpen } = useDisclosure();
|
|
|
|
useEffect(() => {
|
|
const isEditing = searchParams.get('edit');
|
|
|
|
if (isEditing === 'true') {
|
|
return onOpen();
|
|
}
|
|
}, [searchParams, onOpen]);
|
|
|
|
const handleClose = () => {
|
|
searchParams.delete('edit');
|
|
setSearchParams(searchParams);
|
|
|
|
onClose();
|
|
};
|
|
|
|
const resetParams = () => {
|
|
setSearchParams();
|
|
onClose();
|
|
};
|
|
|
|
const onParamsFormSubmit = (formEvent: FormEvent<HTMLFormElement>) => {
|
|
formEvent.preventDefault();
|
|
|
|
const newParamsObject = Object.fromEntries(new FormData(formEvent.currentTarget));
|
|
const newSearchParams = getURLSearchParamsFromObj(newParamsObject, paramFields);
|
|
setSearchParams(newSearchParams);
|
|
|
|
onClose();
|
|
};
|
|
|
|
return (
|
|
<Drawer isOpen={isOpen} placement='right' onClose={handleClose} variant='ontime' size='lg'>
|
|
<DrawerOverlay />
|
|
<DrawerContent>
|
|
<DrawerHeader>
|
|
<DrawerCloseButton size='lg' />
|
|
Customise
|
|
</DrawerHeader>
|
|
|
|
<DrawerBody>
|
|
<form id='edit-params-form' onSubmit={onParamsFormSubmit}>
|
|
{paramFields.map((field) => (
|
|
<div key={field.title} className={style.columnSection}>
|
|
<label className={style.label}>
|
|
<span className={style.title}>{field.title}</span>
|
|
<span className={style.description}>{field.description}</span>
|
|
<ParamInput key={field.title} paramField={field} />
|
|
</label>
|
|
</div>
|
|
))}
|
|
</form>
|
|
</DrawerBody>
|
|
|
|
<DrawerFooter className={style.drawerFooter}>
|
|
<Button variant='ontime-ghosted' onClick={resetParams} type='reset'>
|
|
Reset to default
|
|
</Button>
|
|
<Button variant='ontime-filled' form='edit-params-form' type='submit'>
|
|
Save
|
|
</Button>
|
|
</DrawerFooter>
|
|
</DrawerContent>
|
|
</Drawer>
|
|
);
|
|
}
|