import React from 'react'; import { FormattedMessage, useIntl } from 'react-intl'; import { useMutation, useQueryClient } from 'react-query'; import { useSelector } from 'react-redux'; import { AppBar, Checkbox, FormControl, FormControlLabel, Tab, TextareaAutosize, Typography } from '@material-ui/core'; import Client, { ErrorInfo } from '../../../../client'; import { activeInstance } from '../../../../redux/clientSlice'; import BaseDialog from '../base-dialog'; import { TabContext, TabList, TabPanel } from '@material-ui/lab'; import { fetchMapById, handleOnMutationSuccess } from '..'; import { useStyles } from './style'; export type PublishProps = { mapId: number, onClose: () => void } const PublishDialog = (props: PublishProps) => { const { mapId, onClose } = props; const { map } = fetchMapById(mapId); const client: Client = useSelector(activeInstance); const [model, setModel] = React.useState(map ? map.isPublic : false); const [error, setError] = React.useState(); const [value, setValue] = React.useState('1'); const queryClient = useQueryClient(); const intl = useIntl(); const classes = useStyles(); const mutation = useMutation((model: boolean) => { return client.updateMapToPublic(mapId, model); }, { onSuccess: () => { setModel(model); handleOnMutationSuccess(onClose, queryClient); }, onError: (error) => { setError(error); } } ); const handleOnClose = (): void => { props.onClose(); setError(undefined); }; const handleOnSubmit = (event: React.FormEvent): void => { event.preventDefault(); mutation.mutate(model); }; const handleOnChange = (event: React.ChangeEvent, checked: boolean): void => { event.preventDefault(); setModel(checked); } const handleTabChange = (event, newValue) => { setValue(newValue); }; return (
} label={intl.formatMessage({ id: 'publish.checkbox', defaultMessage: 'Enable public sharing' })} />
`} />
); } export default PublishDialog;