路泰科技体检小程序UI设计新版本
1
wwl
6 天以前 a6cdbcfe28fcc40ebb4919f57d60fb20122e8e57
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
 
"use strict";
 
const RawSource = require("./RawSource");
const Source = require("./Source");
const { getMap, getSourceAndMap } = require("./helpers/getFromStreamChunks");
const streamChunks = require("./helpers/streamChunks");
 
/** @typedef {import("./CompatSource").SourceLike} SourceLike */
/** @typedef {import("./Source").HashLike} HashLike */
/** @typedef {import("./Source").MapOptions} MapOptions */
/** @typedef {import("./Source").RawSourceMap} RawSourceMap */
/** @typedef {import("./Source").SourceAndMap} SourceAndMap */
/** @typedef {import("./Source").SourceValue} SourceValue */
/** @typedef {import("./helpers/getGeneratedSourceInfo").GeneratedSourceInfo} GeneratedSourceInfo */
/** @typedef {import("./helpers/streamChunks").OnChunk} OnChunk */
/** @typedef {import("./helpers/streamChunks").OnName} OnName */
/** @typedef {import("./helpers/streamChunks").OnSource} OnSource */
/** @typedef {import("./helpers/streamChunks").Options} Options */
 
/** @typedef {string | Source | SourceLike} Child */
 
const stringsAsRawSources = new WeakSet();
 
class ConcatSource extends Source {
    /**
     * @param {Child[]} args children
     */
    constructor(...args) {
        super();
        /**
         * @private
         * @type {Child[]}
         */
        this._children = [];
 
        for (const item of args) {
            if (item instanceof ConcatSource) {
                for (const child of item._children) {
                    this._children.push(child);
                }
            } else {
                this._children.push(item);
            }
        }
 
        this._isOptimized = args.length === 0;
    }
 
    /**
     * @returns {Source[]} children
     */
    getChildren() {
        if (!this._isOptimized) this._optimize();
        return /** @type {Source[]} */ (this._children);
    }
 
    /**
     * @param {Child} item item
     * @returns {void}
     */
    add(item) {
        if (item instanceof ConcatSource) {
            for (const child of item._children) {
                this._children.push(child);
            }
        } else {
            this._children.push(item);
        }
        this._isOptimized = false;
    }
 
    /**
     * @param {Child[]} items items
     * @returns {void}
     */
    addAllSkipOptimizing(items) {
        for (const item of items) {
            this._children.push(item);
        }
    }
 
    buffer() {
        if (!this._isOptimized) this._optimize();
        /** @type {Buffer[]} */
        const buffers = [];
        for (const child of /** @type {SourceLike[]} */ (this._children)) {
            if (typeof child.buffer === "function") {
                buffers.push(child.buffer());
            } else {
                const bufferOrString = child.source();
                if (Buffer.isBuffer(bufferOrString)) {
                    buffers.push(bufferOrString);
                } else {
                    // This will not happen
                    buffers.push(Buffer.from(bufferOrString, "utf8"));
                }
            }
        }
        return Buffer.concat(buffers);
    }
 
    /**
     * @returns {SourceValue} source
     */
    source() {
        if (!this._isOptimized) this._optimize();
        let source = "";
        for (const child of this._children) {
            source += /** @type {Source} */ (child).source();
        }
        return source;
    }
 
    size() {
        if (!this._isOptimized) this._optimize();
        let size = 0;
        for (const child of this._children) {
            size += /** @type {Source} */ (child).size();
        }
        return size;
    }
 
    /**
     * @param {MapOptions=} options map options
     * @returns {RawSourceMap | null} map
     */
    map(options) {
        return getMap(this, options);
    }
 
    /**
     * @param {MapOptions=} options map options
     * @returns {SourceAndMap} source and map
     */
    sourceAndMap(options) {
        return getSourceAndMap(this, options);
    }
 
    /**
     * @param {Options} options options
     * @param {OnChunk} onChunk called for each chunk of code
     * @param {OnSource} onSource called for each source
     * @param {OnName} onName called for each name
     * @returns {GeneratedSourceInfo} generated source info
     */
    streamChunks(options, onChunk, onSource, onName) {
        if (!this._isOptimized) this._optimize();
        if (this._children.length === 1) {
            return /** @type {ConcatSource[]} */ (this._children)[0].streamChunks(
                options,
                onChunk,
                onSource,
                onName,
            );
        }
        let currentLineOffset = 0;
        let currentColumnOffset = 0;
        const sourceMapping = new Map();
        const nameMapping = new Map();
        const finalSource = Boolean(options && options.finalSource);
        let code = "";
        let needToCloseMapping = false;
        for (const item of /** @type {Source[]} */ (this._children)) {
            /** @type {number[]} */
            const sourceIndexMapping = [];
            /** @type {number[]} */
            const nameIndexMapping = [];
            let lastMappingLine = 0;
            const { generatedLine, generatedColumn, source } = streamChunks(
                item,
                options,
                // eslint-disable-next-line no-loop-func
                (
                    chunk,
                    generatedLine,
                    generatedColumn,
                    sourceIndex,
                    originalLine,
                    originalColumn,
                    nameIndex,
                ) => {
                    const line = generatedLine + currentLineOffset;
                    const column =
                        generatedLine === 1
                            ? generatedColumn + currentColumnOffset
                            : generatedColumn;
                    if (needToCloseMapping) {
                        if (generatedLine !== 1 || generatedColumn !== 0) {
                            onChunk(
                                undefined,
                                currentLineOffset + 1,
                                currentColumnOffset,
                                -1,
                                -1,
                                -1,
                                -1,
                            );
                        }
                        needToCloseMapping = false;
                    }
                    const resultSourceIndex =
                        sourceIndex < 0 || sourceIndex >= sourceIndexMapping.length
                            ? -1
                            : sourceIndexMapping[sourceIndex];
                    const resultNameIndex =
                        nameIndex < 0 || nameIndex >= nameIndexMapping.length
                            ? -1
                            : nameIndexMapping[nameIndex];
                    lastMappingLine = resultSourceIndex < 0 ? 0 : generatedLine;
                    let _chunk;
                    // When using finalSource, we process the entire source code at once at the end, rather than chunk by chunk
                    if (finalSource) {
                        if (chunk !== undefined) code += chunk;
                    } else {
                        _chunk = chunk;
                    }
                    if (resultSourceIndex < 0) {
                        onChunk(_chunk, line, column, -1, -1, -1, -1);
                    } else {
                        onChunk(
                            _chunk,
                            line,
                            column,
                            resultSourceIndex,
                            originalLine,
                            originalColumn,
                            resultNameIndex,
                        );
                    }
                },
                (i, source, sourceContent) => {
                    let globalIndex = sourceMapping.get(source);
                    if (globalIndex === undefined) {
                        sourceMapping.set(source, (globalIndex = sourceMapping.size));
                        onSource(globalIndex, source, sourceContent);
                    }
                    sourceIndexMapping[i] = globalIndex;
                },
                (i, name) => {
                    let globalIndex = nameMapping.get(name);
                    if (globalIndex === undefined) {
                        nameMapping.set(name, (globalIndex = nameMapping.size));
                        onName(globalIndex, name);
                    }
                    nameIndexMapping[i] = globalIndex;
                },
            );
            if (source !== undefined) code += source;
            if (
                needToCloseMapping &&
                (generatedLine !== 1 || generatedColumn !== 0)
            ) {
                onChunk(
                    undefined,
                    currentLineOffset + 1,
                    currentColumnOffset,
                    -1,
                    -1,
                    -1,
                    -1,
                );
                needToCloseMapping = false;
            }
            if (/** @type {number} */ (generatedLine) > 1) {
                currentColumnOffset = /** @type {number} */ (generatedColumn);
            } else {
                currentColumnOffset += /** @type {number} */ (generatedColumn);
            }
            needToCloseMapping =
                needToCloseMapping ||
                (finalSource && lastMappingLine === generatedLine);
            currentLineOffset += /** @type {number} */ (generatedLine) - 1;
        }
        return {
            generatedLine: currentLineOffset + 1,
            generatedColumn: currentColumnOffset,
            source: finalSource ? code : undefined,
        };
    }
 
    /**
     * @param {HashLike} hash hash
     * @returns {void}
     */
    updateHash(hash) {
        if (!this._isOptimized) this._optimize();
        hash.update("ConcatSource");
        for (const item of this._children) {
            /** @type {Source} */
            (item).updateHash(hash);
        }
    }
 
    _optimize() {
        const newChildren = [];
        let currentString;
        /** @type {undefined | string | [string, string] | SourceLike} */
        let currentRawSources;
        /**
         * @param {string} string string
         * @returns {void}
         */
        const addStringToRawSources = (string) => {
            if (currentRawSources === undefined) {
                currentRawSources = string;
            } else if (Array.isArray(currentRawSources)) {
                currentRawSources.push(string);
            } else {
                currentRawSources = [
                    typeof currentRawSources === "string"
                        ? currentRawSources
                        : /** @type {string} */ (currentRawSources.source()),
                    string,
                ];
            }
        };
        /**
         * @param {SourceLike} source source
         * @returns {void}
         */
        const addSourceToRawSources = (source) => {
            if (currentRawSources === undefined) {
                currentRawSources = source;
            } else if (Array.isArray(currentRawSources)) {
                currentRawSources.push(
                    /** @type {string} */
                    (source.source()),
                );
            } else {
                currentRawSources = [
                    typeof currentRawSources === "string"
                        ? currentRawSources
                        : /** @type {string} */ (currentRawSources.source()),
                    /** @type {string} */
                    (source.source()),
                ];
            }
        };
        const mergeRawSources = () => {
            if (Array.isArray(currentRawSources)) {
                const rawSource = new RawSource(currentRawSources.join(""));
                stringsAsRawSources.add(rawSource);
                newChildren.push(rawSource);
            } else if (typeof currentRawSources === "string") {
                const rawSource = new RawSource(currentRawSources);
                stringsAsRawSources.add(rawSource);
                newChildren.push(rawSource);
            } else {
                newChildren.push(currentRawSources);
            }
        };
        for (const child of this._children) {
            if (typeof child === "string") {
                if (currentString === undefined) {
                    currentString = child;
                } else {
                    currentString += child;
                }
            } else {
                if (currentString !== undefined) {
                    addStringToRawSources(currentString);
                    currentString = undefined;
                }
                if (stringsAsRawSources.has(child)) {
                    addSourceToRawSources(
                        /** @type {SourceLike} */
                        (child),
                    );
                } else {
                    if (currentRawSources !== undefined) {
                        mergeRawSources();
                        currentRawSources = undefined;
                    }
                    newChildren.push(child);
                }
            }
        }
        if (currentString !== undefined) {
            addStringToRawSources(currentString);
        }
        if (currentRawSources !== undefined) {
            mergeRawSources();
        }
        this._children = newChildren;
        this._isOptimized = true;
    }
}
 
module.exports = ConcatSource;