WXL
3 天以前 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7
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
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Alexander Akait @alexander-akait
*/
 
"use strict";
 
const NormalModule = require("./NormalModule");
const makeSerializable = require("./util/makeSerializable");
 
/** @typedef {import("./Module")} Module */
/** @typedef {import("./NormalModule").NormalModuleCreateData} NormalModuleCreateData */
/** @typedef {import("./RequestShortener")} RequestShortener */
/** @typedef {import("./serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
/** @typedef {import("./serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
/** @typedef {import("../declarations/WebpackOptions").CssParserExportType} CssParserExportType */
 
/** @typedef {string | undefined} CssLayer */
/** @typedef {string | undefined} Supports */
/** @typedef {string | undefined} Media */
/** @typedef {[CssLayer, Supports, Media]} InheritanceItem */
/** @typedef {InheritanceItem[]} Inheritance */
 
/** @typedef {NormalModuleCreateData & { cssLayer: CssLayer, supports: Supports, media: Media, inheritance?: Inheritance, exportType?: CssParserExportType }} CSSModuleCreateData */
 
class CssModule extends NormalModule {
    /**
     * Creates an instance of CssModule.
     * @param {CSSModuleCreateData} options options object
     */
    constructor(options) {
        super(options);
 
        // Avoid override `layer` for `Module` class, because it is a feature to run module in specific layer
        /** @type {CSSModuleCreateData['cssLayer']} */
        this.cssLayer = options.cssLayer;
        /** @type {CSSModuleCreateData['supports']} */
        this.supports = options.supports;
        /** @type {CSSModuleCreateData['media']} */
        this.media = options.media;
        /** @type {CSSModuleCreateData['inheritance']} */
        this.inheritance = options.inheritance;
        /** @type {CSSModuleCreateData['exportType']} */
        this.exportType = options.exportType;
    }
 
    /**
     * Returns the unique identifier used to reference this module.
     * @returns {string} a unique identifier of the module
     */
    identifier() {
        let identifier = super.identifier();
 
        if (this.cssLayer) {
            identifier += `|${this.cssLayer}`;
        }
 
        if (this.supports) {
            identifier += `|${this.supports}`;
        }
 
        if (this.media) {
            identifier += `|${this.media}`;
        }
 
        if (this.inheritance) {
            const inheritance = this.inheritance.map(
                (item, index) =>
                    `inheritance_${index}|${item[0] || ""}|${item[1] || ""}|${
                        item[2] || ""
                    }`
            );
 
            identifier += `|${inheritance.join("|")}`;
        }
 
        if (this.exportType) {
            identifier += `|${this.exportType}`;
        }
 
        // We generate extra code for HMR, so we need to invalidate the module
        if (this.hot) {
            identifier += `|${this.hot}`;
        }
 
        return identifier;
    }
 
    /**
     * Returns a human-readable identifier for this module.
     * @param {RequestShortener} requestShortener the request shortener
     * @returns {string} a user readable identifier of the module
     */
    readableIdentifier(requestShortener) {
        const readableIdentifier = super.readableIdentifier(requestShortener);
 
        let identifier = `css ${readableIdentifier}`;
 
        if (this.cssLayer) {
            identifier += ` (layer: ${this.cssLayer})`;
        }
 
        if (this.supports) {
            identifier += ` (supports: ${this.supports})`;
        }
 
        if (this.media) {
            identifier += ` (media: ${this.media})`;
        }
 
        if (this.exportType) {
            identifier += ` (exportType: ${this.exportType})`;
        }
 
        return identifier;
    }
 
    /**
     * Assuming this module is in the cache. Update the (cached) module with
     * the fresh module from the factory. Usually updates internal references
     * and properties.
     * @param {Module} module fresh module
     * @returns {void}
     */
    updateCacheModule(module) {
        super.updateCacheModule(module);
        const m = /** @type {CssModule} */ (module);
        this.cssLayer = m.cssLayer;
        this.supports = m.supports;
        this.media = m.media;
        this.inheritance = m.inheritance;
        this.exportType = m.exportType;
    }
 
    /**
     * Serializes this instance into the provided serializer context.
     * @param {ObjectSerializerContext} context context
     */
    serialize(context) {
        const { write } = context;
        write(this.cssLayer);
        write(this.supports);
        write(this.media);
        write(this.inheritance);
        write(this.exportType);
        super.serialize(context);
    }
 
    /**
     * Restores this instance from the provided deserializer context.
     * @param {ObjectDeserializerContext} context context
     * @returns {CssModule} the deserialized object
     */
    static deserialize(context) {
        const obj = new CssModule({
            // will be deserialized by Module
            layer: /** @type {EXPECTED_ANY} */ (null),
            type: "",
            // will be filled by updateCacheModule
            resource: "",
            context: "",
            request: /** @type {EXPECTED_ANY} */ (null),
            userRequest: /** @type {EXPECTED_ANY} */ (null),
            rawRequest: /** @type {EXPECTED_ANY} */ (null),
            loaders: /** @type {EXPECTED_ANY} */ (null),
            matchResource: /** @type {EXPECTED_ANY} */ (null),
            parser: /** @type {EXPECTED_ANY} */ (null),
            parserOptions: /** @type {EXPECTED_ANY} */ (null),
            generator: /** @type {EXPECTED_ANY} */ (null),
            generatorOptions: /** @type {EXPECTED_ANY} */ (null),
            resolveOptions: /** @type {EXPECTED_ANY} */ (null),
            cssLayer: /** @type {EXPECTED_ANY} */ (null),
            supports: /** @type {EXPECTED_ANY} */ (null),
            media: /** @type {EXPECTED_ANY} */ (null),
            inheritance: /** @type {EXPECTED_ANY} */ (null),
            extractSourceMap: /** @type {EXPECTED_ANY} */ (null),
            exportType: /** @type {EXPECTED_ANY} */ (null)
        });
        obj.deserialize(context);
        return obj;
    }
 
    /**
     * Restores this instance from the provided deserializer context.
     * @param {ObjectDeserializerContext} context context
     */
    deserialize(context) {
        const { read } = context;
        this.cssLayer = read();
        this.supports = read();
        this.media = read();
        this.inheritance = read();
        this.exportType = read();
        super.deserialize(context);
    }
}
 
makeSerializable(CssModule, "webpack/lib/CssModule");
 
module.exports = CssModule;