File tree 4 files changed +45
-42
lines changed
4 files changed +45
-42
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ it('Reproduction for issue #542', () => {
5
5
cy . contains ( '#hydration-marker' , 'hydrated' ) . should ( 'be.hidden' )
6
6
cy . get ( '#q' ) . should ( 'have.text' , 'foo' )
7
7
cy . get ( '#r' ) . should ( 'have.text' , 'bar' )
8
+ cy . get ( '#initial' ) . should ( 'have.text' , '{"q":"foo","r":"bar"}' )
8
9
cy . get ( 'a' ) . click ( )
9
10
cy . location ( 'search' ) . should ( 'eq' , '' )
10
11
cy . get ( '#q' ) . should ( 'have.text' , '' )
Original file line number Diff line number Diff line change 1
1
'use client'
2
2
3
- import Link from 'next/link'
4
- import { parseAsString , useQueryState , useQueryStates } from 'nuqs'
5
3
import { Suspense } from 'react'
4
+ import { Client } from '../client'
6
5
7
6
export default function Page ( ) {
8
7
return (
9
8
< Suspense >
10
- < Client />
9
+ < Client page = "a" linkTo = "b" />
11
10
</ Suspense >
12
11
)
13
12
}
14
-
15
- function Client ( ) {
16
- console . log (
17
- 'rendering page a, url: %s' ,
18
- typeof location !== 'undefined' ? location . href : 'ssr'
19
- )
20
- const [ q ] = useQueryState ( 'q' )
21
- const [ { r } ] = useQueryStates ( { r : parseAsString } )
22
- return (
23
- < >
24
- < div id = "q" > { q } </ div >
25
- < div id = "r" > { r } </ div >
26
- < Link href = "/app/repro-542/b" > Go to page B</ Link >
27
- </ >
28
- )
29
- }
Original file line number Diff line number Diff line change 1
1
'use client'
2
2
3
- import { parseAsString , useQueryState , useQueryStates } from 'nuqs '
4
- import React , { Suspense } from 'react '
3
+ import { Suspense } from 'react '
4
+ import { Client } from '../client '
5
5
6
6
export default function Page ( ) {
7
7
return (
8
8
< Suspense >
9
- < Client />
9
+ < Client page = "b" linkTo = "a" />
10
10
</ Suspense >
11
11
)
12
12
}
13
-
14
- function Client ( ) {
15
- console . log (
16
- 'rendering page b, url: %s' ,
17
- typeof location !== 'undefined' ? location . href : 'ssr'
18
- )
19
- const ref = React . useRef < any > ( null )
20
- const [ q ] = useQueryState ( 'q' )
21
- const [ { r } ] = useQueryStates ( { r : parseAsString } )
22
- if ( ref . current === null ) {
23
- ref . current = { q, r }
24
- }
25
- return (
26
- < >
27
- < div id = "q" > { q } </ div >
28
- < div id = "r" > { r } </ div >
29
- < div id = "initial" > { JSON . stringify ( ref . current ) } </ div >
30
- </ >
31
- )
32
- }
Original file line number Diff line number Diff line change
1
+ 'use client'
2
+
3
+ import Link from 'next/link'
4
+ import { parseAsString , useQueryState , useQueryStates } from 'nuqs'
5
+ import React from 'react'
6
+
7
+ type ClientProps = {
8
+ page : 'a' | 'b'
9
+ linkTo : 'a' | 'b'
10
+ }
11
+
12
+ type Ref = {
13
+ q : string | null
14
+ r : string | null
15
+ }
16
+
17
+ export function Client ( { page, linkTo } : ClientProps ) {
18
+ console . log (
19
+ 'rendering page %s, url: %s' ,
20
+ page ,
21
+ typeof location !== 'undefined' ? location . href : 'ssr'
22
+ )
23
+ const [ q ] = useQueryState ( 'q' )
24
+ const [ { r } ] = useQueryStates ( { r : parseAsString } )
25
+ const initial = React . useRef < Ref | null > ( null )
26
+ if ( initial . current === null ) {
27
+ initial . current = { q, r }
28
+ }
29
+ return (
30
+ < >
31
+ < div id = "q" > { q } </ div >
32
+ < div id = "r" > { r } </ div >
33
+ < div id = "initial" > { JSON . stringify ( initial . current ) } </ div >
34
+ < Link href = { `/app/repro-542/${ linkTo } ` } >
35
+ Go to page { page . toUpperCase ( ) }
36
+ </ Link >
37
+ </ >
38
+ )
39
+ }
You can’t perform that action at this time.
0 commit comments