mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 18:03:47 +00:00
aa4ee546ec
--------- Co-authored-by: Carlos Valente <carlosvalente@pm.me>
65 lines
1.6 KiB
TypeScript
65 lines
1.6 KiB
TypeScript
import { useEffect } from 'react';
|
|
import { useForm } from 'react-hook-form';
|
|
import { Button, Input } from '@chakra-ui/react';
|
|
|
|
import style from './ProjectPanel.module.scss';
|
|
|
|
export type ProjectFormValues = {
|
|
filename: string;
|
|
};
|
|
|
|
interface ProjectFormProps {
|
|
action: 'duplicate' | 'rename' | 'merge';
|
|
filename: string;
|
|
onCancel: () => void;
|
|
onSubmit: (values: ProjectFormValues) => Promise<void>;
|
|
}
|
|
|
|
export default function ProjectForm({ action, filename, onSubmit, onCancel }: ProjectFormProps) {
|
|
const {
|
|
handleSubmit,
|
|
register,
|
|
formState: { isSubmitting, isDirty, isValid },
|
|
setFocus,
|
|
} = useForm<ProjectFormValues>({
|
|
defaultValues: { filename },
|
|
values: { filename },
|
|
resetOptions: {
|
|
keepDirtyValues: true,
|
|
},
|
|
});
|
|
|
|
useEffect(() => {
|
|
setFocus('filename');
|
|
}, [setFocus]);
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit(onSubmit)} className={style.form}>
|
|
<Input
|
|
className={style.formInput}
|
|
id='filename'
|
|
size='sm'
|
|
type='text'
|
|
variant='ontime-filled'
|
|
placeholder='Enter new name'
|
|
autoComplete='off'
|
|
{...register('filename', { required: true })}
|
|
/>
|
|
<div className={style.actionButtons}>
|
|
<Button onClick={onCancel} size='sm' variant='ontime-ghosted' disabled={isSubmitting}>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
size='sm'
|
|
variant='ontime-filled'
|
|
isDisabled={!isDirty || !isValid || isSubmitting}
|
|
type='submit'
|
|
className={style.saveButton}
|
|
>
|
|
{action}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
);
|
|
}
|