70 lines
2.6 KiB
JavaScript
70 lines
2.6 KiB
JavaScript
|
|
import BrowserErrorCaptureEnum from '../../browser/enums/BrowserErrorCaptureEnum.js';
|
||
|
|
import WindowBrowserContext from '../../window/WindowBrowserContext.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
/**
|
||
|
|
* ECMAScript module compiler.
|
||
|
|
*/
|
||
|
|
export default class ElementEventAttributeUtility {
|
||
|
|
/**
|
||
|
|
* Evaluates code in attribute and returns event listener.
|
||
|
|
*
|
||
|
|
* @param element
|
||
|
|
* @param property Property.
|
||
|
|
* @returns Result.
|
||
|
|
*/
|
||
|
|
static getEventListener(element, property) {
|
||
|
|
const cached = element[PropertySymbol.propertyEventListeners].get(property);
|
||
|
|
if (cached) {
|
||
|
|
return cached;
|
||
|
|
}
|
||
|
|
const window = element[PropertySymbol.ownerDocument][PropertySymbol.defaultView];
|
||
|
|
if (!window) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
const browserSettings = new WindowBrowserContext(window).getSettings();
|
||
|
|
if (!browserSettings || !browserSettings.enableJavaScriptEvaluation) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
const code = element.getAttribute(property);
|
||
|
|
if (!code) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
let newCode = `(function anonymous($happy_dom, event) {`;
|
||
|
|
if (browserSettings &&
|
||
|
|
!browserSettings.disableErrorCapturing &&
|
||
|
|
browserSettings.errorCapture === BrowserErrorCaptureEnum.tryAndCatch) {
|
||
|
|
newCode += 'try {\n';
|
||
|
|
}
|
||
|
|
newCode += code;
|
||
|
|
if (browserSettings &&
|
||
|
|
!browserSettings.disableErrorCapturing &&
|
||
|
|
browserSettings.errorCapture === BrowserErrorCaptureEnum.tryAndCatch) {
|
||
|
|
newCode += '} catch(e) { $happy_dom.dispatchError(e); }';
|
||
|
|
}
|
||
|
|
newCode += '})';
|
||
|
|
let listener = null;
|
||
|
|
try {
|
||
|
|
listener = window[PropertySymbol.evaluateScript](newCode, {
|
||
|
|
filename: window.location.href
|
||
|
|
}).bind(element, {
|
||
|
|
dispatchError: window[PropertySymbol.dispatchError].bind(window)
|
||
|
|
});
|
||
|
|
}
|
||
|
|
catch (e) {
|
||
|
|
const error = new window.SyntaxError(`Failed to read the '${property}' property from '${element.constructor.name}': ${e.message}`);
|
||
|
|
if (browserSettings.disableErrorCapturing ||
|
||
|
|
browserSettings.errorCapture !== BrowserErrorCaptureEnum.tryAndCatch) {
|
||
|
|
throw error;
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
window[PropertySymbol.dispatchError](error);
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if (listener) {
|
||
|
|
element[PropertySymbol.propertyEventListeners].set(property, listener);
|
||
|
|
}
|
||
|
|
return listener;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=ElementEventAttributeUtility.js.map
|