Skip to content

Commit 2acdadb

Browse files
gaojudeztanner
andauthored
doc: useLinkStatus doc follow-up (#77790)
`use client` file should not define server components --------- Co-authored-by: Zack Tanner <[email protected]>
1 parent d71da77 commit 2acdadb

File tree

1 file changed

+25
-15
lines changed

1 file changed

+25
-15
lines changed

docs/01-app/04-api-reference/04-functions/use-link-status.mdx

+25-15
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { useLinkStatus } from 'next/navigation'
1212

1313
export default function LoadingIndicator() {
1414
const { pending } = useLinkStatus()
15-
return pending ? <div>Loading...</div> : null
15+
return pending ? <span>⌛</span> : null
1616
}
1717
```
1818

@@ -23,7 +23,7 @@ import { useLinkStatus } from 'next/navigation'
2323

2424
export default function LoadingIndicator() {
2525
const { pending } = useLinkStatus()
26-
return pending ? <div>Loading...</div> : null
26+
return pending ? <span></span> : null
2727
}
2828
```
2929

@@ -89,17 +89,33 @@ In this example, navigating between categories updates the query string (e.g. ?c
8989

9090
You can use the `useLinkStatus` hook to render a lightweight loading indicator next to the active link and provide immediate feedback to the user while the data is being fetched.
9191

92-
```tsx filename="app/page.tsx" switcher
92+
```tsx filename="app/components/loading-indicator.tsx" switcher
9393
'use client'
9494

95-
import { useSearchParams, useLinkStatus } from 'next/navigation'
96-
import Link from 'next/link'
97-
import { Suspense } from 'react'
95+
import { useLinkStatus } from 'next/navigation'
96+
97+
export default function LoadingIndicator() {
98+
const { pending } = useLinkStatus()
99+
return pending ? <span>⌛</span> : null
100+
}
101+
```
102+
103+
```jsx filename="app/components/loading-indicator.js" switcher
104+
'use client'
105+
106+
import { useLinkStatus } from 'next/navigation'
98107

99-
function LoadingIndicator() {
108+
export default function LoadingIndicator() {
100109
const { pending } = useLinkStatus()
101110
return pending ? <span></span> : null
102111
}
112+
```
113+
114+
```tsx filename="app/page.tsx" switcher
115+
import { useSearchParams } from 'next/navigation'
116+
import Link from 'next/link'
117+
import { Suspense } from 'react'
118+
import LoadingIndicator from './loading-indicator'
103119

104120
function MenuBar() {
105121
return (
@@ -148,16 +164,10 @@ export default async function ProductCategories({
148164
```
149165

150166
```jsx filename="app/page.js" switcher
151-
'use client'
152-
153-
import { useSearchParams, useLinkStatus } from 'next/navigation'
167+
import { useSearchParams } from 'next/navigation'
154168
import Link from 'next/link'
155169
import { Suspense } from 'react'
156-
157-
function LoadingIndicator() {
158-
const { pending } = useLinkStatus()
159-
return pending ? <span></span> : null
160-
}
170+
import LoadingIndicator from './loading-indicator'
161171

162172
function MenuBar() {
163173
return (

0 commit comments

Comments
 (0)