38 lines
1 KiB
TypeScript
38 lines
1 KiB
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import { useMemo } from "react";
|
|
import { useLocation, useNavigate, useSearchParams as useSearchParamsRR } from "react-router";
|
|
import { ensureTrailingSlash } from "./helper";
|
|
|
|
export function useRouter() {
|
|
const navigate = useNavigate();
|
|
return useMemo(
|
|
() => ({
|
|
push: (to: string) => navigate(ensureTrailingSlash(to)),
|
|
replace: (to: string) => navigate(ensureTrailingSlash(to), { replace: true }),
|
|
back: () => navigate(-1),
|
|
forward: () => navigate(1),
|
|
refresh: () => {
|
|
location.reload();
|
|
},
|
|
prefetch: async (_to: string) => {
|
|
// no-op in this shim
|
|
},
|
|
}),
|
|
[navigate]
|
|
);
|
|
}
|
|
|
|
export function usePathname(): string {
|
|
const { pathname } = useLocation();
|
|
return pathname;
|
|
}
|
|
|
|
export function useSearchParams(): URLSearchParams {
|
|
const [searchParams] = useSearchParamsRR();
|
|
return searchParams;
|
|
}
|