| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | var Template = require("../Template"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function NodeMainTemplatePlugin(asyncChunkLoading) { | 
					
						
							|  |  |  | 	this.asyncChunkLoading = asyncChunkLoading; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | module.exports = NodeMainTemplatePlugin; | 
					
						
							|  |  |  | NodeMainTemplatePlugin.prototype.apply = function(mainTemplate) { | 
					
						
							|  |  |  | 	var self = this; | 
					
						
							| 
									
										
										
										
											2015-04-24 05:55:50 +08:00
										 |  |  | 	mainTemplate.plugin("local-vars", function(source, chunk) { | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 		if(chunk.chunks.length > 0) { | 
					
						
							|  |  |  | 			return this.asString([ | 
					
						
							|  |  |  | 				source, | 
					
						
							|  |  |  | 				"", | 
					
						
							|  |  |  | 				"// object to store loaded chunks", | 
					
						
							| 
									
										
										
										
											2015-07-25 21:37:48 +08:00
										 |  |  | 				"// \"0\" means \"already loaded\"", | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 				"var installedChunks = {", | 
					
						
							|  |  |  | 				this.indent( | 
					
						
							|  |  |  | 					chunk.ids.map(function(id) { | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 						return id + ": 0"; | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 					}).join(",\n") | 
					
						
							|  |  |  | 				), | 
					
						
							|  |  |  | 				"};" | 
					
						
							|  |  |  | 			]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return source; | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 	mainTemplate.plugin("require-extensions", function(source, chunk) { | 
					
						
							|  |  |  | 		if(chunk.chunks.length > 0) { | 
					
						
							|  |  |  | 			return this.asString([ | 
					
						
							|  |  |  | 				source, | 
					
						
							|  |  |  | 				"", | 
					
						
							|  |  |  | 				"// uncatched error handler for webpack runtime", | 
					
						
							|  |  |  | 				this.requireFn + ".oe = function(err) {", | 
					
						
							|  |  |  | 				this.indent([ | 
					
						
							|  |  |  | 					"process.nextTick(function() {", | 
					
						
							| 
									
										
										
										
											2016-02-13 20:11:34 +08:00
										 |  |  | 					this.indent("throw err; // catch this error by using System.import().catch()"), | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 					"});" | 
					
						
							|  |  |  | 				]), | 
					
						
							|  |  |  | 				"};" | 
					
						
							|  |  |  | 			]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return source; | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 	mainTemplate.plugin("require-ensure", function(_, chunk, hash) { | 
					
						
							| 
									
										
										
										
											2016-01-07 06:02:25 +08:00
										 |  |  | 		var chunkFilename = this.outputOptions.chunkFilename; | 
					
						
							| 
									
										
										
										
											2014-11-02 19:48:15 +08:00
										 |  |  | 		var chunkMaps = chunk.getChunkMaps(); | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 		var insertMoreModules = [ | 
					
						
							|  |  |  | 			"var moreModules = chunk.modules, chunkIds = chunk.ids;", | 
					
						
							|  |  |  | 			"for(var moduleId in moreModules) {", | 
					
						
							|  |  |  | 			this.indent(this.renderAddModule(hash, chunk, "moduleId", "moreModules[moduleId]")), | 
					
						
							|  |  |  | 			"}" | 
					
						
							|  |  |  | 		]; | 
					
						
							|  |  |  | 		if(self.asyncChunkLoading) { | 
					
						
							|  |  |  | 			return this.asString([ | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 				"// \"0\" is the signal for \"already loaded\"", | 
					
						
							|  |  |  | 				"if(installedChunks[chunkId] === 0)", | 
					
						
							|  |  |  | 				this.indent([ | 
					
						
							|  |  |  | 					"return Promise.resolve();" | 
					
						
							|  |  |  | 				]), | 
					
						
							|  |  |  | 				"// array of [resolve, reject, promise] means \"currently loading\"", | 
					
						
							|  |  |  | 				"if(installedChunks[chunkId])", | 
					
						
							|  |  |  | 				this.indent([ | 
					
						
							|  |  |  | 					"return installedChunks[chunkId][2];" | 
					
						
							|  |  |  | 				]), | 
					
						
							|  |  |  | 				"// load the chunk and return promise to it", | 
					
						
							|  |  |  | 				"var promise = new Promise(function(resolve, reject) {", | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 				this.indent([ | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 					"installedChunks[chunkId] = [resolve, reject];", | 
					
						
							| 
									
										
										
										
											2014-08-22 19:51:24 +08:00
										 |  |  | 					"var filename = __dirname + " + this.applyPluginsWaterfall("asset-path", JSON.stringify("/" + chunkFilename), { | 
					
						
							| 
									
										
										
										
											2014-11-03 15:02:02 +08:00
										 |  |  | 						hash: "\" + " + this.renderCurrentHashCode(hash) + " + \"", | 
					
						
							| 
									
										
										
										
											2014-11-02 19:48:15 +08:00
										 |  |  | 						hashWithLength: function(length) { | 
					
						
							| 
									
										
										
										
											2014-11-03 15:02:02 +08:00
										 |  |  | 							return "\" + " + this.renderCurrentHashCode(hash, length) + " + \""; | 
					
						
							|  |  |  | 						}.bind(this), | 
					
						
							| 
									
										
										
										
											2014-08-22 19:51:24 +08:00
										 |  |  | 						chunk: { | 
					
						
							| 
									
										
										
										
											2014-11-02 19:48:15 +08:00
										 |  |  | 							id: "\" + chunkId + \"", | 
					
						
							|  |  |  | 							hash: "\" + " + JSON.stringify(chunkMaps.hash) + "[chunkId] + \"", | 
					
						
							|  |  |  | 							hashWithLength: function(length) { | 
					
						
							|  |  |  | 								var shortChunkHashMap = {}; | 
					
						
							|  |  |  | 								Object.keys(chunkMaps.hash).forEach(function(chunkId) { | 
					
						
							|  |  |  | 									if(typeof chunkMaps.hash[chunkId] === "string") | 
					
						
							|  |  |  | 										shortChunkHashMap[chunkId] = chunkMaps.hash[chunkId].substr(0, length); | 
					
						
							|  |  |  | 								}); | 
					
						
							|  |  |  | 								return "\" + " + JSON.stringify(shortChunkHashMap) + "[chunkId] + \""; | 
					
						
							|  |  |  | 							}, | 
					
						
							|  |  |  | 							name: "\" + (" + JSON.stringify(chunkMaps.name) + "[chunkId]||chunkId) + \"" | 
					
						
							| 
									
										
										
										
											2014-08-22 19:51:24 +08:00
										 |  |  | 						} | 
					
						
							|  |  |  | 					}) + ";", | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 					"require('fs').readFile(filename, 'utf-8',  function(err, content) {", | 
					
						
							|  |  |  | 					this.indent([ | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 						"if(err) return reject(err);", | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 						"var chunk = {};", | 
					
						
							| 
									
										
										
										
											2014-07-17 02:57:10 +08:00
										 |  |  | 						"require('vm').runInThisContext('(function(exports, require, __dirname, __filename) {' + content + '\\n})', filename)" + | 
					
						
							| 
									
										
										
										
											2015-04-24 05:55:50 +08:00
										 |  |  | 						"(chunk, require, require('path').dirname(filename), filename);" | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 					].concat(insertMoreModules).concat([ | 
					
						
							|  |  |  | 						"var callbacks = [];", | 
					
						
							|  |  |  | 						"for(var i = 0; i < chunkIds.length; i++) {", | 
					
						
							|  |  |  | 						this.indent([ | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 							"if(installedChunks[chunkIds[i]])", | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 							this.indent([ | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 								"callbacks = callbacks.concat(installedChunks[chunkIds[i]][0]);" | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 							]), | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 							"installedChunks[chunkIds[i]] = 0;" | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 						]), | 
					
						
							|  |  |  | 						"}", | 
					
						
							|  |  |  | 						"for(i = 0; i < callbacks.length; i++)", | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 						this.indent("callbacks[i]();") | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 					])), | 
					
						
							|  |  |  | 					"});" | 
					
						
							|  |  |  | 				]), | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 				"});", | 
					
						
							|  |  |  | 				"return installedChunks[chunkId][2] = promise;" | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 			]); | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2014-11-02 19:48:15 +08:00
										 |  |  | 			var request = this.applyPluginsWaterfall("asset-path", JSON.stringify("./" + chunkFilename), { | 
					
						
							| 
									
										
										
										
											2014-11-03 15:02:02 +08:00
										 |  |  | 				hash: "\" + " + this.renderCurrentHashCode(hash) + " + \"", | 
					
						
							| 
									
										
										
										
											2014-11-02 19:48:15 +08:00
										 |  |  | 				hashWithLength: function(length) { | 
					
						
							| 
									
										
										
										
											2014-11-03 15:02:02 +08:00
										 |  |  | 					return "\" + " + this.renderCurrentHashCode(hash, length) + " + \""; | 
					
						
							|  |  |  | 				}.bind(this), | 
					
						
							| 
									
										
										
										
											2014-11-02 19:48:15 +08:00
										 |  |  | 				chunk: { | 
					
						
							|  |  |  | 					id: "\" + chunkId + \"", | 
					
						
							|  |  |  | 					hash: "\" + " + JSON.stringify(chunkMaps.hash) + "[chunkId] + \"", | 
					
						
							|  |  |  | 					hashWithLength: function(length) { | 
					
						
							|  |  |  | 						var shortChunkHashMap = {}; | 
					
						
							|  |  |  | 						Object.keys(chunkMaps.hash).forEach(function(chunkId) { | 
					
						
							|  |  |  | 							if(typeof chunkMaps.hash[chunkId] === "string") | 
					
						
							|  |  |  | 								shortChunkHashMap[chunkId] = chunkMaps.hash[chunkId].substr(0, length); | 
					
						
							|  |  |  | 						}); | 
					
						
							|  |  |  | 						return "\" + " + JSON.stringify(shortChunkHashMap) + "[chunkId] + \""; | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					name: "\" + (" + JSON.stringify(chunkMaps.name) + "[chunkId]||chunkId) + \"" | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 			return this.asString([ | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 				"// \"0\" is the signal for \"already loaded\"", | 
					
						
							|  |  |  | 				"if(installedChunks[chunkId] !== 0) {", | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 				this.indent([ | 
					
						
							| 
									
										
										
										
											2014-11-02 19:48:15 +08:00
										 |  |  | 					"var chunk = require(" + request + ");" | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 				].concat(insertMoreModules).concat([ | 
					
						
							|  |  |  | 					"for(var i = 0; i < chunkIds.length; i++)", | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 					this.indent("installedChunks[chunkIds[i]] = 0;") | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 				])), | 
					
						
							|  |  |  | 				"}", | 
					
						
							| 
									
										
										
										
											2015-06-13 17:45:28 +08:00
										 |  |  | 				"return Promise.resolve();" | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 			]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 	mainTemplate.plugin("hot-bootstrap", function(source, chunk, hash) { | 
					
						
							|  |  |  | 		var hotUpdateChunkFilename = this.outputOptions.hotUpdateChunkFilename; | 
					
						
							|  |  |  | 		var hotUpdateMainFilename = this.outputOptions.hotUpdateMainFilename; | 
					
						
							| 
									
										
										
										
											2014-11-02 19:48:15 +08:00
										 |  |  | 		var chunkMaps = chunk.getChunkMaps(); | 
					
						
							| 
									
										
										
										
											2014-08-22 19:51:24 +08:00
										 |  |  | 		var currentHotUpdateChunkFilename = this.applyPluginsWaterfall("asset-path", JSON.stringify(hotUpdateChunkFilename), { | 
					
						
							| 
									
										
										
										
											2014-11-03 15:02:02 +08:00
										 |  |  | 			hash: "\" + " + this.renderCurrentHashCode(hash) + " + \"", | 
					
						
							| 
									
										
										
										
											2014-10-28 18:51:18 +08:00
										 |  |  | 			hashWithLength: function(length) { | 
					
						
							| 
									
										
										
										
											2014-11-03 15:02:02 +08:00
										 |  |  | 				return "\" + " + this.renderCurrentHashCode(hash, length) + " + \""; | 
					
						
							|  |  |  | 			}.bind(this), | 
					
						
							| 
									
										
										
										
											2014-08-22 19:51:24 +08:00
										 |  |  | 			chunk: { | 
					
						
							| 
									
										
										
										
											2014-11-02 19:48:15 +08:00
										 |  |  | 				id: "\" + chunkId + \"", | 
					
						
							|  |  |  | 				hash: "\" + " + JSON.stringify(chunkMaps.hash) + "[chunkId] + \"", | 
					
						
							|  |  |  | 				hashWithLength: function(length) { | 
					
						
							|  |  |  | 					var shortChunkHashMap = {}; | 
					
						
							|  |  |  | 					Object.keys(chunkMaps.hash).forEach(function(chunkId) { | 
					
						
							|  |  |  | 						if(typeof chunkMaps.hash[chunkId] === "string") | 
					
						
							|  |  |  | 							shortChunkHashMap[chunkId] = chunkMaps.hash[chunkId].substr(0, length); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 					return "\" + " + JSON.stringify(shortChunkHashMap) + "[chunkId] + \""; | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				name: "\" + (" + JSON.stringify(chunkMaps.name) + "[chunkId]||chunkId) + \"" | 
					
						
							| 
									
										
										
										
											2014-08-22 19:51:24 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 		var currentHotUpdateMainFilename = this.applyPluginsWaterfall("asset-path", JSON.stringify(hotUpdateMainFilename), { | 
					
						
							| 
									
										
										
										
											2014-11-03 15:02:02 +08:00
										 |  |  | 			hash: "\" + " + this.renderCurrentHashCode(hash) + " + \"", | 
					
						
							| 
									
										
										
										
											2014-10-28 18:51:18 +08:00
										 |  |  | 			hashWithLength: function(length) { | 
					
						
							| 
									
										
										
										
											2014-11-03 15:02:02 +08:00
										 |  |  | 				return "\" + " + this.renderCurrentHashCode(hash, length) + " + \""; | 
					
						
							|  |  |  | 			}.bind(this) | 
					
						
							| 
									
										
										
										
											2014-08-22 19:51:24 +08:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2015-04-29 05:38:41 +08:00
										 |  |  | 		return Template.getFunctionContent(self.asyncChunkLoading ? require("./NodeMainTemplateAsync.runtime.js") : require("./NodeMainTemplate.runtime.js")) | 
					
						
							| 
									
										
										
										
											2014-06-03 03:23:53 +08:00
										 |  |  | 			.replace(/\$require\$/g, this.requireFn) | 
					
						
							|  |  |  | 			.replace(/\$hotMainFilename\$/g, currentHotUpdateMainFilename) | 
					
						
							|  |  |  | 			.replace(/\$hotChunkFilename\$/g, currentHotUpdateChunkFilename); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 	mainTemplate.plugin("hash", function(hash) { | 
					
						
							|  |  |  | 		hash.update("node"); | 
					
						
							|  |  |  | 		hash.update("3"); | 
					
						
							|  |  |  | 		hash.update(this.outputOptions.filename + ""); | 
					
						
							|  |  |  | 		hash.update(this.outputOptions.chunkFilename + ""); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | }; |