Cleanup server page

This commit is contained in:
Braydon 2024-04-20 14:19:26 -04:00
parent c286ae4a21
commit b1d2e895ee

@ -3,11 +3,11 @@ import ServerResult from "@/components/server/server-result";
import ServerSearch from "@/components/server/server-search"; import ServerSearch from "@/components/server/server-search";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"; import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
import { minecrafter } from "@/font/fonts"; import { minecrafter } from "@/font/fonts";
import { capitalize } from "@/app/common/stringUtils"; import { capitalize } from "@/lib/stringUtils";
import { cn } from "@/app/common/utils"; import { cn } from "@/lib/utils";
import { PageProps } from "@/types/page"; import { PageProps } from "@/types/page";
import { ExclamationCircleIcon } from "@heroicons/react/24/outline"; import { ExclamationCircleIcon } from "@heroicons/react/24/outline";
import { Metadata } from "next"; import { Metadata, Viewport } from "next";
import { ReactElement } from "react"; import { ReactElement } from "react";
import { import {
CachedBedrockMinecraftServer, CachedBedrockMinecraftServer,
@ -91,8 +91,7 @@ export const generateMetadata = async ({
}: PageProps): Promise<Metadata> => { }: PageProps): Promise<Metadata> => {
const platform: string | undefined = params.slug?.[0]; // The platform to search for const platform: string | undefined = params.slug?.[0]; // The platform to search for
const hostname: string | undefined = params.slug?.[1]; // The hostname of the server to search for const hostname: string | undefined = params.slug?.[1]; // The hostname of the server to search for
let embed: Metadata | undefined; // The server embed, if any
// Try and get the server to display
if (platform && hostname) { if (platform && hostname) {
try { try {
const server: const server:
@ -121,10 +120,36 @@ export const generateMetadata = async ({
} }
} }
} }
return Embed({
title: "Server Lookup", // Return the page embed
description: "Search for a server to view its data.", return embed
}); ? embed
: Embed({
title: "Server Lookup",
description: "Search for a server to view its data.",
});
};
/**
* Generate the viewport for this page.
*
* @param params the route params
* @returns the generated metadata
*/
export const generateViewport = async ({
params,
}: PageProps): Promise<Viewport> => {
const platform: string | undefined = params.slug?.[0]; // The platform to search for
const hostname: string | undefined = params.slug?.[1]; // The hostname of the server to search for
if (platform && hostname) {
try {
await getMinecraftServer(platform as ServerPlatform, hostname); // Get the server embed
return { themeColor: "#55FF55" }; // Online
} catch (err) {
return { themeColor: "#AA0000" }; // Error
}
}
return {};
}; };
export default ServerPage; export default ServerPage;