mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-30 16:17:41 +01:00
39 lines
965 B
TypeScript
39 lines
965 B
TypeScript
import { useCallback, useMemo } from "react";
|
|
import { useHistory, useLocation } from "react-router-dom";
|
|
|
|
export function useQueryParams() {
|
|
const loc = useLocation();
|
|
|
|
const queryParams = useMemo(() => {
|
|
const obj: Record<string, string> = Object.fromEntries(
|
|
new URLSearchParams(loc.search).entries()
|
|
);
|
|
|
|
return obj;
|
|
}, [loc.search]);
|
|
|
|
return queryParams;
|
|
}
|
|
|
|
export function useQueryParam(
|
|
param: string
|
|
): [string | null, (a: string | null) => void] {
|
|
const params = useQueryParams();
|
|
const location = useLocation();
|
|
const router = useHistory();
|
|
const currentValue = params[param] ?? null;
|
|
|
|
const set = useCallback(
|
|
(value: string | null) => {
|
|
const parsed = new URLSearchParams(location.search);
|
|
if (value) parsed.set(param, value);
|
|
else parsed.delete(param);
|
|
router.push({
|
|
search: parsed.toString(),
|
|
});
|
|
},
|
|
[param, location, router]
|
|
);
|
|
|
|
return [currentValue, set];
|
|
}
|