| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| import type { |
| NodePath, |
| types as BabelTypes, |
| } from 'next/dist/compiled/babel/core' |
| import type { PluginObj } from 'next/dist/compiled/babel/core' |
|
|
| import { relative as relativePath } from 'path' |
|
|
| export default function ({ |
| types: t, |
| }: { |
| types: typeof BabelTypes |
| }): PluginObj { |
| return { |
| visitor: { |
| ImportDeclaration( |
| path: NodePath<BabelTypes.ImportDeclaration>, |
| state: any |
| ) { |
| let source = path.node.source.value |
| if (source !== 'next/dynamic') return |
|
|
| let defaultSpecifier = path.get('specifiers').find((specifier) => { |
| return specifier.isImportDefaultSpecifier() |
| }) |
|
|
| if (!defaultSpecifier) return |
|
|
| const bindingName = defaultSpecifier.node.local.name |
| const binding = path.scope.getBinding(bindingName) |
|
|
| if (!binding) { |
| return |
| } |
|
|
| binding.referencePaths.forEach((refPath) => { |
| let callExpression = refPath.parentPath |
|
|
| if ( |
| callExpression.isMemberExpression() && |
| callExpression.node.computed === false |
| ) { |
| const property = callExpression.get('property') |
| if ( |
| !Array.isArray(property) && |
| property.isIdentifier({ name: 'Map' }) |
| ) { |
| callExpression = callExpression.parentPath |
| } |
| } |
|
|
| if (!callExpression.isCallExpression()) return |
|
|
| const callExpression_ = |
| callExpression as NodePath<BabelTypes.CallExpression> |
|
|
| let args = callExpression_.get('arguments') |
| if (args.length > 2) { |
| throw callExpression_.buildCodeFrameError( |
| 'next/dynamic only accepts 2 arguments' |
| ) |
| } |
|
|
| if (!args[0]) { |
| return |
| } |
|
|
| let loader |
| let options |
|
|
| if (args[0].isObjectExpression()) { |
| options = args[0] |
| } else { |
| if (!args[1]) { |
| callExpression_.node.arguments.push(t.objectExpression([])) |
| } |
| |
| args = callExpression_.get('arguments') |
| loader = args[0] |
| options = args[1] |
| } |
|
|
| if (!options.isObjectExpression()) return |
| const options_ = options as NodePath<BabelTypes.ObjectExpression> |
|
|
| let properties = options_.get('properties') |
| let propertiesMap: { |
| [key: string]: NodePath< |
| | BabelTypes.ObjectProperty |
| | BabelTypes.ObjectMethod |
| | BabelTypes.SpreadElement |
| | BabelTypes.BooleanLiteral |
| > |
| } = {} |
|
|
| properties.forEach((property) => { |
| const key: any = property.get('key') |
| propertiesMap[key.node.name] = property |
| }) |
|
|
| if (propertiesMap.loadableGenerated) { |
| return |
| } |
|
|
| if (propertiesMap.loader) { |
| loader = propertiesMap.loader.get('value') |
| } |
|
|
| if (propertiesMap.modules) { |
| loader = propertiesMap.modules.get('value') |
| } |
|
|
| if (!loader || Array.isArray(loader)) { |
| return |
| } |
| const dynamicImports: BabelTypes.Expression[] = [] |
| const dynamicKeys: BabelTypes.Expression[] = [] |
|
|
| if (propertiesMap.ssr) { |
| const ssr = propertiesMap.ssr.get('value') |
| const nodePath = Array.isArray(ssr) ? undefined : ssr |
|
|
| if (nodePath) { |
| const nonSSR = |
| nodePath.node.type === 'BooleanLiteral' && |
| nodePath.node.value === false |
| |
| if (nonSSR && loader && state.file.opts.caller?.isServer) { |
| loader.replaceWith( |
| t.arrowFunctionExpression([], t.nullLiteral(), true) |
| ) |
| } |
| } |
| } |
|
|
| loader.traverse({ |
| Import(importPath) { |
| const importArguments = importPath.parentPath.get('arguments') |
| if (!Array.isArray(importArguments)) return |
| const node: any = importArguments[0].node |
| dynamicImports.push(node) |
| dynamicKeys.push( |
| t.binaryExpression( |
| '+', |
| t.stringLiteral( |
| (state.file.opts.caller?.srcDir |
| ? relativePath( |
| state.file.opts.caller.srcDir, |
| state.file.opts.filename |
| ) |
| : state.file.opts.filename) + ' -> ' |
| ), |
| node |
| ) |
| ) |
| }, |
| }) |
|
|
| if (!dynamicImports.length) return |
|
|
| options.node.properties.push( |
| t.objectProperty( |
| t.identifier('loadableGenerated'), |
| t.objectExpression( |
| state.file.opts.caller?.isDev || |
| state.file.opts.caller?.isServer |
| ? [ |
| t.objectProperty( |
| t.identifier('modules'), |
| t.arrayExpression(dynamicKeys) |
| ), |
| ] |
| : [ |
| t.objectProperty( |
| t.identifier('webpack'), |
| t.arrowFunctionExpression( |
| [], |
| t.arrayExpression( |
| dynamicImports.map((dynamicImport) => { |
| return t.callExpression( |
| t.memberExpression( |
| t.identifier('require'), |
| t.identifier('resolveWeak') |
| ), |
| [dynamicImport] |
| ) |
| }) |
| ) |
| ) |
| ), |
| ] |
| ) |
| ) |
| ) |
|
|
| |
| |
| |
| if (loader.isCallExpression()) { |
| const arrowFunction = t.arrowFunctionExpression([], loader.node) |
| loader.replaceWith(arrowFunction) |
| } |
| }) |
| }, |
| }, |
| } |
| } |
|
|