mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-27 05:20:36 +03:00
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
import { useState } from 'react';
|
|
import { toast } from 'react-toastify';
|
|
|
|
import Checkbox from '../../components/Common/Checkbox';
|
|
import FileInput from '../../components/Common/FileInput';
|
|
import Modal from '../../components/Common/Modal';
|
|
import { useRSForm } from '../../context/RSFormContext';
|
|
import { IRSFormUploadData } from '../../utils/models';
|
|
|
|
interface DlgUploadRSFormProps {
|
|
hideWindow: () => void
|
|
}
|
|
|
|
function DlgUploadRSForm({ hideWindow }: DlgUploadRSFormProps) {
|
|
const { upload } = useRSForm();
|
|
const [loadMetadata, setLoadMetadata] = useState(false);
|
|
const [file, setFile] = useState<File | undefined>()
|
|
|
|
const handleSubmit = () => {
|
|
if (!file) {
|
|
return;
|
|
}
|
|
const data: IRSFormUploadData = {
|
|
load_metadata: loadMetadata,
|
|
file: file,
|
|
fileName: file.name
|
|
};
|
|
upload(data, () => toast.success('Схема загружена из файла'));
|
|
};
|
|
|
|
const handleFile = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
if (event.target.files && event.target.files.length > 0) {
|
|
setFile(event.target.files[0]);
|
|
} else {
|
|
setFile(undefined)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Modal
|
|
title='Импорт схемы из Экстеора'
|
|
hideWindow={hideWindow}
|
|
canSubmit={!!file}
|
|
onSubmit={handleSubmit}
|
|
submitText='Загрузить'
|
|
>
|
|
<div className='max-w-[20rem]'>
|
|
<FileInput
|
|
label='Выбрать файл'
|
|
acceptType='.trs'
|
|
onChange={handleFile}
|
|
/>
|
|
<Checkbox
|
|
label='Загружать название и комментарий'
|
|
value={loadMetadata}
|
|
onChange={event => { setLoadMetadata(event.target.checked); }}
|
|
/>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
}
|
|
|
|
export default DlgUploadRSForm;
|