This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2024-10-19 04:53:06 +01:00

50 lines
1013 B
TypeScript

import ky from "ky";
/**
* Checks if we're in production
*/
export function isProduction() {
return process.env.NODE_ENV === "production";
}
/**
* Checks if we're running on the server
*/
export function isServer() {
return typeof window === "undefined";
}
/**
* Delays a promise
*
* @param ms the number of milliseconds to delay
*/
export function delay(ms: number) {
return new Promise(resolve => setTimeout(resolve, ms));
}
/**
* Gets the page from a rank.
*
* @param rank the rank
* @param itemsPerPage the items per page
* @returns the page number
*/
export function getPageFromRank(rank: number, itemsPerPage: number) {
return Math.floor((rank - 1) / 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;
}
}