Small addons

This commit is contained in:
brian 2023-11-18 10:09:22 -05:00
parent 6df0b0cc6a
commit 02ba2faef0

125
components/RouteDialog.tsx Normal file
View file

@ -0,0 +1,125 @@
import { updateRoute } from "@/lib/clientActions";
import { getHosts, getRouteUpstreams } from "@/lib/utils";
import { useState } from "react";
import useSWRMutation from "swr/mutation";
import { toast } from "./ui/use-toast";
import { useFieldArray, useForm } from "react-hook-form";
import { set } from "lodash";
import { Dialog, DialogContent } from "./ui/dialog";
import { Form, FormControl, FormField, FormItem, FormLabel } from "./ui/form";
import { Input } from "./ui/input";
import { Button } from "./ui/button";
export function RouteDialog({ route }: { route: Route }) {
let index = getHosts(route).indexOf(route.match[0].host[0]);
const [modifiedRoute, setRoute] = useState(route);
const { trigger: pushUpdate } = useSWRMutation(`/api/caddy/routes/${index}`, updateRoute, {
onError: () => {
return toast({
title: "Error",
description: "There was an error updating the route",
variant: "destructive"
});
},
onSuccess: () => {
toast({
title: "Success",
description: "Route updated successfully!",
variant: "success"
});
}
});
let validHosts: any[] = getHosts(route);
let validUpstreams: any[] = getRouteUpstreams(route).map((upstream) => upstream.dial);
const form = useForm({
values: {
handler: route.handle[0].routes[0].handle[0].handler,
upstreams: validUpstreams,
hosts: validHosts,
}
});
const { fields: upstreams, append: appendUpstreams } = useFieldArray({
control: form.control,
name: "upstreams",
})
const { fields: hosts, append: appendHosts } = useFieldArray({
control: form.control,
name: "hosts",
})
let onSubmit = (() => {
pushUpdate(modifiedRoute);
})
let handleChange = (value: any, path: any) => {
let updatedRoute = set(modifiedRoute, path, value.target.value);
setRoute(updatedRoute);
form.setValue(value.target.name, value.target.value)
}
return (
<Dialog open={route as Route != null}>
<DialogContent className='sm:max-w-[425px]'>
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)}>
<FormField
control={form.control}
name="handler"
render={({ field }) => (
<FormItem>
<FormLabel>Handler</FormLabel>
<FormControl>
<Input {...field} onChange={(value) => handleChange(value, `handle[0].handler`)} />
</FormControl>
</FormItem>
)}
></FormField>
{upstreams.map((upstream, index) => (
<FormField
key={index}
control={form.control}
name={`upstreams.${index}`}
render={({ field }) => (
<FormItem>
<FormLabel>Upstream {index + 1}</FormLabel>
<FormControl>
<Input {...field} onChange={(value) => handleChange(value, `handle[0].routes[0].handle[0].upstreams[${index}].dial`)} />
</FormControl>
</FormItem>
)}
/>
))}
{hosts.map((host, index) => (
<FormField
key={index}
control={form.control}
name={`hosts.${index}`}
render={({ field }) => (
<FormItem>
<FormLabel>Host {index + 1}</FormLabel>
<FormControl>
<Input {...field} onChange={(value) => handleChange(value, `match[0].host[${index}]`)} />
</FormControl>
</FormItem>
)}
/>
))}
<Button type="submit">Save</Button>
<Button type='button' onClick={() => {appendUpstreams('')}}>Add Host</Button>
<Button type='button' onClick={() => {appendHosts('')}}>Add Upstream</Button>
</form>
</Form>
</DialogContent>
</Dialog >
)
}