Files
Frontend/src/app/components/player/lookup-player.tsx
Liam ea98b2bd5a
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s
fix mobile support on the new forms
2024-04-18 05:48:13 +01:00

59 lines
1.5 KiB
TypeScript

"use client";
import { useToast } from "@/common/use-toast";
import { getPlayer } from "mcutils-library";
import { useRouter } from "next/navigation";
import { ReactElement } from "react";
import { Button } from "../ui/button";
import { Input } from "../ui/input";
import { Label } from "../ui/label";
export function LookupPlayer(): ReactElement {
const router = useRouter();
const { toast } = useToast();
/**
* Lookup a server based on the platform
*
* @param platform the server platform
* @param query the query to lookup
*/
const lookupPlayer = async (query: string) => {
if (!query || query.length === 0) {
return;
}
try {
await getPlayer(query);
} catch (err) {
toast({
title: "Error",
variant: "destructive",
description: (err as Error).message,
duration: 5000,
});
return;
}
router.push(`/player/${query}`);
};
return (
<form
className="flex flex-col gap-2 justify-center items-center mt-4 flex-wrap"
action={(form: FormData) => {
lookupPlayer(form.get("query") as string);
}}
>
<div className="flex gap-2 justify-center">
<div className="flex flex-col gap-2 items-start">
<Label htmlFor="query">Player</Label>
<Input className="w-fit" type="search" name="query" placeholder="Query..." maxLength={128} />
</div>
</div>
<Button type="submit">Search</Button>
</form>
);
}