22 lines
653 B
TypeScript
22 lines
653 B
TypeScript
export const updateQueryParam = (param: string, value: string | number) => {
|
|
if (typeof window === "undefined") return;
|
|
|
|
const url = new URL(window.location.href);
|
|
url.searchParams.set(param, `${value}`);
|
|
window.history.pushState({}, "", url.href);
|
|
};
|
|
|
|
export const getQueryParam = (param: string) => {
|
|
if (typeof window === "undefined") return;
|
|
|
|
return new URLSearchParams(window.location.search).get(param);
|
|
};
|
|
|
|
export const removeQueryParam = (param: string) => {
|
|
if (typeof window === "undefined") return;
|
|
|
|
const url = new URL(window.location.href);
|
|
url.searchParams.delete(param);
|
|
window.history.pushState({}, "", url.href);
|
|
};
|