add last updated to mojang status embed
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m38s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m38s
This commit is contained in:
@ -2,6 +2,7 @@ import { Card } from "@/app/components/card";
|
||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/app/components/ui/table";
|
||||
import { generateEmbed } from "@/common/embed";
|
||||
import { capitalizeFirstLetter } from "@/common/string-utils";
|
||||
import { formatTime } from "@/common/time-utils";
|
||||
import { cn } from "@/common/utils";
|
||||
import { CachedEndpointStatus, getMojangEndpointStatus } from "mcutils-library";
|
||||
import { Metadata } from "next";
|
||||
@ -55,6 +56,7 @@ export async function generateMetadata(): Promise<Metadata> {
|
||||
return `**${url}**: ${formatStatus(status)}`;
|
||||
})
|
||||
.join("\n");
|
||||
description += `\n\nUpdated: ${formatTime(new Date())}`;
|
||||
|
||||
return generateEmbed({
|
||||
title: "Mojang Status",
|
||||
|
11
src/common/time-utils.ts
Normal file
11
src/common/time-utils.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import moment from "moment";
|
||||
|
||||
/**
|
||||
* Formats the time
|
||||
*
|
||||
* @param time the time to format
|
||||
* @returns the formatted time
|
||||
*/
|
||||
export function formatTime(time: Date): string {
|
||||
return moment(time).format("lll");
|
||||
}
|
@ -1,6 +1,12 @@
|
||||
import { type ClassValue, clsx } from "clsx"
|
||||
import { twMerge } from "tailwind-merge"
|
||||
import { clsx, type ClassValue } from "clsx";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
/**
|
||||
* Merge class values together
|
||||
*
|
||||
* @param inputs the class values
|
||||
* @returns the merged class values
|
||||
*/
|
||||
export function cn(...inputs: ClassValue[]) {
|
||||
return twMerge(clsx(inputs))
|
||||
return twMerge(clsx(inputs));
|
||||
}
|
||||
|
Reference in New Issue
Block a user