mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 05:56:16 +00:00
76 lines
2.3 KiB
TypeScript
76 lines
2.3 KiB
TypeScript
import { LoaderCircle } from 'lucide-react';
|
|
import { Button } from '@/components/ui/button';
|
|
import {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from '@/components/ui/dialog';
|
|
import { useForm, usePage } from '@inertiajs/react';
|
|
import { FormEventHandler, ReactNode, useState } from 'react';
|
|
import { Label } from '@/components/ui/label';
|
|
import InputError from '@/components/ui/input-error';
|
|
import { Form, FormField, FormFields } from '@/components/ui/form';
|
|
import { Server } from '@/types/server';
|
|
import SshKeySelect from '@/pages/ssh-keys/components/ssh-key-select';
|
|
|
|
export default function DeployKey({ children }: { children: ReactNode }) {
|
|
const [open, setOpen] = useState(false);
|
|
const page = usePage<{
|
|
server: Server;
|
|
}>();
|
|
|
|
const form = useForm<
|
|
Required<{
|
|
key: string;
|
|
}>
|
|
>({
|
|
key: '',
|
|
});
|
|
|
|
const submit: FormEventHandler = (e) => {
|
|
e.preventDefault();
|
|
form.post(route('server-ssh-keys.store', { server: page.props.server.id }), {
|
|
onSuccess: () => {
|
|
setOpen(false);
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogTrigger asChild>{children}</DialogTrigger>
|
|
<DialogContent className="sm:max-w-lg">
|
|
<DialogHeader>
|
|
<DialogTitle>Deploy ssh key</DialogTitle>
|
|
<DialogDescription className="sr-only">Deploy ssh key</DialogDescription>
|
|
</DialogHeader>
|
|
<Form id="deploy-ssh-key-form" onSubmit={submit} className="p-4">
|
|
<FormFields>
|
|
<FormField>
|
|
<Label htmlFor="name">Key</Label>
|
|
<SshKeySelect value={form.data.key} onValueChange={(value) => form.setData('key', value)} />
|
|
<InputError message={form.errors.key} />
|
|
</FormField>
|
|
</FormFields>
|
|
</Form>
|
|
<DialogFooter>
|
|
<DialogClose asChild>
|
|
<Button type="button" variant="outline">
|
|
Cancel
|
|
</Button>
|
|
</DialogClose>
|
|
<Button form="deploy-ssh-key-form" onClick={submit} disabled={form.processing}>
|
|
{form.processing && <LoaderCircle className="animate-spin" />}
|
|
Deploy
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|