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

Remove extra suspense boundary for default next/dynamic #64716

Merged
merged 2 commits into from
Apr 30, 2024
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
1 change: 1 addition & 0 deletions packages/next/src/shared/lib/dynamic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export type DynamicOptions<P = {}> = LoadableGeneratedOptions & {
loadableGenerated?: LoadableGeneratedOptions
ssr?: boolean
/**
* TODO: remove this in next major version v15
* @deprecated `suspense` prop is not required anymore
*/
suspense?: boolean
Expand Down
9 changes: 6 additions & 3 deletions packages/next/src/shared/lib/lazy-dynamic/loadable.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Suspense, lazy } from 'react'
import { Suspense, Fragment, lazy } from 'react'
import { BailoutToCSR } from './dynamic-bailout-to-csr'
import type { ComponentModule } from './types'
import { PreloadCss } from './preload-css'
Expand Down Expand Up @@ -48,7 +48,10 @@ function Loadable(options: LoadableOptions) {
<Loading isLoading={true} pastDelay={true} error={null} />
) : null

const children = opts.ssr ? (
const isSSR = opts.ssr
const Wrap = isSSR ? Fragment : Suspense
const wrapProps = isSSR ? {} : { fallback: fallbackElement }
const children = isSSR ? (
<>
{/* During SSR, we need to preload the CSS from the dynamic component to avoid flash of unstyled content */}
{typeof window === 'undefined' ? (
Expand All @@ -62,7 +65,7 @@ function Loadable(options: LoadableOptions) {
</BailoutToCSR>
)

return <Suspense fallback={fallbackElement}>{children}</Suspense>
return <Wrap {...wrapProps}>{children}</Wrap>
}

LoadableComponent.displayName = 'LoadableComponent'
Expand Down
12 changes: 12 additions & 0 deletions test/e2e/app-dir/dynamic/app/default/dynamic-component.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const isDevTest = false

const DynamicImportComponent = () => {
if (isDevTest && typeof window === 'undefined') {
throw new Error('This component should only be rendered on the client side')
}
return (
<div id="dynamic-component">This is a dynamically imported component</div>
)
}

export default DynamicImportComponent
17 changes: 17 additions & 0 deletions test/e2e/app-dir/dynamic/app/default/page.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
'use client'

import dynamic from 'next/dynamic'

const DynamicHeader = dynamic(() => import('./dynamic-component'), {
loading: () => <p>Loading...</p>,
})

const ClientWrapper = () => {
return (
<div>
<DynamicHeader />
</div>
)
}

export default ClientWrapper
23 changes: 22 additions & 1 deletion test/e2e/app-dir/dynamic/dynamic.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { nextTestSetup } from 'e2e-utils'
import { retry } from 'next-test-utils'

describe('app dir - next/dynamic', () => {
const { next, isNextStart, skipped } = nextTestSetup({
const { next, isNextStart, isNextDev, skipped } = nextTestSetup({
files: __dirname,
skipDeployment: true,
})
Expand Down Expand Up @@ -57,6 +58,26 @@ describe('app dir - next/dynamic', () => {
expect($('h1').text()).toBe('hello')
})

it('should not render loading by default', async () => {
const $ = await next.render$('/default')
expect($('#dynamic-component').text()).not.toContain('loading')
})

if (isNextDev) {
it('should directly raise error when dynamic component error on server', async () => {
const pagePath = 'app/default/dynamic-component.js'
const page = await next.readFile(pagePath)
await next.patchFile(
pagePath,
page.replace('const isDevTest = false', 'const isDevTest = true')
)
await retry(async () => {
const { status } = await next.fetch('/default')
expect(status).toBe(500)
})
})
}

describe('no SSR', () => {
it('should not render client component imported through ssr: false in client components in edge runtime', async () => {
// noSSR should not show up in html
Expand Down
Loading