WXL
3 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
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
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Natsu @xiaoxiaojx
*/
 
"use strict";
 
const InitFragment = require("../InitFragment");
const makeSerializable = require("../util/makeSerializable");
const NullDependency = require("./NullDependency");
 
/** @typedef {import("webpack-sources").ReplaceSource} ReplaceSource */
/** @typedef {import("../Dependency")} Dependency */
/** @typedef {import("../DependencyTemplate").DependencyTemplateContext} DependencyTemplateContext */
/** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
/** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
/**
 * A dependency that adds an init fragment to the module
 */
class ModuleInitFragmentDependency extends NullDependency {
    /**
     * Creates an instance of ModuleInitFragmentDependency.
     * @param {string} initCode the initialization code
     * @param {string[]} runtimeRequirements runtime requirements
     * @param {string=} key unique key to avoid emitting the same initialization code twice
     */
    constructor(initCode, runtimeRequirements, key) {
        super();
        this.initCode = initCode;
        this.runtimeRequirements = runtimeRequirements;
        this.key = key;
    }
 
    /**
     * Serializes this instance into the provided serializer context.
     * @param {ObjectSerializerContext} context context
     */
    serialize(context) {
        const { write } = context;
        write(this.initCode);
        write(this.runtimeRequirements);
        write(this.key);
        super.serialize(context);
    }
 
    /**
     * Restores this instance from the provided deserializer context.
     * @param {ObjectDeserializerContext} context context
     */
    deserialize(context) {
        const { read } = context;
        this.initCode = read();
        this.runtimeRequirements = read();
        this.key = read();
        super.deserialize(context);
    }
}
 
makeSerializable(
    ModuleInitFragmentDependency,
    "webpack/lib/dependencies/ModuleInitFragmentDependency"
);
 
ModuleInitFragmentDependency.Template = class ModuleInitFragmentDependencyTemplate extends (
    NullDependency.Template
) {
    /**
     * Applies the plugin by registering its hooks on the compiler.
     * @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, { initFragments, runtimeRequirements }) {
        const dep = /** @type {ModuleInitFragmentDependency} */ (dependency);
        for (const req of dep.runtimeRequirements) {
            runtimeRequirements.add(req);
        }
        initFragments.push(
            new InitFragment(
                dep.initCode,
                InitFragment.STAGE_CONSTANTS,
                0,
                dep.key,
                undefined
            )
        );
    }
};
 
module.exports = ModuleInitFragmentDependency;