Skip to content

Commit e112093

Browse files
committedJan 6, 2025
waku community adapter
1 parent 39d6f4a commit e112093

File tree

1 file changed

+90
-0
lines changed
  • packages/docs/content/docs/community-adapters

1 file changed

+90
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
---
2+
title: Waku
3+
description: Integrate nuqs with Waku
4+
---
5+
6+
[Waku](https://waku.gg/) is supported as a community-contributed adapter.
7+
8+
## Step 1: Add the adapter code
9+
10+
<Callout type="warn">
11+
The custom adapters APIs are not yet stable and may change in the future
12+
in a minor or patch release (not following SemVer).
13+
</Callout>
14+
15+
```tsx title="app/nuqs-waku-adapter.tsx"
16+
"use client";
17+
18+
import {
19+
type unstable_AdapterOptions as AdapterOptions,
20+
unstable_createAdapterProvider as createAdapterProvider,
21+
renderQueryString,
22+
} from "nuqs/adapters/custom";
23+
import { useRouter_UNSTABLE as useRouter } from "waku";
24+
25+
export function renderURL(base: string, search: URLSearchParams) {
26+
const hashlessBase = base.split("#")[0] ?? "";
27+
const query = renderQueryString(search);
28+
const hash = location.hash;
29+
return hashlessBase + query + hash;
30+
}
31+
32+
function useNuqsAdapter() {
33+
const { query, push, replace } = useRouter();
34+
const searchParams = new URLSearchParams(query);
35+
const updateUrl = (search: URLSearchParams, options: AdapterOptions) => {
36+
if (options.shallow) {
37+
const url = renderURL(location.origin + location.pathname, search);
38+
options.history === "push"
39+
? history.pushState(null, "", url)
40+
: history.replaceState(null, "", url);
41+
} else {
42+
const updateMethod = options.history === "push" ? push : replace;
43+
updateMethod(renderQueryString(search) as any);
44+
}
45+
// Waku router does not scroll unless the pathname changes
46+
if (options.scroll) {
47+
window.scrollTo(0, 0);
48+
}
49+
};
50+
return {
51+
searchParams,
52+
updateUrl,
53+
};
54+
}
55+
56+
export const NuqsAdapter = createAdapterProvider(useNuqsAdapter);
57+
58+
```
59+
60+
## Step 2: wrap your root layout
61+
62+
Integrate the adapter into a _layout.tsx or _root.tsx file, by wrapping the `{children}`
63+
component:
64+
65+
```tsx title="app/_layout.tsx" /NuqsAdapter/
66+
import { Suspense, type ReactNode } from 'react';
67+
68+
import { NuqsAdapter } from './nuqs-waku-adapter'
69+
70+
type LayoutProps = { children: ReactNode };
71+
72+
export default async function Layout({ children }: LayoutProps) {
73+
return (
74+
<>
75+
<NuqsAdapter>
76+
<Suspense>
77+
{children}
78+
</Suspense>
79+
</NuqsAdapter>
80+
</>
81+
);
82+
}
83+
84+
export const getConfig = async () => {
85+
return {
86+
render: 'dynamic',
87+
// render: 'static', // works but can cause hydration warnings
88+
} as const;
89+
};
90+
```

0 commit comments

Comments
 (0)