should be all good now (and added api status notifications)
Some checks failed
Deploy Backend / deploy (push) Successful in 3m38s
Deploy Website / deploy (push) Has been cancelled

This commit is contained in:
Lee
2024-10-16 08:15:11 +01:00
parent 1eed0e1e99
commit cb7143ed3d
5 changed files with 37 additions and 7 deletions

View File

@ -11,7 +11,11 @@ type ApiHealth = {
*/
export async function getApiHealth(url: string): Promise<ApiHealth> {
try {
await ky.get(url);
await ky
.get(url, {
cache: "no-cache",
})
.json();
return {
online: true,
};

View File

@ -1,3 +1,5 @@
import ky from "ky";
/**
* Checks if we're in production
*/
@ -24,3 +26,17 @@ export function delay(ms: number) {
export function getPageFromRank(rank: number, itemsPerPage: number) {
return Math.floor(rank / itemsPerPage) + 1;
}
/**
* Fetches data from the given url.
*
* @param url the url to fetch
*/
export async function kyFetch<T>(url: string): Promise<T | undefined> {
try {
return await ky.get<T>(url).json();
} catch (error) {
console.error(`Error fetching data from ${url}:`, error);
return undefined;
}
}