Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Conditional rendering in React Router #882

Merged
merged 3 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions packages/e2e/next/cypress/e2e/shared/conditional-rendering.cy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { testConditionalRendering } from 'e2e-shared/specs/conditional-rendering.cy'

testConditionalRendering({
path: '/app/conditional-rendering/useQueryState',
hook: 'useQueryState',
nextJsRouter: 'app'
})

testConditionalRendering({
path: '/app/conditional-rendering/useQueryStates',
hook: 'useQueryStates',
nextJsRouter: 'app'
})

testConditionalRendering({
path: '/pages/conditional-rendering/useQueryState',
hook: 'useQueryState',
nextJsRouter: 'pages'
})

testConditionalRendering({
path: '/pages/conditional-rendering/useQueryStates',
hook: 'useQueryStates',
nextJsRouter: 'pages'
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { ConditionalRenderingUseQueryState } from 'e2e-shared/specs/conditional-rendering'
import { Suspense } from 'react'

export default function Page() {
return (
<Suspense>
<ConditionalRenderingUseQueryState />
</Suspense>
)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { ConditionalRenderingUseQueryStates } from 'e2e-shared/specs/conditional-rendering'
import { Suspense } from 'react'

export default function Page() {
return (
<Suspense>
<ConditionalRenderingUseQueryStates />
</Suspense>
)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ConditionalRenderingUseQueryState } from 'e2e-shared/specs/conditional-rendering'

export default ConditionalRenderingUseQueryState
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ConditionalRenderingUseQueryStates } from 'e2e-shared/specs/conditional-rendering'

export default ConditionalRenderingUseQueryStates
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { testConditionalRendering } from 'e2e-shared/specs/conditional-rendering.cy'

testConditionalRendering({
path: '/conditional-rendering/useQueryState',
hook: 'useQueryState'
})

testConditionalRendering({
path: '/conditional-rendering/useQueryStates',
hook: 'useQueryStates'
})
2 changes: 2 additions & 0 deletions packages/e2e/react-router/v6/src/react-router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ const router = createBrowserRouter(
<Route path="form/useQueryStates" lazy={load(import('./routes/form.useQueryStates'))} />
<Route path="referential-stability/useQueryState" lazy={load(import('./routes/referential-stability.useQueryState'))} />
<Route path="referential-stability/useQueryStates" lazy={load(import('./routes/referential-stability.useQueryStates'))} />
<Route path="conditional-rendering/useQueryState" lazy={load(import('./routes/conditional-rendering.useQueryState'))} />
<Route path="conditional-rendering/useQueryStates" lazy={load(import('./routes/conditional-rendering.useQueryStates'))} />

<Route path="render-count/:hook/:shallow/:history/:startTransition/no-loader" lazy={load(import('./routes/render-count.$hook.$shallow.$history.$startTransition.no-loader'))} />
<Route path="render-count/:hook/:shallow/:history/:startTransition/sync-loader" lazy={load(import('./routes/render-count.$hook.$shallow.$history.$startTransition.sync-loader'))} />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ConditionalRenderingUseQueryState } from 'e2e-shared/specs/conditional-rendering'

export default ConditionalRenderingUseQueryState
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ConditionalRenderingUseQueryStates } from 'e2e-shared/specs/conditional-rendering'

export default ConditionalRenderingUseQueryStates
2 changes: 2 additions & 0 deletions packages/e2e/react-router/v7/app/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ export default [
route('/form/useQueryStates', './routes/form.useQueryStates.tsx'),
route('/referential-stability/useQueryState', './routes/referential-stability.useQueryState.tsx'),
route('/referential-stability/useQueryStates', './routes/referential-stability.useQueryStates.tsx'),
route('/conditional-rendering/useQueryState', './routes/conditional-rendering.useQueryState.tsx'),
route('/conditional-rendering/useQueryStates', './routes/conditional-rendering.useQueryStates.tsx'),
route('/render-count/:hook/:shallow/:history/:startTransition/no-loader', './routes/render-count.$hook.$shallow.$history.$startTransition.no-loader.tsx'),
route('/render-count/:hook/:shallow/:history/:startTransition/sync-loader', './routes/render-count.$hook.$shallow.$history.$startTransition.sync-loader.tsx'),
route('/render-count/:hook/:shallow/:history/:startTransition/async-loader', './routes/render-count.$hook.$shallow.$history.$startTransition.async-loader.tsx'),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ConditionalRenderingUseQueryState } from 'e2e-shared/specs/conditional-rendering'

export default ConditionalRenderingUseQueryState
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ConditionalRenderingUseQueryStates } from 'e2e-shared/specs/conditional-rendering'

export default ConditionalRenderingUseQueryStates
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { testConditionalRendering } from 'e2e-shared/specs/conditional-rendering.cy'

testConditionalRendering({
path: '/conditional-rendering/useQueryState',
hook: 'useQueryState'
})

testConditionalRendering({
path: '/conditional-rendering/useQueryStates',
hook: 'useQueryStates'
})
11 changes: 11 additions & 0 deletions packages/e2e/react/cypress/e2e/shared/conditional-rendering.cy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { testConditionalRendering } from 'e2e-shared/specs/conditional-rendering.cy'

testConditionalRendering({
path: '/conditional-rendering/useQueryState',
hook: 'useQueryState'
})

testConditionalRendering({
path: '/conditional-rendering/useQueryStates',
hook: 'useQueryStates'
})
2 changes: 2 additions & 0 deletions packages/e2e/react/src/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ const routes: Record<string, React.LazyExoticComponent<() => JSX.Element>> = {
'/form/useQueryStates': lazy(() => import('./routes/form.useQueryStates')),
'/referential-stability/useQueryState': lazy(() => import('./routes/referential-stability.useQueryState')),
'/referential-stability/useQueryStates': lazy(() => import('./routes/referential-stability.useQueryStates')),
'/conditional-rendering/useQueryState': lazy(() => import('./routes/conditional-rendering.useQueryState')),
'/conditional-rendering/useQueryStates': lazy(() => import('./routes/conditional-rendering.useQueryStates')),

'/render-count/useQueryState/true/replace/false': lazy(() => import('./routes/render-count')),
'/render-count/useQueryState/true/replace/true': lazy(() => import('./routes/render-count')),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ConditionalRenderingUseQueryState } from 'e2e-shared/specs/conditional-rendering'

export default ConditionalRenderingUseQueryState
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ConditionalRenderingUseQueryStates } from 'e2e-shared/specs/conditional-rendering'

export default ConditionalRenderingUseQueryStates
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ConditionalRenderingUseQueryState } from 'e2e-shared/specs/conditional-rendering'

export default ConditionalRenderingUseQueryState
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ConditionalRenderingUseQueryStates } from 'e2e-shared/specs/conditional-rendering'

export default ConditionalRenderingUseQueryStates
11 changes: 11 additions & 0 deletions packages/e2e/remix/cypress/e2e/shared/conditional-rendering.cy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { testConditionalRendering } from 'e2e-shared/specs/conditional-rendering.cy'

testConditionalRendering({
path: '/conditional-rendering/useQueryState',
hook: 'useQueryState'
})

testConditionalRendering({
path: '/conditional-rendering/useQueryStates',
hook: 'useQueryStates'
})
22 changes: 22 additions & 0 deletions packages/e2e/shared/specs/conditional-rendering.cy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { createTest } from '../create-test'

export const testConditionalRendering = createTest(
'Conditional rendering',
({ path }) => {
it('should have the correct initial state after mounting', () => {
cy.visit(path + '?test=pass')
cy.contains('#hydration-marker', 'hydrated').should('be.hidden')
cy.get('button#mount').click()
cy.get('#state').should('have.text', 'pass')
})
it('should keep the correct state after unmounting and remounting', () => {
cy.visit(path)
cy.contains('#hydration-marker', 'hydrated').should('be.hidden')
cy.get('button#mount').click()
cy.get('button#set').click()
cy.get('button#unmount').click()
cy.get('button#mount').click()
cy.get('#state').should('have.text', 'pass')
})
}
)
60 changes: 60 additions & 0 deletions packages/e2e/shared/specs/conditional-rendering.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
'use client'

import { parseAsString, useQueryState, useQueryStates } from 'nuqs'
import { type FC, useState } from 'react'

function ConditionalRenderer({ Component }: { Component: FC }) {
const [mounted, setMounted] = useState(false)
return (
<>
<button id="mount" onClick={() => setMounted(true)}>
Mount
</button>
<button id="unmount" onClick={() => setMounted(false)}>
Unount
</button>
{mounted && <Component />}
</>
)
}

// --

function TestComponentUseQueryState() {
const [state, setState] = useQueryState('test')
return (
<>
<button id="set" onClick={() => setState('pass')}>
Set
</button>
<pre id="state">{state}</pre>
</>
)
}

function TestComponentUseQueryStates() {
const [{ state }, setState] = useQueryStates(
{
state: parseAsString
},
{ urlKeys: { state: 'test' } }
)
return (
<>
<button id="set" onClick={() => setState({ state: 'pass' })}>
Set
</button>
<pre id="state">{state}</pre>
</>
)
}

// --

export function ConditionalRenderingUseQueryState() {
return <ConditionalRenderer Component={TestComponentUseQueryState} />
}

export function ConditionalRenderingUseQueryStates() {
return <ConditionalRenderer Component={TestComponentUseQueryStates} />
}
9 changes: 6 additions & 3 deletions packages/nuqs/src/adapters/lib/react-router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ type NavigateOptions = {
}
type NavigateFn = (url: NavigateUrl, options: NavigateOptions) => void
type UseNavigate = () => NavigateFn

type UseSearchParams = () => [URLSearchParams, {}]
type UseSearchParams = (initial: URLSearchParams) => [URLSearchParams, {}]

// --

Expand Down Expand Up @@ -78,7 +77,11 @@ export function createReactRouterBasedAdapter(
}
}
function useOptimisticSearchParams() {
const [serverSearchParams] = useSearchParams()
const [serverSearchParams] = useSearchParams(
typeof location === 'undefined'
? new URLSearchParams()
: new URLSearchParams(location.search)
)
const [searchParams, setSearchParams] = useState(serverSearchParams)
useEffect(() => {
function onPopState() {
Expand Down
Loading