cleanup
All checks were successful
deploy / deploy (push) Successful in 56s

This commit is contained in:
Lee
2023-10-23 07:01:55 +01:00
parent 26c097d29f
commit 84c25cafd4
5 changed files with 233 additions and 339 deletions

View File

@ -1,3 +1,5 @@
import { ReadonlyHeaders } from "next/dist/server/web/spec-extension/adapters/headers";
let regionNames = new Intl.DisplayNames(["en"], { type: "region" });
export function isProduction() {
@ -13,3 +15,31 @@ export function isProduction() {
export function normalizedRegionName(region: string) {
return regionNames.of(region);
}
/**
* Gets the page number from the search query
*
* @param query the query to get the page from
* @param defaultPage the default page to return if the page is not found
* @returns the page from the query
*/
export function getPageFromSearchQuery(
headers: ReadonlyHeaders,
defaultPage = 1,
) {
const url = new URL(headers.get("x-url")!);
const searchParams = url.searchParams;
let page;
const pageString = searchParams.get("page");
if (pageString == null) {
page = defaultPage;
} else {
page = Number.parseInt(pageString);
}
if (Number.isNaN(page)) {
page = defaultPage;
}
return page;
}