123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- "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;
-
- this.parent = undefined;
- }
-
- 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();
- }
- };
|