ConceptPortal-public/rsconcept/frontend/src/pages/RSFormCreatePage.tsx

101 lines
3.3 KiB
TypeScript
Raw Normal View History

2023-07-15 17:46:19 +03:00
import { useEffect, useState } from 'react';
2023-07-25 20:27:29 +03:00
import { useNavigate } from 'react-router-dom';
import { toast } from 'react-toastify';
2023-07-15 17:46:19 +03:00
2023-07-25 20:27:29 +03:00
import BackendError from '../components/BackendError';
import Checkbox from '../components/Common/Checkbox';
import FileInput from '../components/Common/FileInput';
2023-07-15 17:46:19 +03:00
import Form from '../components/Common/Form';
import SubmitButton from '../components/Common/SubmitButton';
2023-07-25 20:27:29 +03:00
import TextArea from '../components/Common/TextArea';
import TextInput from '../components/Common/TextInput';
2023-07-15 17:46:19 +03:00
import RequireAuth from '../components/RequireAuth';
import useNewRSForm from '../hooks/useNewRSForm';
2023-07-25 20:27:29 +03:00
import { type IRSFormCreateData } from '../utils/models';
2023-07-15 17:46:19 +03:00
function RSFormCreatePage() {
const navigate = useNavigate();
const [title, setTitle] = useState('');
const [alias, setAlias] = useState('');
const [comment, setComment] = useState('');
const [common, setCommon] = useState(false);
const [file, setFile] = useState<File | undefined>()
const handleFile = (event: React.ChangeEvent<HTMLInputElement>) => {
if (event.target.files && event.target.files.length > 0) {
setFile(event.target.files[0]);
} else {
setFile(undefined)
}
}
2023-07-25 20:27:29 +03:00
const onSuccess = (newID: string) => {
toast.success('Схема успешно создана');
navigate(`/rsforms/${newID}`);
}
const { createSchema, error, setError, loading } = useNewRSForm()
2023-07-15 17:46:19 +03:00
useEffect(() => {
setError(undefined)
}, [title, alias, setError]);
2023-07-25 20:27:29 +03:00
2023-07-15 17:46:19 +03:00
const handleSubmit = (event: React.FormEvent<HTMLFormElement>) => {
event.preventDefault();
2023-07-25 20:27:29 +03:00
if (loading) {
return;
2023-07-15 17:46:19 +03:00
}
2023-07-25 20:27:29 +03:00
const data: IRSFormCreateData = {
title,
alias,
comment,
is_common: common
};
void createSchema({
data,
file,
onSuccess
});
2023-07-15 17:46:19 +03:00
};
return (
2023-07-25 20:27:29 +03:00
<RequireAuth>
2023-07-15 17:46:19 +03:00
<Form title='Создание концептуальной схемы' onSubmit={handleSubmit} widthClass='max-w-lg mt-4'>
<TextInput id='title' label='Полное название' type='text'
required={!file}
placeholder={file && 'Загрузить из файла'}
value={title}
2023-07-25 20:27:29 +03:00
onChange={event => { setTitle(event.target.value); }}
2023-07-15 17:46:19 +03:00
/>
<TextInput id='alias' label='Сокращение' type='text'
required={!file}
value={alias}
placeholder={file && 'Загрузить из файла'}
widthClass='max-w-sm'
2023-07-25 20:27:29 +03:00
onChange={event => { setAlias(event.target.value); }}
2023-07-15 17:46:19 +03:00
/>
<TextArea id='comment' label='Комментарий'
value={comment}
placeholder={file && 'Загрузить из файла'}
2023-07-25 20:27:29 +03:00
onChange={event => { setComment(event.target.value); }}
2023-07-15 17:46:19 +03:00
/>
<Checkbox id='common' label='Общедоступная схема'
value={common}
2023-07-25 20:27:29 +03:00
onChange={event => { setCommon(event.target.checked); }}
2023-07-15 17:46:19 +03:00
/>
<FileInput id='trs' label='Загрузить *.trs'
acceptType='.trs'
onChange={handleFile}
/>
2023-07-25 20:27:29 +03:00
2023-07-15 17:46:19 +03:00
<div className='flex items-center justify-center py-2 mt-4'>
<SubmitButton text='Создать схему' loading={loading} />
</div>
{ error && <BackendError error={error} />}
</Form>
</RequireAuth>
);
}
2023-07-25 20:27:29 +03:00
export default RSFormCreatePage;