/* eslint-disable @next/next/no-img-element */ import { Card } from "@/app/components/card"; import { NotFound } from "@/app/components/not-found"; import { LookupPlayer } from "@/app/components/player/lookup-player"; import { generateEmbed } from "@/common/embed"; import { getPlayer } from "mcutils-library"; import { CachedPlayer } from "mcutils-library/dist/types/cache/cachedPlayer"; import { McUtilsAPIError } from "mcutils-library/dist/types/error"; import { Player, SkinPart } from "mcutils-library/dist/types/player/player"; import { Metadata } from "next"; import Image from "next/image"; import Link from "next/link"; type Params = { params: { id: string; }; }; export async function generateMetadata({ params: { id } }: Params): Promise { const { error, player } = await fetchPlayer(id); if (error && player == undefined) { return generateEmbed({ title: "Unknown Player", description: error }); } const { username, uniqueId, skin } = player as Player; const headPartUrl = skin.parts.head; const description = ` Username: ${username} UUID: ${uniqueId}`; return generateEmbed({ title: `${username}`, description: description, image: headPartUrl, }); } /** * Gets the player's data from the uuid or username * * @param id the player's uuid or username * @returns the player's data or an error message */ async function getData(id: string): Promise { return await getPlayer(id); } /** * Fetches the player's data from the uuid or username * * @param id the player's uuid or username * @returns the player's data or an error message */ async function fetchPlayer(id: string): Promise<{ error: string | undefined; player: Player | undefined }> { let error: string | undefined = undefined; let player: Player | undefined = undefined; try { player = (await getData(id))?.player; } catch (err) { error = (err as McUtilsAPIError).message; } return { error, player }; } export default async function Page({ params: { id } }: Params): Promise { const { error, player } = await fetchPlayer(id); return (

Lookup a Player

You can enter a players uuid or username to get information about the player.

{error && } {player != null && (
The player's skin

{player.username}

{player.uniqueId}

Skin Parts

{Object.entries(player.skin.parts) .filter(([part]) => part !== SkinPart.HEAD) // Don't show the head part again .map(([part, url]) => { return ( {`The ); })}
)}
); }