Skip to content

Commit ec50004

Browse files
committed
Wrapping up v2 changes
1 parent 5a00012 commit ec50004

File tree

7 files changed

+288
-280
lines changed

7 files changed

+288
-280
lines changed

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ pnpm add @near-pagoda/ui
1818
In your root `layout.tsx` file, wrap your application with the `<PagodaUiProvider>` and pass in your framework's `<Link>` component and router methods. You'll also want to include the `<Toaster />` component to display toasts when calling `openToast()`.
1919

2020
```tsx
21+
'use client';
22+
2123
import '@near-pagoda/ui/styles.css';
2224

2325
import Link from 'next/link';
@@ -30,8 +32,6 @@ import { PagodaUiProvider, Toaster } from '@near-pagoda/ui';
3032
*/
3133

3234
export default function RootLayout({ children }: { children: ReactNode }) {
33-
const router = useRouter();
34-
3535
return (
3636
<html lang="en" suppressHydrationWarning>
3737
<head>
@@ -45,8 +45,7 @@ export default function RootLayout({ children }: { children: ReactNode }) {
4545
<PagodaUiProvider
4646
value={{
4747
Link,
48-
routerPrefetch: router.prefetch,
49-
routerPush: router.push
48+
useRouter
5049
}}
5150
>
5251
<Toaster />
@@ -58,7 +57,7 @@ export default function RootLayout({ children }: { children: ReactNode }) {
5857
}
5958
```
6059

61-
Why is `<PagodaUiProvider>` needed? Some of our components render anchor tags or dynamically change the current route. This provider allows our library to support any React framework (Vanilla/Vite, Next JS, etc) by passing in your router's components. It also supports dark/light mode and opts into the user's preferred theme via [next-theme](ttps://github.com/pacocoursey/next-themes).
60+
Why is `<PagodaUiProvider>` needed? Some of our components render anchor tags or dynamically change the current route. This provider allows our library to support any React framework (Vanilla/Vite, Next JS, etc) by passing in your router's components and hooks. It also supports dark/light mode and opts into the user's preferred theme via [next-theme](ttps://github.com/pacocoursey/next-themes).
6261

6362
## Documentation
6463

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@
8989
"@testing-library/react": "^16.0.0",
9090
"@types/lodash-es": "^4.17.12",
9191
"@types/node": "^20",
92-
"@types/react": "^18",
93-
"@types/react-dom": "^18",
92+
"@types/react": "^18.3.12",
93+
"@types/react-dom": "^18.3.1",
9494
"@types/react-syntax-highlighter": "^15.5.13",
9595
"eslint": "^8",
9696
"eslint-config-next": "^14.2.5",

pnpm-lock.yaml

+264-264
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rollup-plugin-concat.js

+5
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,21 @@ function concat(options = {}) {
99

1010
writeBundle() {
1111
let code = '';
12+
let exit = false;
1213

1314
for (const file of options.files) {
1415
const filePath = path.resolve(process.cwd(), file);
1516
if (fs.existsSync(filePath)) {
1617
const content = fs.readFileSync(filePath, 'utf8');
1718
fs.unlinkSync(filePath);
1819
code += `${content}\n`;
20+
} else {
21+
exit = true;
1922
}
2023
}
2124

25+
if (exit) return;
26+
2227
writeFileWithDirs(outputPath, code);
2328
},
2429
};

src/components/Dropdown/Dropdown.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,15 @@ export const Item = forwardRef<
5252
HTMLDivElement,
5353
ComponentProps<typeof Primitive.Item> & { external?: boolean; href?: string }
5454
>(({ external, href, ...props }, ref) => {
55-
const { routerPush } = usePagodaUi();
55+
const { useRouter } = usePagodaUi();
56+
const router = useRouter();
5657

5758
const onClick: MouseEventHandler = (event) => {
5859
if (href) {
5960
if (event.metaKey || external) {
6061
window.open(href, '_blank');
6162
} else {
62-
void routerPush(href);
63+
void router.push(href);
6364
}
6465
}
6566
};

src/components/Tabs/Tabs.tsx

+6-5
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,22 @@ Content.displayName = 'Content';
4141

4242
export const Trigger = forwardRef<HTMLButtonElement, TriggerProps>(({ children, href, iconLeft, ...props }, ref) => {
4343
const elementRef = useRef<HTMLButtonElement | null>(null);
44-
const { routerPush, routerPrefetch } = usePagodaUi();
44+
const { useRouter } = usePagodaUi();
45+
const router = useRouter();
4546

4647
useEffect(() => {
4748
if (href) {
48-
void routerPrefetch(href);
49+
void router.prefetch(href);
4950
}
50-
}, [href, routerPrefetch]);
51+
}, [href, router]);
5152

5253
useEffect(() => {
5354
function clickListener(event: MouseEvent) {
5455
if (href) {
5556
if (event.metaKey || event.ctrlKey) {
5657
window.open(href, '_blank');
5758
} else {
58-
void routerPush(href);
59+
void router.push(href);
5960
}
6061
}
6162
}
@@ -66,7 +67,7 @@ export const Trigger = forwardRef<HTMLButtonElement, TriggerProps>(({ children,
6667
return () => {
6768
el?.removeEventListener('click', clickListener);
6869
};
69-
}, [href, routerPush]);
70+
}, [href, router]);
7071

7172
return (
7273
<Primitive.Trigger className={s.trigger} ref={mergeRefs([ref, elementRef])} {...props}>

src/context/PagodaUi.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ type PagodaUi = {
99
target?: ComponentProps<'a'>['target'];
1010
ref?: ForwardedRef<HTMLAnchorElement>;
1111
}) => ReactNode;
12-
routerPrefetch: (path: string) => any;
13-
routerPush: (path: string) => any;
12+
useRouter: () => {
13+
prefetch: (path: string) => any;
14+
push: (path: string) => any;
15+
};
1416
};
1517

1618
export const PagodaUiContext = createContext<PagodaUi | null>(null);

0 commit comments

Comments
 (0)