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 useViewSettings from '../../../common/hooks-query/useViewSettings'; import Info from '../info/Info'; import { ViewOption } from './types'; import ViewParamsSection from './ViewParamsSection'; import style from './ViewParamsEditor.module.scss'; type ViewParamsObj = { [key: string]: string | FormDataEntryValue }; /** * Utility remove the # character from a hex string */ function sanitiseColour(colour: string) { if (colour.startsWith('#')) { return colour.substring(1); } return colour; } /** * Makes a new URLSearchParams object from the given params object */ const getURLSearchParamsFromObj = (paramsObj: ViewParamsObj, paramFields: ViewOption[]) => { const newSearchParams = new URLSearchParams(); // Convert paramFields to an object that contains default values const defaultValues: Record = {}; paramFields.forEach((section) => { section.options.forEach((option) => { defaultValues[option.id] = String(option.defaultValue); // extract persisted values if ('type' in option && option.type === 'persist') { newSearchParams.set(option.id, option.value); } }); }); // compare which values are different from the default values Object.entries(paramsObj).forEach(([id, value]) => { if (typeof value === 'string' && value.length) { // we dont know which values contain colours // unfortunately this means we run all the strings through the sanitation const valueWithoutHash = sanitiseColour(value); if (defaultValues[id] !== valueWithoutHash) { handleValueString(id, valueWithoutHash); } } }); /** Utility function contains logic to add a value into the searchParams object */ function handleValueString(id: string, value: string) { const maybeMultipleValues = value.split(','); // we need to check if the value contains comma separated list, for the case of the multi-select data if (Array.isArray(maybeMultipleValues) && maybeMultipleValues.length > 1) { const added = new Set(); maybeMultipleValues.forEach((v) => { if (!added.has(v)) { added.add(v); newSearchParams.append(id, v); } }); } else { newSearchParams.set(id, value); } } return newSearchParams; }; interface EditFormDrawerProps { viewOptions: ViewOption[]; } // TODO: this is a good candidate for memoisation, but needs the paramFields to be stable export default function ViewParamsEditor({ viewOptions }: EditFormDrawerProps) { const [searchParams, setSearchParams] = useSearchParams(); const { data: viewSettings } = useViewSettings(); 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) => { formEvent.preventDefault(); const newParamsObject = Object.fromEntries(new FormData(formEvent.currentTarget)); const newSearchParams = getURLSearchParamsFromObj(newParamsObject, viewOptions); setSearchParams(newSearchParams); }; return ( Customise {viewSettings.overrideStyles && This view style is being modified by a custom CSS file.}
{viewOptions.map((section) => ( ))}
); }