WXL
2025-12-27 05e6b08007a86b5b10c680babc9c3bcc3a1a201b
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
 
"use strict";
 
const Template = require("../Template");
const AwaitDependenciesInitFragment = require("../async-modules/AwaitDependenciesInitFragment");
const makeSerializable = require("../util/makeSerializable");
const HarmonyImportDependency = require("./HarmonyImportDependency");
const { ImportPhaseUtils } = require("./ImportPhase");
const NullDependency = require("./NullDependency");
 
/** @typedef {import("webpack-sources").ReplaceSource} ReplaceSource */
/** @typedef {import("../Dependency")} Dependency */
/** @typedef {import("../DependencyTemplate").DependencyTemplateContext} DependencyTemplateContext */
/** @typedef {import("../javascript/JavascriptParser").Range} Range */
/** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
/** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
/** @typedef {import("./HarmonyAcceptImportDependency")} HarmonyAcceptImportDependency */
/** @typedef {import("../Module")} Module */
/** @typedef {import("../Module").ModuleId} ModuleId */
 
class HarmonyAcceptDependency extends NullDependency {
    /**
     * @param {Range} range expression range
     * @param {HarmonyAcceptImportDependency[]} dependencies import dependencies
     * @param {boolean} hasCallback true, if the range wraps an existing callback
     */
    constructor(range, dependencies, hasCallback) {
        super();
        this.range = range;
        this.dependencies = dependencies;
        this.hasCallback = hasCallback;
    }
 
    get type() {
        return "accepted harmony modules";
    }
 
    /**
     * @param {ObjectSerializerContext} context context
     */
    serialize(context) {
        const { write } = context;
        write(this.range);
        write(this.dependencies);
        write(this.hasCallback);
        super.serialize(context);
    }
 
    /**
     * @param {ObjectDeserializerContext} context context
     */
    deserialize(context) {
        const { read } = context;
        this.range = read();
        this.dependencies = read();
        this.hasCallback = read();
        super.deserialize(context);
    }
}
 
makeSerializable(
    HarmonyAcceptDependency,
    "webpack/lib/dependencies/HarmonyAcceptDependency"
);
 
HarmonyAcceptDependency.Template = class HarmonyAcceptDependencyTemplate extends (
    NullDependency.Template
) {
    /**
     * @param {Dependency} dependency the dependency for which the template should be applied
     * @param {ReplaceSource} source the current replace source which can be modified
     * @param {DependencyTemplateContext} templateContext the context object
     * @returns {void}
     */
    apply(dependency, source, templateContext) {
        const dep = /** @type {HarmonyAcceptDependency} */ (dependency);
        const {
            module,
            runtime,
            runtimeRequirements,
            runtimeTemplate,
            moduleGraph,
            chunkGraph
        } = templateContext;
 
        /**
         * @param {Dependency} dependency the dependency to get module id for
         * @returns {ModuleId | null} the module id or null if not found
         */
        const getDependencyModuleId = (dependency) =>
            chunkGraph.getModuleId(
                /** @type {Module} */ (moduleGraph.getModule(dependency))
            );
 
        /**
         * @param {Dependency} a the first dependency
         * @param {Dependency} b the second dependency
         * @returns {boolean} true if the dependencies are related
         */
        const isRelatedHarmonyImportDependency = (a, b) =>
            a !== b &&
            b instanceof HarmonyImportDependency &&
            getDependencyModuleId(a) === getDependencyModuleId(b);
 
        /**
         * HarmonyAcceptImportDependency lacks a lot of information, such as the defer property.
         * One HarmonyAcceptImportDependency may need to generate multiple ImportStatements.
         * Therefore, we find its original HarmonyImportDependency for code generation.
         * @param {HarmonyAcceptImportDependency} dependency the dependency to get harmony import dependencies for
         * @returns {HarmonyImportDependency[]} array of related harmony import dependencies
         */
        const getHarmonyImportDependencies = (dependency) => {
            const result = [];
            let deferDependency = null;
            let noDeferredDependency = null;
 
            for (const d of module.dependencies) {
                if (deferDependency && noDeferredDependency) break;
                if (isRelatedHarmonyImportDependency(dependency, d)) {
                    if (
                        ImportPhaseUtils.isDefer(
                            /** @type {HarmonyImportDependency} */ (d).phase
                        )
                    ) {
                        deferDependency = /** @type {HarmonyImportDependency} */ (d);
                    } else {
                        noDeferredDependency = /** @type {HarmonyImportDependency} */ (d);
                    }
                }
            }
            if (deferDependency) result.push(deferDependency);
            if (noDeferredDependency) result.push(noDeferredDependency);
            if (result.length === 0) {
                // fallback to the original dependency
                result.push(dependency);
            }
            return result;
        };
 
        /** @type {HarmonyImportDependency[]} */
        const syncDeps = [];
 
        /** @type {HarmonyAcceptImportDependency[]} */
        const asyncDeps = [];
 
        for (const dependency of dep.dependencies) {
            const connection = moduleGraph.getConnection(dependency);
 
            if (connection && moduleGraph.isAsync(connection.module)) {
                asyncDeps.push(dependency);
            } else {
                syncDeps.push(...getHarmonyImportDependencies(dependency));
            }
        }
 
        let content = syncDeps
            .map((dependency) => {
                const referencedModule = moduleGraph.getModule(dependency);
                return {
                    dependency,
                    runtimeCondition: referencedModule
                        ? HarmonyImportDependency.Template.getImportEmittedRuntime(
                                module,
                                referencedModule
                            )
                        : false
                };
            })
            .filter(({ runtimeCondition }) => runtimeCondition !== false)
            .map(({ dependency, runtimeCondition }) => {
                const condition = runtimeTemplate.runtimeConditionExpression({
                    chunkGraph,
                    runtime,
                    runtimeCondition,
                    runtimeRequirements
                });
                const s = dependency.getImportStatement(true, templateContext);
                const code = s[0] + s[1];
                if (condition !== "true") {
                    return `if (${condition}) {\n${Template.indent(code)}\n}\n`;
                }
                return code;
            })
            .join("");
 
        const promises = new Map(
            asyncDeps.map((dependency) => [
                dependency.getImportVar(moduleGraph),
                dependency.getModuleExports(templateContext)
            ])
        );
 
        let optAsync = "";
        if (promises.size !== 0) {
            optAsync = "async ";
            content += new AwaitDependenciesInitFragment(promises).getContent({
                ...templateContext,
                type: "javascript"
            });
        }
 
        if (dep.hasCallback) {
            if (runtimeTemplate.supportsArrowFunction()) {
                source.insert(
                    dep.range[0],
                    `${optAsync}__WEBPACK_OUTDATED_DEPENDENCIES__ => { ${content} return (`
                );
                source.insert(dep.range[1], ")(__WEBPACK_OUTDATED_DEPENDENCIES__); }");
            } else {
                source.insert(
                    dep.range[0],
                    `${optAsync}function(__WEBPACK_OUTDATED_DEPENDENCIES__) { ${content} return (`
                );
                source.insert(
                    dep.range[1],
                    ")(__WEBPACK_OUTDATED_DEPENDENCIES__); }.bind(this)"
                );
            }
            return;
        }
 
        const arrow = runtimeTemplate.supportsArrowFunction();
        source.insert(
            dep.range[1] - 0.5,
            `, ${arrow ? `${optAsync}() =>` : `${optAsync}function()`} { ${content} }`
        );
    }
};
 
module.exports = HarmonyAcceptDependency;