File size: 1,254 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import type React from 'react'
import type { JSX } from 'react'
import Loadable from './lazy-dynamic/loadable'

import type {
  LoadableGeneratedOptions,
  DynamicOptionsLoadingProps,
  Loader,
  LoaderComponent,
} from './lazy-dynamic/types'

export {
  type LoadableGeneratedOptions,
  type DynamicOptionsLoadingProps,
  type Loader,
  type LoaderComponent,
}

export type DynamicOptions<P = {}> = LoadableGeneratedOptions & {
  loading?: () => JSX.Element | null
  loader?: Loader<P>
  loadableGenerated?: LoadableGeneratedOptions
  modules?: string[]
  ssr?: boolean
}

export type LoadableOptions<P = {}> = DynamicOptions<P>

export type LoadableFn<P = {}> = (
  opts: LoadableOptions<P>
) => React.ComponentType<P>

export type LoadableComponent<P = {}> = React.ComponentType<P>

export default function dynamic<P = {}>(
  dynamicOptions: DynamicOptions<P> | Loader<P>,
  options?: DynamicOptions<P>
): React.ComponentType<P> {
  const loadableOptions: LoadableOptions<P> = {}

  if (typeof dynamicOptions === 'function') {
    loadableOptions.loader = dynamicOptions
  }

  const mergedOptions = {
    ...loadableOptions,
    ...options,
  }

  return Loadable({
    ...mergedOptions,
    modules: mergedOptions.loadableGenerated?.modules,
  })
}