add joined date stat
All checks were successful
Deploy Backend / deploy (push) Successful in 2m52s
Deploy Website / deploy (push) Successful in 4m36s

This commit is contained in:
Lee
2024-10-17 02:21:59 +01:00
parent 5263509bac
commit ae4e6912e5
2 changed files with 83 additions and 8 deletions

View File

@ -53,6 +53,46 @@ export function formatDateMinimal(date: Date) {
});
}
/**
* Formats the date
*
* @param date the date to format
* @param format the format to return
* @returns the formatted date
*/
export function formatDate(date: Date, format: "MMMM YYYY" | "DD MMMM YYYY" | "DD MMMM YYYY HH:mm" = "MMMM YYYY") {
switch (format) {
case "MMMM YYYY": {
return date.toLocaleString("en-US", {
timeZone: "Europe/London",
month: "long",
year: "numeric",
});
}
case "DD MMMM YYYY": {
return date.toLocaleString("en-US", {
timeZone: "Europe/London",
day: "numeric",
month: "long",
year: "numeric",
});
}
case "DD MMMM YYYY HH:mm": {
return date.toLocaleString("en-US", {
timeZone: "Europe/London",
day: "numeric",
month: "long",
year: "numeric",
hour: "numeric",
minute: "numeric",
});
}
default: {
return formatDateMinimal(date);
}
}
}
/**
* Gets the midnight aligned date
*