add realtime statistics!!!
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Has been cancelled

This commit is contained in:
Lee
2024-04-18 01:21:38 +01:00
parent f5203f9742
commit defdcccdb6
14 changed files with 143 additions and 9 deletions

View File

@ -7,6 +7,7 @@ import { cn } from "@/common/utils";
import { getMojangEndpointStatus } from "mcutils-library";
import { Metadata } from "next";
import Link from "next/link";
import { ReactElement } from "react";
/**
* Force the page to be dynamic, so it will be regenerated on every request
@ -58,7 +59,7 @@ export async function generateMetadata(): Promise<Metadata> {
});
}
export default async function Page(): Promise<JSX.Element> {
export default async function Page(): Promise<ReactElement> {
const { endpoints } = await getMojangEndpointStatus();
const endpointsSize = Object.entries(endpoints).length;

View File

@ -1,6 +1,7 @@
import Link from "next/link";
import { Button } from "../components/ui/button";
import { Tooltip, TooltipContent, TooltipTrigger } from "../components/ui/tooltip";
import { ReactElement } from "react";
type Button = {
title: string;
@ -24,7 +25,7 @@ const buttons: Button[] = [
},
];
export default function Home(): JSX.Element {
export default function Home(): ReactElement {
return (
<div className="text-center flex flex-col justify-center">
<h1 className="text-4xl mb-2">Minecraft Utilities</h1>

View File

@ -9,6 +9,7 @@ import { CachedPlayer, McUtilsAPIError, SkinPart, getPlayer } from "mcutils-libr
import { Metadata } from "next";
import Image from "next/image";
import Link from "next/link";
import { ReactElement } from "react";
type Params = {
params: {
@ -46,7 +47,7 @@ export async function generateMetadata({ params: { id } }: Params): Promise<Meta
}
}
export default async function Page({ params: { id } }: Params): Promise<JSX.Element> {
export default async function Page({ params: { id } }: Params): Promise<ReactElement> {
let error: string | undefined = undefined; // The error to display
let player: CachedPlayer | undefined = undefined; // The player to display

View File

@ -13,6 +13,7 @@ import {
} from "mcutils-library";
import { Metadata } from "next";
import Image from "next/image";
import { ReactElement } from "react";
type Params = {
params: {
@ -30,7 +31,7 @@ type Params = {
*/
function getFavicon(
platform: ServerPlatform,
server: CachedJavaMinecraftServer | CachedBedrockMinecraftServer
server: CachedJavaMinecraftServer | CachedBedrockMinecraftServer,
): string | undefined {
if (platform === ServerPlatform.Bedrock) {
return undefined;
@ -88,14 +89,13 @@ export async function generateMetadata({ params: { platform, hostname } }: Param
}
}
export default async function Page({ params: { platform, hostname } }: Params): Promise<JSX.Element> {
export default async function Page({ params: { platform, hostname } }: Params): Promise<ReactElement> {
let error: string | undefined = undefined; // The error to display
let server: CachedJavaMinecraftServer | CachedBedrockMinecraftServer | undefined = undefined; // The server to display
let invalidPlatform = checkPlatform(platform) === false; // Whether the platform is invalid
let invalidPlatform = !checkPlatform(platform); // Whether the platform is invalid
// Try and get the player to display
try {
console.log(platform);
if (invalidPlatform) {
error = "Invalid platform"; // Set the error message
} else {

View File

@ -0,0 +1,14 @@
import { ReactElement } from "react";
import { Stats } from "@/app/components/stats";
export default async function Page(): Promise<ReactElement> {
return (
<div className="flex flex-col gap-4 items-center">
<div className="text-center">
<p className="font-semibold text-xl">API Statistics</p>
<p>View the statistics for the API in real-time!</p>
</div>
<Stats />
</div>
);
}