You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
		
		
			
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
| 
											9 months ago
										 | /* | ||
|  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | ||
|  | 	Author Tobias Koppers @sokra, Zackary Jackson @ScriptedAlchemy, Marais Rossouw @maraisr | ||
|  | */ | ||
|  | 
 | ||
|  | "use strict"; | ||
|  | 
 | ||
|  | const ModuleDependency = require("../dependencies/ModuleDependency"); | ||
|  | const makeSerializable = require("../util/makeSerializable"); | ||
|  | 
 | ||
|  | /** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */ | ||
|  | /** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */ | ||
|  | 
 | ||
|  | class ContainerExposedDependency extends ModuleDependency { | ||
|  | 	/** | ||
|  | 	 * @param {string} exposedName public name | ||
|  | 	 * @param {string} request request to module | ||
|  | 	 */ | ||
|  | 	constructor(exposedName, request) { | ||
|  | 		super(request); | ||
|  | 		this.exposedName = exposedName; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	get type() { | ||
|  | 		return "container exposed"; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	get category() { | ||
|  | 		return "esm"; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	/** | ||
|  | 	 * @returns {string | null} an identifier to merge equal requests | ||
|  | 	 */ | ||
|  | 	getResourceIdentifier() { | ||
|  | 		return `exposed dependency ${this.exposedName}=${this.request}`; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	/** | ||
|  | 	 * @param {ObjectSerializerContext} context context | ||
|  | 	 */ | ||
|  | 	serialize(context) { | ||
|  | 		context.write(this.exposedName); | ||
|  | 		super.serialize(context); | ||
|  | 	} | ||
|  | 
 | ||
|  | 	/** | ||
|  | 	 * @param {ObjectDeserializerContext} context context | ||
|  | 	 */ | ||
|  | 	deserialize(context) { | ||
|  | 		this.exposedName = context.read(); | ||
|  | 		super.deserialize(context); | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | makeSerializable( | ||
|  | 	ContainerExposedDependency, | ||
|  | 	"webpack/lib/container/ContainerExposedDependency" | ||
|  | ); | ||
|  | 
 | ||
|  | module.exports = ContainerExposedDependency; |