happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
149 lines (126 loc) • 4.43 kB
text/typescript
import type IModule from './types/IModule.js';
import * as PropertySymbol from '../PropertySymbol.js';
import CSSModule from './CSSModule.js';
import JSONModule from './JSONModule.js';
import UnresolvedModule from './UnresolvedModule.js';
import WindowBrowserContext from '../window/WindowBrowserContext.js';
import ResourceFetch from '../fetch/ResourceFetch.js';
import ECMAScriptModule from './ECMAScriptModule.js';
import type BrowserWindow from '../window/BrowserWindow.js';
import type IResourceFetchResponse from '../fetch/types/IResourceFetchResponse.js';
import ModuleURLUtility from './ModuleURLUtility.js';
import type Location from '../location/Location.js';
/**
* Module factory.
*/
export default class ModuleFactory {
private window: BrowserWindow;
private parentURL: URL | Location;
/**
* Constructor.
*
* @param window Window.
* @param parentURL Parent URL.
*/
constructor(window: BrowserWindow, parentURL: URL | Location) {
this.window = window;
this.parentURL = parentURL;
}
/**
* Fetches the source code of the module from the given URL and creates a new module instance.
*
* @param url Module URL.
* @param [parent] Parent module.
* @param [options] Options.
* @param [options.with] Options.
* @param [options.with.type] Module type.
*/
public async getModule(url: string, options?: { with?: { type?: string } }): Promise<IModule> {
const window = this.window;
const parentURL = this.parentURL;
const absoluteURL = ModuleURLUtility.getURL(window, parentURL, url);
const absoluteURLString = absoluteURL.href;
const type = options?.with?.type || 'esm';
if (type !== 'esm' && type !== 'css' && type !== 'json') {
throw new window.TypeError(
`Failed to import module "${absoluteURL}" from "${parentURL}": Unknown type "${type}"`
);
}
const cached = <IModule>window[PropertySymbol.modules][type].get(absoluteURLString);
if (cached) {
if (cached instanceof UnresolvedModule) {
await new Promise((resolve, reject) => {
cached.addResolveListener(resolve, reject);
});
return <IModule>window[PropertySymbol.modules][type].get(absoluteURLString);
}
return cached;
}
const browserFrame = new WindowBrowserContext(window).getBrowserFrame();
if (!browserFrame) {
throw new window.TypeError(
`Failed to import module "${absoluteURL}" from "${parentURL}": Window is closed and is no longer attached to a frame`
);
}
const unresolvedModule = new UnresolvedModule({ window, url: absoluteURL });
const readyStateManager = window[PropertySymbol.readyStateManager];
const taskID = readyStateManager.startTask();
window[PropertySymbol.modules][type].set(absoluteURLString, unresolvedModule);
const resourceFetch = new ResourceFetch(window);
let response: IResourceFetchResponse;
try {
response = await resourceFetch.fetch(absoluteURL, 'module');
} catch (error) {
readyStateManager.endTask(taskID);
unresolvedModule.resolve(<Error>error);
throw error;
}
readyStateManager.endTask(taskID);
let module: IModule;
switch (type) {
case 'json':
module = new JSONModule({ window, url: absoluteURL, source: response.content });
break;
case 'css':
module = new CSSModule({ window, url: absoluteURL, source: response.content });
break;
case 'esm':
module = new ECMAScriptModule({
window,
url: absoluteURL,
source: response.content,
sourceURL: response.virtualServerFile || absoluteURLString,
factory: new ModuleFactory(window, absoluteURL)
});
break;
}
window[PropertySymbol.modules][type].set(absoluteURLString, module);
unresolvedModule.resolve();
return module;
}
/**
* Imports a module.
*
* @param window Window.
* @param parentURL Parent URL.
* @param url URL.
* @param [options] Options.
* @param [options.with] With.
* @param [options.with.type] Type.
*/
public async importModule(
url: string,
options?: { with?: { type?: string } }
): Promise<{ [key: string]: any }> {
const browserFrame = new WindowBrowserContext(this.window).getBrowserFrame();
if (!browserFrame) {
return {};
}
const asyncTaskManager = browserFrame[PropertySymbol.asyncTaskManager];
const taskID = asyncTaskManager?.startTask();
const module = await this.getModule(url, options);
const exports = await module.evaluate();
asyncTaskManager.endTask(taskID);
return exports;
}
}