123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- // This file should have no requires since it is used by the isolated context
- // preload bundle. Instead arguments should be passed in for everything it
- // needs.
- // This file implements the following APIs:
- // - window.alert()
- // - window.confirm()
- // - window.history.back()
- // - window.history.forward()
- // - window.history.go()
- // - window.history.length
- // - window.open()
- // - window.opener.blur()
- // - window.opener.close()
- // - window.opener.eval()
- // - window.opener.focus()
- // - window.opener.location
- // - window.opener.print()
- // - window.opener.postMessage()
- // - window.prompt()
- // - document.hidden
- // - document.visibilityState
- 'use strict'
- const {defineProperty} = Object
- // Helper function to resolve relative url.
- const a = window.top.document.createElement('a')
- const resolveURL = function (url) {
- a.href = url
- return a.href
- }
- // Use this method to ensure values expected as strings in the main process
- // are convertible to strings in the renderer process. This ensures exceptions
- // converting values to strings are thrown in this process.
- const toString = (value) => {
- return value != null ? `${value}` : value
- }
- const windowProxies = {}
- const getOrCreateProxy = (ipcRenderer, guestId) => {
- let proxy = windowProxies[guestId]
- if (proxy == null) {
- proxy = new BrowserWindowProxy(ipcRenderer, guestId)
- windowProxies[guestId] = proxy
- }
- return proxy
- }
- const removeProxy = (guestId) => {
- delete windowProxies[guestId]
- }
- function BrowserWindowProxy (ipcRenderer, guestId) {
- this.closed = false
- defineProperty(this, 'location', {
- get: function () {
- return ipcRenderer.sendSync('ELECTRON_GUEST_WINDOW_MANAGER_WEB_CONTENTS_METHOD_SYNC', guestId, 'getURL')
- },
- set: function (url) {
- url = resolveURL(url)
- return ipcRenderer.sendSync('ELECTRON_GUEST_WINDOW_MANAGER_WEB_CONTENTS_METHOD_SYNC', guestId, 'loadURL', url)
- }
- })
- ipcRenderer.once(`ELECTRON_GUEST_WINDOW_MANAGER_WINDOW_CLOSED_${guestId}`, () => {
- removeProxy(guestId)
- this.closed = true
- })
- this.close = () => {
- ipcRenderer.send('ELECTRON_GUEST_WINDOW_MANAGER_WINDOW_CLOSE', guestId)
- }
- this.focus = () => {
- ipcRenderer.send('ELECTRON_GUEST_WINDOW_MANAGER_WINDOW_METHOD', guestId, 'focus')
- }
- this.blur = () => {
- ipcRenderer.send('ELECTRON_GUEST_WINDOW_MANAGER_WINDOW_METHOD', guestId, 'blur')
- }
- this.print = () => {
- ipcRenderer.send('ELECTRON_GUEST_WINDOW_MANAGER_WEB_CONTENTS_METHOD', guestId, 'print')
- }
- this.postMessage = (message, targetOrigin) => {
- ipcRenderer.send('ELECTRON_GUEST_WINDOW_MANAGER_WINDOW_POSTMESSAGE', guestId, message, toString(targetOrigin), window.location.origin)
- }
- this.eval = (...args) => {
- ipcRenderer.send('ELECTRON_GUEST_WINDOW_MANAGER_WEB_CONTENTS_METHOD', guestId, 'executeJavaScript', ...args)
- }
- }
- // Forward history operations to browser.
- const sendHistoryOperation = function (ipcRenderer, ...args) {
- ipcRenderer.send('ELECTRON_NAVIGATION_CONTROLLER', ...args)
- }
- const getHistoryOperation = function (ipcRenderer, ...args) {
- return ipcRenderer.sendSync('ELECTRON_SYNC_NAVIGATION_CONTROLLER', ...args)
- }
- module.exports = (ipcRenderer, guestInstanceId, openerId, hiddenPage, usesNativeWindowOpen) => {
- if (guestInstanceId == null) {
- // Override default window.close.
- window.close = function () {
- ipcRenderer.sendSync('ELECTRON_BROWSER_WINDOW_CLOSE')
- }
- }
- if (!usesNativeWindowOpen) {
- // Make the browser window or guest view emit "new-window" event.
- window.open = function (url, frameName, features) {
- if (url != null && url !== '') {
- url = resolveURL(url)
- }
- const guestId = ipcRenderer.sendSync('ELECTRON_GUEST_WINDOW_MANAGER_WINDOW_OPEN', url, toString(frameName), toString(features))
- if (guestId != null) {
- return getOrCreateProxy(ipcRenderer, guestId)
- } else {
- return null
- }
- }
- if (openerId != null) {
- window.opener = getOrCreateProxy(ipcRenderer, openerId)
- }
- }
- // But we do not support prompt().
- window.prompt = function () {
- throw new Error('prompt() is and will not be supported.')
- }
- ipcRenderer.on('ELECTRON_GUEST_WINDOW_POSTMESSAGE', function (event, sourceId, message, sourceOrigin) {
- // Manually dispatch event instead of using postMessage because we also need to
- // set event.source.
- event = document.createEvent('Event')
- event.initEvent('message', false, false)
- event.data = message
- event.origin = sourceOrigin
- event.source = getOrCreateProxy(ipcRenderer, sourceId)
- window.dispatchEvent(event)
- })
- window.history.back = function () {
- sendHistoryOperation(ipcRenderer, 'goBack')
- }
- window.history.forward = function () {
- sendHistoryOperation(ipcRenderer, 'goForward')
- }
- window.history.go = function (offset) {
- sendHistoryOperation(ipcRenderer, 'goToOffset', +offset)
- }
- defineProperty(window.history, 'length', {
- get: function () {
- return getHistoryOperation(ipcRenderer, 'length')
- }
- })
- if (guestInstanceId != null) {
- // Webview `document.visibilityState` tracks window visibility (and ignores
- // the actual <webview> element visibility) for backwards compatibility.
- // See discussion in #9178.
- //
- // Note that this results in duplicate visibilitychange events (since
- // Chromium also fires them) and potentially incorrect visibility change.
- // We should reconsider this decision for Electron 2.0.
- let cachedVisibilityState = hiddenPage ? 'hidden' : 'visible'
- // Subscribe to visibilityState changes.
- ipcRenderer.on('ELECTRON_GUEST_INSTANCE_VISIBILITY_CHANGE', function (event, visibilityState) {
- if (cachedVisibilityState !== visibilityState) {
- cachedVisibilityState = visibilityState
- document.dispatchEvent(new Event('visibilitychange'))
- }
- })
- // Make document.hidden and document.visibilityState return the correct value.
- defineProperty(document, 'hidden', {
- get: function () {
- return cachedVisibilityState !== 'visible'
- }
- })
- defineProperty(document, 'visibilityState', {
- get: function () {
- return cachedVisibilityState
- }
- })
- }
- }
|