forked from molefrog/wouter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatic-location.js
29 lines (27 loc) · 877 Bytes
/
static-location.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { absolutePath, relativePath } from "./paths.js";
// Generates static `useLocation` hook. The hook always
// responds with initial path provided.
// You can use this for server-side rendering.
export default (path = "/", { record = false } = {}) => {
console.warn(
"`wouter/static-location` is deprecated and will be removed in upcoming versions. " +
"If you want to use wouter in SSR mode, please use `ssrPath` option passed to the top-level " +
"`<Router>` component."
);
const hook = ({ base = "" } = {}) => [
relativePath(base, path),
(to, { replace } = {}) => {
if (record) {
if (replace) {
hook.history.pop();
}
hook.history.push(
// handle nested routers and absolute paths
absolutePath(to, base)
);
}
},
];
hook.history = [path];
return hook;
};