daphnis/components/(customization)/trophycustomization/page.tsx

178 lines
5.6 KiB
TypeScript
Raw Normal View History

2024-07-26 17:19:37 +00:00
"use client";
import React, { FC, useEffect, useState } from "react";
import { chuni_static_avatar } from "@/prisma/schemas/artemis/generated/artemis";
import { Check, ChevronsUpDown } from "lucide-react";
import { cn } from "@/lib/utils";
import { Button } from "@/components/ui/button";
import {
Command,
CommandEmpty,
CommandGroup,
CommandItem,
CommandList,
} from "@/components/ui/command";
import {
Form,
FormControl,
FormDescription,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form";
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/components/ui/popover";
import { z } from "zod";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { toast } from "../../ui/use-toast";
2024-08-02 01:42:14 +00:00
import { getCurrentTrophies, updatePlayerTrophy } from "./actions";
2024-07-26 17:19:37 +00:00
import { cozynet_chuni_static_trophies } from "@/prisma/schemas/artemis/generated/artemis";
const getAvatarTextureSrc = (id: number | undefined) => {
if (id === undefined) return "";
return `avatarAccessory/CHU_UI_Avatar_Tex_0${id}.png`;
};
type static_trophies = cozynet_chuni_static_trophies;
type AvatarSelectionProps = {
2024-07-26 18:08:36 +00:00
playerTrophySelectionData: {
2024-07-26 17:19:37 +00:00
statictrophies: static_trophies[];
};
};
export const TrophyCustomization: FC<AvatarSelectionProps> = ({
2024-07-26 18:08:36 +00:00
playerTrophySelectionData,
2024-07-26 17:19:37 +00:00
}) => {
const FormSchema = z.object({
trophies: z.number({
required_error: "Please select a trophy",
}),
});
const form = useForm<z.infer<typeof FormSchema>>({
resolver: zodResolver(FormSchema),
});
const [trophyID, setTrophyId] = useState<number | undefined>(undefined);
useEffect(() => {
2024-07-26 19:15:13 +00:00
const fetchTrophies = async () => {
2024-07-26 17:19:37 +00:00
try {
const data = await getCurrentTrophies();
if (data.length > 0) {
setTrophyId(data[0].trophyId!);
}
} catch (error) {
console.error("Error fetching avatar parts:", error);
}
};
2024-07-26 19:15:13 +00:00
fetchTrophies();
2024-07-26 17:19:37 +00:00
}, []);
function onSubmit(data: z.infer<typeof FormSchema>) {
const defaultNamePlateId = trophyID;
const newNamePlateId = data.trophies ?? defaultNamePlateId;
2024-08-02 01:42:14 +00:00
updatePlayerTrophy(newNamePlateId).then(() => {
setTrophyId(newNamePlateId);
});
resetFormValues();
2024-07-26 17:19:37 +00:00
toast({
title: "You submitted the following values:",
description: (
<pre className="mt-2 w-[340px] rounded-md bg-slate-950 p-4">
<code className="text-white">{JSON.stringify(data, null, 2)}</code>
</pre>
),
});
2024-08-02 01:42:14 +00:00
function resetFormValues() {
form.reset({
trophies: undefined,
});
}
2024-07-26 17:19:37 +00:00
}
return (
<main className="flex flex-col items-center space-y-6">
2024-07-26 17:19:37 +00:00
<div>
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6">
<FormField
control={form.control}
name="trophies"
render={({ field }) => (
<FormItem className="flex flex-col">
<FormLabel className="pb-2">Select Trophy</FormLabel>
2024-07-26 17:19:37 +00:00
<Popover>
<PopoverTrigger asChild>
<FormControl>
<Button
variant="outline"
role="combobox"
className={cn(
"w-[300px] justify-between",
!field.value && "text-muted-foreground",
2024-07-26 17:19:37 +00:00
)}
>
{field.value
2024-07-26 18:08:36 +00:00
? playerTrophySelectionData.statictrophies.find(
(part) => part.id === field.value,
2024-07-26 17:19:37 +00:00
)?.str
: "Select Trophy"}
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
</Button>
</FormControl>
</PopoverTrigger>
<PopoverContent className="w-[300px] p-0">
<Command>
<CommandList>
<CommandEmpty>No avatar part found.</CommandEmpty>
<CommandGroup>
2024-07-26 18:08:36 +00:00
{playerTrophySelectionData.statictrophies.map(
(part) => (
<CommandItem
value={part.id.toString()}
key={part.id}
onSelect={() => {
form.setValue("trophies", part.id);
}}
>
<Check
className={cn(
"mr-2 h-4 w-4",
part.id === field.value
? "opacity-100"
: "opacity-0",
2024-07-26 18:08:36 +00:00
)}
/>
{part.str}
</CommandItem>
),
2024-07-26 18:08:36 +00:00
)}
2024-07-26 17:19:37 +00:00
</CommandGroup>
</CommandList>
</Command>
</PopoverContent>
</Popover>
<FormMessage />
</FormItem>
)}
/>
2024-07-26 18:08:36 +00:00
<div className="flex justify-end">
<Button type="submit">Submit</Button>
</div>
2024-07-26 17:19:37 +00:00
</form>
</Form>
</div>
</main>
);
};