马宇豪
2024-07-16 f591c27b57e2418c9495bc02ae8cfff84d35bc18
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
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra, Zackary Jackson @ScriptedAlchemy, Marais Rossouw @maraisr
*/
 
"use strict";
 
const createSchemaValidation = require("../util/create-schema-validation");
const ContainerEntryDependency = require("./ContainerEntryDependency");
const ContainerEntryModuleFactory = require("./ContainerEntryModuleFactory");
const ContainerExposedDependency = require("./ContainerExposedDependency");
const { parseOptions } = require("./options");
 
/** @typedef {import("../../declarations/plugins/container/ContainerPlugin").ContainerPluginOptions} ContainerPluginOptions */
/** @typedef {import("../Compiler")} Compiler */
 
const validate = createSchemaValidation(
    require("../../schemas/plugins/container/ContainerPlugin.check.js"),
    () => require("../../schemas/plugins/container/ContainerPlugin.json"),
    {
        name: "Container Plugin",
        baseDataPath: "options"
    }
);
 
const PLUGIN_NAME = "ContainerPlugin";
 
class ContainerPlugin {
    /**
     * @param {ContainerPluginOptions} options options
     */
    constructor(options) {
        validate(options);
 
        this._options = {
            name: options.name,
            shareScope: options.shareScope || "default",
            library: options.library || {
                type: "var",
                name: options.name
            },
            runtime: options.runtime,
            filename: options.filename || undefined,
            exposes: parseOptions(
                options.exposes,
                item => ({
                    import: Array.isArray(item) ? item : [item],
                    name: undefined
                }),
                item => ({
                    import: Array.isArray(item.import) ? item.import : [item.import],
                    name: item.name || undefined
                })
            )
        };
    }
 
    /**
     * Apply the plugin
     * @param {Compiler} compiler the compiler instance
     * @returns {void}
     */
    apply(compiler) {
        const { name, exposes, shareScope, filename, library, runtime } =
            this._options;
 
        if (!compiler.options.output.enabledLibraryTypes.includes(library.type)) {
            compiler.options.output.enabledLibraryTypes.push(library.type);
        }
 
        compiler.hooks.make.tapAsync(PLUGIN_NAME, (compilation, callback) => {
            const dep = new ContainerEntryDependency(name, exposes, shareScope);
            dep.loc = { name };
            compilation.addEntry(
                compilation.options.context,
                dep,
                {
                    name,
                    filename,
                    runtime,
                    library
                },
                error => {
                    if (error) return callback(error);
                    callback();
                }
            );
        });
 
        compiler.hooks.thisCompilation.tap(
            PLUGIN_NAME,
            (compilation, { normalModuleFactory }) => {
                compilation.dependencyFactories.set(
                    ContainerEntryDependency,
                    new ContainerEntryModuleFactory()
                );
 
                compilation.dependencyFactories.set(
                    ContainerExposedDependency,
                    normalModuleFactory
                );
            }
        );
    }
}
 
module.exports = ContainerPlugin;