Skip to content

Commit adeb223

Browse files
committed
test: Add initial page load test
1 parent 9912eef commit adeb223

File tree

4 files changed

+45
-42
lines changed

4 files changed

+45
-42
lines changed

packages/e2e/cypress/e2e/repro-542.cy.js

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ it('Reproduction for issue #542', () => {
55
cy.contains('#hydration-marker', 'hydrated').should('be.hidden')
66
cy.get('#q').should('have.text', 'foo')
77
cy.get('#r').should('have.text', 'bar')
8+
cy.get('#initial').should('have.text', '{"q":"foo","r":"bar"}')
89
cy.get('a').click()
910
cy.location('search').should('eq', '')
1011
cy.get('#q').should('have.text', '')
+2-19
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,12 @@
11
'use client'
22

3-
import Link from 'next/link'
4-
import { parseAsString, useQueryState, useQueryStates } from 'nuqs'
53
import { Suspense } from 'react'
4+
import { Client } from '../client'
65

76
export default function Page() {
87
return (
98
<Suspense>
10-
<Client />
9+
<Client page="a" linkTo="b" />
1110
</Suspense>
1211
)
1312
}
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-
}
+3-23
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,12 @@
11
'use client'
22

3-
import { parseAsString, useQueryState, useQueryStates } from 'nuqs'
4-
import React, { Suspense } from 'react'
3+
import { Suspense } from 'react'
4+
import { Client } from '../client'
55

66
export default function Page() {
77
return (
88
<Suspense>
9-
<Client />
9+
<Client page="b" linkTo="a" />
1010
</Suspense>
1111
)
1212
}
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 numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
}

0 commit comments

Comments
 (0)