forked from lencioni/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AsyncDependenciesBlock.js
66 lines (57 loc) · 1.32 KB
/
AsyncDependenciesBlock.js
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
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const DependenciesBlock = require("./DependenciesBlock");
module.exports = class AsyncDependenciesBlock extends DependenciesBlock {
constructor(groupOptions, module, loc, request) {
super();
if (typeof groupOptions === "string") {
groupOptions = { name: groupOptions };
} else if (!groupOptions) {
groupOptions = { name: undefined };
}
this.groupOptions = groupOptions;
this.chunkGroup = undefined;
this.module = module;
this.loc = loc;
this.request = request;
}
get chunkName() {
return this.groupOptions.name;
}
set chunkName(value) {
this.groupOptions.name = value;
}
get chunks() {
throw new Error("Moved to AsyncDependenciesBlock.chunkGroup");
}
set chunks(value) {
throw new Error("Moved to AsyncDependenciesBlock.chunkGroup");
}
updateHash(hash) {
hash.update(JSON.stringify(this.groupOptions));
hash.update(
(this.chunkGroup &&
this.chunkGroup.chunks
.map(chunk => {
return chunk.id !== null ? chunk.id : "";
})
.join(",")) ||
""
);
super.updateHash(hash);
}
disconnect() {
this.chunkGroup = undefined;
super.disconnect();
}
unseal() {
this.chunkGroup = undefined;
super.unseal();
}
sortItems() {
super.sortItems();
}
};