import React, { lazy, Suspense } from 'react' import Loadable from './loadable' import NoSSR from './dynamic-no-ssr' type ComponentModule

= { default: React.ComponentType

} export type LoaderComponent

= Promise> export type Loader

= () => LoaderComponent

export type LoaderMap = { [module: string]: () => Loader } export type LoadableGeneratedOptions = { webpack?(): any modules?(): LoaderMap } export type DynamicOptionsLoadingProps = { error?: Error | null isLoading?: boolean pastDelay?: boolean retry?: () => void timedOut?: boolean } // Normalize loader to return the module as form { default: Component } for `React.lazy`. // Also for backward compatible since next/dynamic allows to resolve a component directly with loader // Client component reference proxy need to be converted to a module. function convertModule(mod: ComponentModule) { return { default: mod.default || mod } } export type DynamicOptions

= LoadableGeneratedOptions & { loading?: (loadingProps: DynamicOptionsLoadingProps) => JSX.Element | null loader?: Loader

| LoaderMap loadableGenerated?: LoadableGeneratedOptions ssr?: boolean /** * @deprecated `suspense` prop is not required anymore */ suspense?: boolean } export type LoadableOptions

= DynamicOptions

export type LoadableFn

= ( opts: LoadableOptions

) => React.ComponentType

export type LoadableComponent

= React.ComponentType

export function noSSR

( LoadableInitializer: Loader, loadableOptions: DynamicOptions

): React.ComponentType

{ // Removing webpack and modules means react-loadable won't try preloading delete loadableOptions.webpack delete loadableOptions.modules const NoSSRComponent = lazy(LoadableInitializer) const Loading = loadableOptions.loading! const fallback = ( ) return () => ( ) } export default function dynamic

( dynamicOptions: DynamicOptions

| Loader

, options?: DynamicOptions

): React.ComponentType

{ let loadableFn: LoadableFn

= Loadable let loadableOptions: LoadableOptions

= { // A loading component is not required, so we default it loading: ({ error, isLoading, pastDelay }) => { if (!pastDelay) return null if (process.env.NODE_ENV !== 'production') { if (isLoading) { return null } if (error) { return (

{error.message}
{error.stack}

) } } return null }, } // Support for direct import(), eg: dynamic(import('../hello-world')) // Note that this is only kept for the edge case where someone is passing in a promise as first argument // The react-loadable babel plugin will turn dynamic(import('../hello-world')) into dynamic(() => import('../hello-world')) // To make sure we don't execute the import without rendering first if (dynamicOptions instanceof Promise) { loadableOptions.loader = () => dynamicOptions // Support for having import as a function, eg: dynamic(() => import('../hello-world')) } else if (typeof dynamicOptions === 'function') { loadableOptions.loader = dynamicOptions // Support for having first argument being options, eg: dynamic({loader: import('../hello-world')}) } else if (typeof dynamicOptions === 'object') { loadableOptions = { ...loadableOptions, ...dynamicOptions } } // Support for passing options, eg: dynamic(import('../hello-world'), {loading: () =>

Loading something

}) loadableOptions = { ...loadableOptions, ...options } const loaderFn = loadableOptions.loader as Loader

const loader = () => loaderFn().then(convertModule) // coming from build/babel/plugins/react-loadable-plugin.js if (loadableOptions.loadableGenerated) { loadableOptions = { ...loadableOptions, ...loadableOptions.loadableGenerated, loader, } delete loadableOptions.loadableGenerated } // support for disabling server side rendering, eg: dynamic(() => import('../hello-world'), {ssr: false}). if (typeof loadableOptions.ssr === 'boolean') { if (!loadableOptions.ssr) { delete loadableOptions.ssr return noSSR(loader as Loader, loadableOptions) } delete loadableOptions.ssr } return loadableFn(loadableOptions) }