electron/lib/renderer/web-view/web-view-element.ts

128 lines
5 KiB
TypeScript
Raw Normal View History

// When using context isolation, the WebViewElement and the custom element
// methods have to be defined in the main world to be able to be registered.
//
// Note: The hidden values can only be read/set inside the same context, all
// methods that access the "internal" hidden value must be put in this file.
//
// Note: This file could be loaded in the main world of contextIsolation page,
// which runs in browserify environment instead of Node environment, all native
// modules must be passed from outside, all included files must be plain JS.
2020-03-20 20:28:31 +00:00
import { WEB_VIEW_CONSTANTS } from '@electron/internal/renderer/web-view/web-view-constants';
import { WebViewImpl as IWebViewImpl, webViewImplModule } from '@electron/internal/renderer/web-view/web-view-impl';
import type { SrcAttribute } from '@electron/internal/renderer/web-view/web-view-attributes';
// Return a WebViewElement class that is defined in this context.
const defineWebViewElement = (v8Util: NodeJS.V8UtilBinding, webViewImpl: typeof webViewImplModule) => {
2020-03-20 20:28:31 +00:00
const { guestViewInternal, WebViewImpl } = webViewImpl;
return class WebViewElement extends HTMLElement {
public internalInstanceId?: number;
static get observedAttributes () {
return [
WEB_VIEW_CONSTANTS.ATTRIBUTE_PARTITION,
WEB_VIEW_CONSTANTS.ATTRIBUTE_SRC,
WEB_VIEW_CONSTANTS.ATTRIBUTE_HTTPREFERRER,
WEB_VIEW_CONSTANTS.ATTRIBUTE_USERAGENT,
WEB_VIEW_CONSTANTS.ATTRIBUTE_NODEINTEGRATION,
WEB_VIEW_CONSTANTS.ATTRIBUTE_NODEINTEGRATIONINSUBFRAMES,
WEB_VIEW_CONSTANTS.ATTRIBUTE_PLUGINS,
WEB_VIEW_CONSTANTS.ATTRIBUTE_DISABLEWEBSECURITY,
WEB_VIEW_CONSTANTS.ATTRIBUTE_ALLOWPOPUPS,
WEB_VIEW_CONSTANTS.ATTRIBUTE_ENABLEREMOTEMODULE,
WEB_VIEW_CONSTANTS.ATTRIBUTE_PRELOAD,
WEB_VIEW_CONSTANTS.ATTRIBUTE_BLINKFEATURES,
WEB_VIEW_CONSTANTS.ATTRIBUTE_DISABLEBLINKFEATURES,
WEB_VIEW_CONSTANTS.ATTRIBUTE_WEBPREFERENCES
2020-03-20 20:28:31 +00:00
];
}
constructor () {
2020-03-20 20:28:31 +00:00
super();
const internal = new WebViewImpl(this);
internal.dispatchEventInMainWorld = (eventName, props) => {
const event = new Event(eventName);
Object.assign(event, props);
return internal.webviewNode.dispatchEvent(event);
};
v8Util.setHiddenValue(this, 'internal', internal);
}
connectedCallback () {
2020-03-20 20:28:31 +00:00
const internal = v8Util.getHiddenValue<IWebViewImpl>(this, 'internal');
if (!internal) {
2020-03-20 20:28:31 +00:00
return;
}
if (!internal.elementAttached) {
2020-03-20 20:28:31 +00:00
guestViewInternal.registerEvents(internal, internal.viewInstanceId);
internal.elementAttached = true;
(internal.attributes.get(WEB_VIEW_CONSTANTS.ATTRIBUTE_SRC) as SrcAttribute).parse();
}
}
attributeChangedCallback (name: string, oldValue: any, newValue: any) {
2020-03-20 20:28:31 +00:00
const internal = v8Util.getHiddenValue<IWebViewImpl>(this, 'internal');
if (internal) {
2020-03-20 20:28:31 +00:00
internal.handleWebviewAttributeMutation(name, oldValue, newValue);
}
}
disconnectedCallback () {
2020-03-20 20:28:31 +00:00
const internal = v8Util.getHiddenValue<IWebViewImpl>(this, 'internal');
if (!internal) {
2020-03-20 20:28:31 +00:00
return;
}
2020-03-20 20:28:31 +00:00
guestViewInternal.deregisterEvents(internal.viewInstanceId);
if (internal.guestInstanceId) {
guestViewInternal.detachGuest(internal.guestInstanceId);
}
2020-03-20 20:28:31 +00:00
internal.elementAttached = false;
this.internalInstanceId = 0;
internal.reset();
}
2020-03-20 20:28:31 +00:00
};
};
// Register <webview> custom element.
const registerWebViewElement = (v8Util: NodeJS.V8UtilBinding, webViewImpl: typeof webViewImplModule) => {
// I wish eslint wasn't so stupid, but it is
// eslint-disable-next-line
const WebViewElement = defineWebViewElement(v8Util, webViewImpl) as unknown as typeof ElectronInternal.WebViewElement
2020-03-20 20:28:31 +00:00
webViewImpl.setupMethods(WebViewElement);
// The customElements.define has to be called in a special scope.
webViewImpl.webFrame.allowGuestViewElementDefinition(window, () => {
window.customElements.define('webview', WebViewElement);
2020-03-20 20:28:31 +00:00
(window as any).WebView = WebViewElement;
// Delete the callbacks so developers cannot call them and produce unexpected
// behavior.
2020-03-20 20:28:31 +00:00
delete WebViewElement.prototype.connectedCallback;
delete WebViewElement.prototype.disconnectedCallback;
delete WebViewElement.prototype.attributeChangedCallback;
// Now that |observedAttributes| has been retrieved, we can hide it from
// user code as well.
// TypeScript is concerned that we're deleting a read-only attribute
2020-03-20 20:28:31 +00:00
delete (WebViewElement as any).observedAttributes;
});
};
// Prepare to register the <webview> element.
export const setupWebView = (v8Util: NodeJS.V8UtilBinding, webViewImpl: typeof webViewImplModule) => {
2020-03-20 20:28:31 +00:00
const useCapture = true;
const listener = (event: Event) => {
if (document.readyState === 'loading') {
2020-03-20 20:28:31 +00:00
return;
}
2020-03-20 20:28:31 +00:00
webViewImpl.setupAttributes();
registerWebViewElement(v8Util, webViewImpl);
2020-03-20 20:28:31 +00:00
window.removeEventListener(event.type, listener, useCapture);
};
2020-03-20 20:28:31 +00:00
window.addEventListener('readystatechange', listener, useCapture);
};