Merge pull request #51 from Nebelung-Dev/main

Add wisp switcher
This commit is contained in:
Owski 2024-10-13 17:40:13 -05:00 committed by GitHub
commit 8db70e6fdb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 104 additions and 4 deletions

View file

@ -20,7 +20,7 @@ export default function RootLayout({
<html lang="en"> <html lang="en">
<head> <head>
<link rel="icon" href="/icon.png" /> <link rel="icon" href="/icon.png" />
<script src="/chemical.js"></script> <script data-wisp-store src="/chemical.js"></script>
</head> </head>
<body className={inter.className}> <body className={inter.className}>
<Themes> <Themes>

View file

@ -45,8 +45,6 @@ export default function Settings() {
setSubmitting(false); setSubmitting(false);
toast.success("Settings saved"); toast.success("Settings saved");
}, 1000); }, 1000);
console.log(values);
} }
function onReset() { function onReset() {

View file

@ -1,7 +1,7 @@
"use client"; "use client";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import { Users, Link, Palette } from "lucide-react"; import { Users, Link, Palette, ArrowRightLeft } from "lucide-react";
import NextLink from "next/link"; import NextLink from "next/link";
import { usePathname } from "next/navigation"; import { usePathname } from "next/navigation";
@ -23,6 +23,16 @@ export default function SettingsLayout({
<Palette className="h-5 w-5" /> Appearance <Palette className="h-5 w-5" /> Appearance
</Button> </Button>
</NextLink> </NextLink>
<NextLink href="/settings/wisp/">
<Button
variant={
pathname?.includes("/settings/wisp/") ? "secondary" : "ghost"
}
className="w-full items-center justify-start gap-2"
>
<ArrowRightLeft className="h-5 w-5" /> Wisp Switcher
</Button>
</NextLink>
<NextLink href="/settings/credits/"> <NextLink href="/settings/credits/">
<Button <Button
variant={ variant={

View file

@ -0,0 +1,92 @@
"use client";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-form";
import { z } from "zod";
import { Button } from "@/components/ui/button";
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form";
import { Input } from "@/components/ui/input";
import { Separator } from "@/components/ui/separator";
import { Save, RotateCcw } from "lucide-react";
import { useState } from "react";
import { toast } from "sonner";
const formSchema = z.object({
wispServer: z.string().url("Please provide a valid URL"),
description: z.string().optional(),
});
export default function WispSwitcher() {
const [submitting, setSubmitting] = useState(false);
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
defaultValues: {
wispServer: "",
},
});
function onSubmit(values: z.infer<typeof formSchema>) {
setSubmitting(true);
window.chemical.setStore("wisp", values.wispServer);
setTimeout(() => {
setSubmitting(false);
toast.success("Settings saved");
}, 1000);
}
function onReset() {
form.reset();
window.chemical.setStore("wisp", "");
toast("Settings reset");
}
return (
<div>
<h1 className="text-4xl font-semibold">Wisp Switcher</h1>
<Separator />
<div className="mt-4">
<Form {...form}>
<form
onSubmit={form.handleSubmit(onSubmit)}
className="w-1/2 space-y-4"
>
<FormField
control={form.control}
name="wispServer"
render={({ field }) => (
<FormItem>
<FormLabel>Wisp Server</FormLabel>
<FormControl>
<Input placeholder="Wisp Server URL" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
{}
<div className="flex space-x-4">
<Button type="submit" disabled={submitting}>
<Save className="mr-2 h-5 w-5" /> Save Changes
</Button>
<Button type="button" onClick={onReset}>
<RotateCcw className="mr-2 h-5 w-5" /> Reset
</Button>
</div>
</form>
</Form>
</div>
</div>
);
}