import React, { useState } from 'react'; import { Actions, useStoreActions } from 'easy-peasy'; import tw from 'twin.macro'; import deleteLocation from '@/api/admin/locations/deleteLocation'; import Button from '@/components/elements/Button'; import ConfirmationModal from '@/components/elements/ConfirmationModal'; import { ApplicationStore } from '@/state'; interface Props { locationId: number; onDeleted: () => void; } export default ({ locationId, onDeleted }: Props) => { const [ visible, setVisible ] = useState(false); const [ loading, setLoading ] = useState(false); const { clearFlashes, clearAndAddHttpError } = useStoreActions((actions: Actions) => actions.flashes); const onDelete = () => { setLoading(true); clearFlashes('location'); deleteLocation(locationId) .then(() => { setLoading(false); onDeleted(); }) .catch(error => { console.error(error); clearAndAddHttpError({ key: 'location', error }); setLoading(false); setVisible(false); }); }; return ( <> setVisible(false)} > Are you sure you want to delete this location? You may only delete a location if no nodes are assigned to it. ); };