import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import { useMutation, useQueryClient } from "react-query"; import { useSelector } from "react-redux"; import Client from "../../../../classes/client"; import { activeInstance, fetchMapById } from '../../../../redux/clientSlice'; import { SimpleDialogProps, handleOnMutationSuccess } from ".."; import BaseDialog from "../base-dialog"; import Alert from "@material-ui/lab/Alert"; import AlertTitle from "@material-ui/lab/AlertTitle"; const DeleteDialog = ({ mapId, onClose } : SimpleDialogProps) => { const intl = useIntl(); const client: Client = useSelector(activeInstance); const queryClient = useQueryClient(); const mutation = useMutation((id: number) => client.deleteMap(id), { onSuccess: () => handleOnMutationSuccess(onClose, queryClient) } ); const handleOnClose = (): void => { onClose(); }; const handleOnSubmit = (): void => { mutation.mutate(mapId); } // Fetch map model to be rendered ... const { map } = fetchMapById(mapId); return (
Delete '{map?.title}'
); } export default DeleteDialog;