mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 22:16:15 +00:00
56 lines
1.6 KiB
TypeScript
56 lines
1.6 KiB
TypeScript
import { Server } from '@/types/server';
|
|
import { ReactNode, useState } 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 { LoaderCircleIcon } from 'lucide-react';
|
|
|
|
export default function UpdateServer({ server, children }: { server: Server; children: ReactNode }) {
|
|
const [open, setOpen] = useState(false);
|
|
const form = useForm();
|
|
|
|
const submit = () => {
|
|
form.post(route('servers.update', server.id), {
|
|
onSuccess: () => {
|
|
setOpen(false);
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogTrigger asChild>{children}</DialogTrigger>
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>Update {server.name}</DialogTitle>
|
|
<DialogDescription className="sr-only">Update server</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<p className="p-4">
|
|
Are you sure you want to update the server? There are <b>{server.available_updates}</b> available updates
|
|
</p>
|
|
|
|
<DialogFooter className="gap-2">
|
|
<DialogClose asChild>
|
|
<Button variant="outline">Cancel</Button>
|
|
</DialogClose>
|
|
|
|
<Button onClick={submit} disabled={form.processing}>
|
|
{form.processing && <LoaderCircleIcon className="size-4 animate-spin" />}
|
|
Update
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|