123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468 |
- "use strict";
- const Dependency = require("../Dependency");
- const Template = require("../Template");
- const {
- getDependencyUsedByExportsCondition
- } = require("../optimize/InnerGraph");
- const { getTrimmedIdsAndRange } = require("../util/chainedImports");
- const makeSerializable = require("../util/makeSerializable");
- const propertyAccess = require("../util/propertyAccess");
- const HarmonyImportDependency = require("./HarmonyImportDependency");
- const idsSymbol = Symbol("HarmonyImportSpecifierDependency.ids");
- const { ExportPresenceModes } = HarmonyImportDependency;
- class HarmonyImportSpecifierDependency extends HarmonyImportDependency {
-
- constructor(
- request,
- sourceOrder,
- ids,
- name,
- range,
- exportPresenceMode,
- attributes,
- idRanges // TODO webpack 6 make this non-optional. It must always be set to properly trim ids.
- ) {
- super(request, sourceOrder, attributes);
- this.ids = ids;
- this.name = name;
- this.range = range;
- this.idRanges = idRanges;
- this.exportPresenceMode = exportPresenceMode;
- this.namespaceObjectAsContext = false;
- this.call = undefined;
- this.directImport = undefined;
- this.shorthand = undefined;
- this.asiSafe = undefined;
-
- this.usedByExports = undefined;
-
- this.referencedPropertiesInDestructuring = undefined;
- }
-
- get id() {
- throw new Error("id was renamed to ids and type changed to string[]");
- }
-
- getId() {
- throw new Error("id was renamed to ids and type changed to string[]");
- }
-
- setId() {
- throw new Error("id was renamed to ids and type changed to string[]");
- }
- get type() {
- return "harmony import specifier";
- }
-
- getIds(moduleGraph) {
- const meta = moduleGraph.getMetaIfExisting(this);
- if (meta === undefined) return this.ids;
- const ids = meta[ (idsSymbol)];
- return ids !== undefined ? ids : this.ids;
- }
-
- setIds(moduleGraph, ids) {
-
- (moduleGraph.getMeta(this))[idsSymbol] = ids;
- }
-
- getCondition(moduleGraph) {
- return getDependencyUsedByExportsCondition(
- this,
- this.usedByExports,
- moduleGraph
- );
- }
-
- getModuleEvaluationSideEffectsState(moduleGraph) {
- return false;
- }
-
- getReferencedExports(moduleGraph, runtime) {
- let ids = this.getIds(moduleGraph);
- if (ids.length === 0) return this._getReferencedExportsInDestructuring();
- let namespaceObjectAsContext = this.namespaceObjectAsContext;
- if (ids[0] === "default") {
- const selfModule =
-
- (moduleGraph.getParentModule(this));
- const importedModule =
-
- (moduleGraph.getModule(this));
- switch (
- importedModule.getExportsType(
- moduleGraph,
-
- (selfModule.buildMeta).strictHarmonyModule
- )
- ) {
- case "default-only":
- case "default-with-named":
- if (ids.length === 1)
- return this._getReferencedExportsInDestructuring();
- ids = ids.slice(1);
- namespaceObjectAsContext = true;
- break;
- case "dynamic":
- return Dependency.EXPORTS_OBJECT_REFERENCED;
- }
- }
- if (
- this.call &&
- !this.directImport &&
- (namespaceObjectAsContext || ids.length > 1)
- ) {
- if (ids.length === 1) return Dependency.EXPORTS_OBJECT_REFERENCED;
- ids = ids.slice(0, -1);
- }
- return this._getReferencedExportsInDestructuring(ids);
- }
-
- _getReferencedExportsInDestructuring(ids) {
- if (this.referencedPropertiesInDestructuring) {
-
- const refs = [];
- for (const { id } of this.referencedPropertiesInDestructuring) {
- refs.push(ids ? ids.concat([id]) : [id]);
- }
- return refs;
- }
- return ids ? [ids] : Dependency.EXPORTS_OBJECT_REFERENCED;
- }
-
- _getEffectiveExportPresenceLevel(moduleGraph) {
- if (this.exportPresenceMode !== ExportPresenceModes.AUTO)
- return this.exportPresenceMode;
- const buildMeta =
-
- (
-
- (moduleGraph.getParentModule(this)).buildMeta
- );
- return buildMeta.strictHarmonyModule
- ? ExportPresenceModes.ERROR
- : ExportPresenceModes.WARN;
- }
-
- getWarnings(moduleGraph) {
- const exportsPresence = this._getEffectiveExportPresenceLevel(moduleGraph);
- if (exportsPresence === ExportPresenceModes.WARN) {
- return this._getErrors(moduleGraph);
- }
- return null;
- }
-
- getErrors(moduleGraph) {
- const exportsPresence = this._getEffectiveExportPresenceLevel(moduleGraph);
- if (exportsPresence === ExportPresenceModes.ERROR) {
- return this._getErrors(moduleGraph);
- }
- return null;
- }
-
- _getErrors(moduleGraph) {
- const ids = this.getIds(moduleGraph);
- return this.getLinkingErrors(
- moduleGraph,
- ids,
- `(imported as '${this.name}')`
- );
- }
-
- getNumberOfIdOccurrences() {
- return 0;
- }
-
- serialize(context) {
- const { write } = context;
- write(this.ids);
- write(this.name);
- write(this.range);
- write(this.idRanges);
- write(this.exportPresenceMode);
- write(this.namespaceObjectAsContext);
- write(this.call);
- write(this.directImport);
- write(this.shorthand);
- write(this.asiSafe);
- write(this.usedByExports);
- write(this.referencedPropertiesInDestructuring);
- super.serialize(context);
- }
-
- deserialize(context) {
- const { read } = context;
- this.ids = read();
- this.name = read();
- this.range = read();
- this.idRanges = read();
- this.exportPresenceMode = read();
- this.namespaceObjectAsContext = read();
- this.call = read();
- this.directImport = read();
- this.shorthand = read();
- this.asiSafe = read();
- this.usedByExports = read();
- this.referencedPropertiesInDestructuring = read();
- super.deserialize(context);
- }
- }
- makeSerializable(
- HarmonyImportSpecifierDependency,
- "webpack/lib/dependencies/HarmonyImportSpecifierDependency"
- );
- HarmonyImportSpecifierDependency.Template = class HarmonyImportSpecifierDependencyTemplate extends (
- HarmonyImportDependency.Template
- ) {
-
- apply(dependency, source, templateContext) {
- const dep = (dependency);
- const { moduleGraph, runtime } = templateContext;
- const connection = moduleGraph.getConnection(dep);
-
- if (connection && !connection.isTargetActive(runtime)) return;
- const ids = dep.getIds(moduleGraph);
- const {
- trimmedRange: [trimmedRangeStart, trimmedRangeEnd],
- trimmedIds
- } = getTrimmedIdsAndRange(ids, dep.range, dep.idRanges, moduleGraph, dep);
- const exportExpr = this._getCodeForIds(
- dep,
- source,
- templateContext,
- trimmedIds
- );
- if (dep.shorthand) {
- source.insert(trimmedRangeEnd, `: ${exportExpr}`);
- } else {
- source.replace(trimmedRangeStart, trimmedRangeEnd - 1, exportExpr);
- }
- if (dep.referencedPropertiesInDestructuring) {
- let prefixedIds = ids;
- if (ids[0] === "default") {
- const selfModule =
-
- (moduleGraph.getParentModule(dep));
- const importedModule =
-
- (moduleGraph.getModule(dep));
- const exportsType = importedModule.getExportsType(
- moduleGraph,
-
- (selfModule.buildMeta).strictHarmonyModule
- );
- if (
- (exportsType === "default-only" ||
- exportsType === "default-with-named") &&
- ids.length >= 1
- ) {
- prefixedIds = ids.slice(1);
- }
- }
- for (const {
- id,
- shorthand,
- range
- } of dep.referencedPropertiesInDestructuring) {
- const concatedIds = prefixedIds.concat([id]);
- const module = (moduleGraph.getModule(dep));
- const used = moduleGraph
- .getExportsInfo(module)
- .getUsedName(concatedIds, runtime);
- if (!used) return;
- const newName = used[used.length - 1];
- const name = concatedIds[concatedIds.length - 1];
- if (newName === name) continue;
- const comment = `${Template.toNormalComment(name)} `;
- const key = comment + JSON.stringify(newName);
- source.replace(
-
- (range)[0],
-
- (range)[1] - 1,
- shorthand ? `${key}: ${name}` : `${key}`
- );
- }
- }
- }
-
- _getCodeForIds(dep, source, templateContext, ids) {
- const { moduleGraph, module, runtime, concatenationScope } =
- templateContext;
- const connection = moduleGraph.getConnection(dep);
- let exportExpr;
- if (
- connection &&
- concatenationScope &&
- concatenationScope.isModuleInScope(connection.module)
- ) {
- if (ids.length === 0) {
- exportExpr = concatenationScope.createModuleReference(
- connection.module,
- {
- asiSafe: dep.asiSafe
- }
- );
- } else if (dep.namespaceObjectAsContext && ids.length === 1) {
- exportExpr =
- concatenationScope.createModuleReference(connection.module, {
- asiSafe: dep.asiSafe
- }) + propertyAccess(ids);
- } else {
- exportExpr = concatenationScope.createModuleReference(
- connection.module,
- {
- ids,
- call: dep.call,
- directImport: dep.directImport,
- asiSafe: dep.asiSafe
- }
- );
- }
- } else {
- super.apply(dep, source, templateContext);
- const { runtimeTemplate, initFragments, runtimeRequirements } =
- templateContext;
- exportExpr = runtimeTemplate.exportFromImport({
- moduleGraph,
- module: (moduleGraph.getModule(dep)),
- request: dep.request,
- exportName: ids,
- originModule: module,
- asiSafe: dep.shorthand ? true : dep.asiSafe,
- isCall: dep.call,
- callContext: !dep.directImport,
- defaultInterop: true,
- importVar: dep.getImportVar(moduleGraph),
- initFragments,
- runtime,
- runtimeRequirements
- });
- }
- return exportExpr;
- }
- };
- module.exports = HarmonyImportSpecifierDependency;
|