WXL
5 天以前 871522ed7e06fd9c62a87c178d7f5c88d7853a20
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
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Alexander Akait @alexander-akait
*/
 
"use strict";
 
const DependencyTemplate = require("../DependencyTemplate");
const makeSerializable = require("../util/makeSerializable");
const ExternalModuleInitFragment = require("./ExternalModuleInitFragment");
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 */
 
class ExternalModuleInitFragmentDependency extends NullDependency {
    /**
     * @param {string} module module
     * @param {{ name: string, value: string }[]} importSpecifiers import specifiers
     * @param {string | undefined} defaultImport default import
     */
    constructor(module, importSpecifiers, defaultImport) {
        super();
        this.importedModule = module;
        this.specifiers = importSpecifiers;
        this.default = defaultImport;
    }
 
    /**
     * @returns {string} hash update
     */
    _createHashUpdate() {
        return `${this.importedModule}${JSON.stringify(this.specifiers)}${
            this.default || "null"
        }`;
    }
 
    /**
     * @param {ObjectSerializerContext} context context
     */
    serialize(context) {
        const { write } = context;
        write(this.importedModule);
        write(this.specifiers);
        write(this.default);
    }
 
    /**
     * @param {ObjectDeserializerContext} context context
     */
    deserialize(context) {
        const { read } = context;
        this.importedModule = read();
        this.specifiers = read();
        this.default = read();
    }
}
 
makeSerializable(
    ExternalModuleInitFragmentDependency,
    "webpack/lib/dependencies/ExternalModuleConstDependency"
);
 
ExternalModuleInitFragmentDependency.Template = class ExternalModuleConstDependencyTemplate extends (
    DependencyTemplate
) {
    /**
     * @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 {ExternalModuleInitFragmentDependency} */
            (dependency);
        const { chunkInitFragments, runtimeTemplate } = templateContext;
 
        chunkInitFragments.push(
            new ExternalModuleInitFragment(
                `${runtimeTemplate.supportNodePrefixForCoreModules() ? "node:" : ""}${
                    dep.importedModule
                }`,
                dep.specifiers,
                dep.default
            )
        );
    }
};
 
module.exports = ExternalModuleInitFragmentDependency;