mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 05:56:16 +00:00
74 lines
2.4 KiB
TypeScript
74 lines
2.4 KiB
TypeScript
import { FormEvent, ReactNode } from 'react';
|
|
import {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from '@/components/ui/dialog';
|
|
import { Button } from '@/components/ui/button';
|
|
import { useForm } from '@inertiajs/react';
|
|
import { Form, FormField, FormFields } from '@/components/ui/form';
|
|
import { Label } from '@/components/ui/label';
|
|
import { Input } from '@/components/ui/input';
|
|
import InputError from '@/components/ui/input-error';
|
|
import { LoaderCircleIcon } from 'lucide-react';
|
|
import { Site } from '@/types/site';
|
|
import siteHelper from '@/lib/site-helper';
|
|
|
|
export default function DeleteSite({ site, children }: { site: Site; children: ReactNode }) {
|
|
const form = useForm({
|
|
domain: '',
|
|
});
|
|
|
|
const submit = (e: FormEvent) => {
|
|
e.preventDefault();
|
|
form.delete(route('site-settings.destroy', { server: site.server_id, site: site.id }), {
|
|
onSuccess: () => {
|
|
siteHelper.storeSite();
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Dialog>
|
|
<DialogTrigger asChild>{children}</DialogTrigger>
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>Delete {site.domain}</DialogTitle>
|
|
<DialogDescription className="sr-only">Delete site and its resources.</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<p className="p-4">
|
|
Are you sure you want to delete this site: <strong>{site.domain}</strong>? All resources associated with this site will be deleted and this
|
|
action cannot be undone.
|
|
</p>
|
|
|
|
<Form id="delete-site-form" onSubmit={submit} className="p-4">
|
|
<FormFields>
|
|
<FormField>
|
|
<Label htmlFor="domain">Domain</Label>
|
|
<Input id="domain" value={form.data.domain} onChange={(e) => form.setData('domain', e.target.value)} />
|
|
<InputError message={form.errors.domain} />
|
|
</FormField>
|
|
</FormFields>
|
|
</Form>
|
|
|
|
<DialogFooter className="gap-2">
|
|
<DialogClose asChild>
|
|
<Button variant="outline">Cancel</Button>
|
|
</DialogClose>
|
|
|
|
<Button form="delete-site-form" variant="destructive" disabled={form.processing}>
|
|
{form.processing && <LoaderCircleIcon className="size-4 animate-spin" />}
|
|
Delete site
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|