import Button from '@mui/material/Button'; import FormControl from '@mui/material/FormControl'; import { Importer, TextImporterFactory } from '@wisemapping/mindplot'; import React from 'react'; import { FormattedMessage, useIntl } from 'react-intl'; import { useMutation } from 'react-query'; import { useSelector } from 'react-redux'; import Client, { ErrorInfo } from '../../../../classes/client'; import { activeInstance } from '../../../../redux/clientSlice'; import Input from '../../../form/input'; import BaseDialog from '../base-dialog'; export type ImportModel = { title: string; description?: string; contentType?: string; content?: null | string; }; export type CreateProps = { onClose: () => void; }; const defaultModel: ImportModel = { title: '' }; const ImportDialog = ({ onClose }: CreateProps): React.ReactElement => { const client: Client = useSelector(activeInstance); const [model, setModel] = React.useState(defaultModel); const [error, setError] = React.useState(); const intl = useIntl(); const mutation = useMutation( (model: ImportModel) => { return client.importMap(model); }, { onSuccess: (mapId: number) => { window.location.href = `/c/maps/${mapId}/edit`; }, onError: (error) => { setError(error); }, } ); const handleOnClose = (): void => { onClose(); setModel(defaultModel); setError(undefined); }; const handleOnSubmit = (event: React.FormEvent): void => { event.preventDefault(); mutation.mutate(model); }; const handleOnChange = (event: React.ChangeEvent): void => { event.preventDefault(); const name = event.target.name; const value = event.target.value; setModel({ ...model, [name as keyof ImportModel]: value }); }; const handleOnFileChange = (event: React.ChangeEvent) => { const files = event?.target?.files; const reader = new FileReader(); if (files) { const file = files[0]; // Closure to capture the file information. reader.onload = (event) => { // Suggest file name ... const fileName = file.name; if (fileName) { const title = fileName.split('.')[0]; if (!model.title || 0 === model.title.length) { model.title = title; } } const extensionFile = file.name.split('.')[1] const extensionAccept = ['wxml', 'mm']; if ( extensionAccept.find(ext => ext === extensionFile) ) { new Error('The file extension is invalid'); } model.contentType = 'application/xml' const fileContent = event?.target?.result; const mapConent: string = typeof fileContent === 'string' ? fileContent : fileContent.toString(); let importer: Importer switch(extensionFile) { case 'wxml': { importer = TextImporterFactory.create('wxml', mapConent); break; } case 'mm': { importer = TextImporterFactory.create('mm', mapConent); break; } } importer.import(model.title, model.description) .then(res => { model.content = res; setModel({ ...model }); }) .catch(e => console.log(e)); }; // Read in the image file as a data URL. reader.readAsText(file); } }; return (
); }; export default ImportDialog;