Sha256: c765f18d630c97a6d2a37dac617d275ff82a97ad02bc76901872ddd4282432f0

Contents?: true

Size: 1.59 KB

Versions: 29

Compression:

Stored size: 1.59 KB

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
"use strict";

const Template = require("./Template");
const HotUpdateChunk = require("./HotUpdateChunk");
const { Tapable, SyncWaterfallHook, SyncHook } = require("tapable");

module.exports = class HotUpdateChunkTemplate extends Tapable {
	constructor(outputOptions) {
		super();
		this.outputOptions = outputOptions || {};
		this.hooks = {
			modules: new SyncWaterfallHook([
				"source",
				"modules",
				"removedModules",
				"moduleTemplate",
				"dependencyTemplates"
			]),
			render: new SyncWaterfallHook([
				"source",
				"modules",
				"removedModules",
				"hash",
				"id",
				"moduleTemplate",
				"dependencyTemplates"
			]),
			hash: new SyncHook(["hash"])
		};
	}

	render(
		id,
		modules,
		removedModules,
		hash,
		moduleTemplate,
		dependencyTemplates
	) {
		const hotUpdateChunk = new HotUpdateChunk();
		hotUpdateChunk.id = id;
		hotUpdateChunk.setModules(modules);
		hotUpdateChunk.removedModules = removedModules;
		const modulesSource = Template.renderChunkModules(
			hotUpdateChunk,
			m => typeof m.source === "function",
			moduleTemplate,
			dependencyTemplates
		);
		const core = this.hooks.modules.call(
			modulesSource,
			modules,
			removedModules,
			moduleTemplate,
			dependencyTemplates
		);
		const source = this.hooks.render.call(
			core,
			modules,
			removedModules,
			hash,
			id,
			moduleTemplate,
			dependencyTemplates
		);
		return source;
	}

	updateHash(hash) {
		hash.update("HotUpdateChunkTemplate");
		hash.update("1");
		this.hooks.hash.call(hash);
	}
};

Version data entries

29 entries across 28 versions & 10 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
disco_app-0.18.0 test/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
disco_app-0.18.2 test/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
disco_app-0.16.1 test/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
disco_app-0.15.2 test/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
disco_app-0.18.4 test/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
disco_app-0.18.1 test/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
disco_app-0.14.0 test/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
tang-0.2.1 spec/tang_app/node_modules/webpack/lib/HotUpdateChunkTemplate.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/webpack/lib/HotUpdateChunkTemplate.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/webpack/lib/HotUpdateChunkTemplate.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/webpack/lib/HotUpdateChunkTemplate.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/webpack/lib/HotUpdateChunkTemplate.js
tang-0.2.0 spec/tang_app/node_modules/webpack/lib/HotUpdateChunkTemplate.js
tang-0.1.0 spec/tang_app/node_modules/webpack/lib/HotUpdateChunkTemplate.js
tang-0.0.9 spec/tang_app/node_modules/webpack/lib/HotUpdateChunkTemplate.js
enju_library-0.3.8 spec/dummy/node_modules/webpack/lib/HotUpdateChunkTemplate.js
jester-data-8.0.0 node_modules/webpack/lib/HotUpdateChunkTemplate.js