Use let/const instead of var
This commit is contained in:
parent
3053be345b
commit
712b15286c
4 changed files with 85 additions and 100 deletions
|
@ -77,7 +77,6 @@ const createGuest = function (embedder, params) {
|
||||||
|
|
||||||
// Init guest web view after attached.
|
// Init guest web view after attached.
|
||||||
guest.on('did-attach', function () {
|
guest.on('did-attach', function () {
|
||||||
let opts
|
|
||||||
params = this.attachParams
|
params = this.attachParams
|
||||||
delete this.attachParams
|
delete this.attachParams
|
||||||
this.viewInstanceId = params.instanceId
|
this.viewInstanceId = params.instanceId
|
||||||
|
@ -97,7 +96,7 @@ const createGuest = function (embedder, params) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
if (params.src) {
|
if (params.src) {
|
||||||
opts = {}
|
const opts = {}
|
||||||
if (params.httpreferrer) {
|
if (params.httpreferrer) {
|
||||||
opts.httpReferrer = params.httpreferrer
|
opts.httpReferrer = params.httpreferrer
|
||||||
}
|
}
|
||||||
|
@ -146,11 +145,9 @@ const createGuest = function (embedder, params) {
|
||||||
|
|
||||||
// Attach the guest to an element of embedder.
|
// Attach the guest to an element of embedder.
|
||||||
const attachGuest = function (embedder, elementInstanceId, guestInstanceId, params) {
|
const attachGuest = function (embedder, elementInstanceId, guestInstanceId, params) {
|
||||||
let guest, guestInstance, key, oldKey, oldGuestInstanceId, ref1, webPreferences
|
|
||||||
|
|
||||||
// Destroy the old guest when attaching.
|
// Destroy the old guest when attaching.
|
||||||
key = (embedder.getId()) + '-' + elementInstanceId
|
const key = (embedder.getId()) + '-' + elementInstanceId
|
||||||
oldGuestInstanceId = embedderElementsMap[key]
|
const oldGuestInstanceId = embedderElementsMap[key]
|
||||||
if (oldGuestInstanceId != null) {
|
if (oldGuestInstanceId != null) {
|
||||||
// Reattachment to the same guest is just a no-op.
|
// Reattachment to the same guest is just a no-op.
|
||||||
if (oldGuestInstanceId === guestInstanceId) {
|
if (oldGuestInstanceId === guestInstanceId) {
|
||||||
|
@ -160,24 +157,24 @@ const attachGuest = function (embedder, elementInstanceId, guestInstanceId, para
|
||||||
destroyGuest(embedder, oldGuestInstanceId)
|
destroyGuest(embedder, oldGuestInstanceId)
|
||||||
}
|
}
|
||||||
|
|
||||||
guestInstance = guestInstances[guestInstanceId]
|
const guestInstance = guestInstances[guestInstanceId]
|
||||||
// If this isn't a valid guest instance then do nothing.
|
// If this isn't a valid guest instance then do nothing.
|
||||||
if (!guestInstance) {
|
if (!guestInstance) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
guest = guestInstance.guest
|
const {guest} = guestInstance
|
||||||
|
|
||||||
// If this guest is already attached to an element then remove it
|
// If this guest is already attached to an element then remove it
|
||||||
if (guestInstance.elementInstanceId) {
|
if (guestInstance.elementInstanceId) {
|
||||||
oldKey = (guestInstance.embedder.getId()) + '-' + guestInstance.elementInstanceId
|
const oldKey = (guestInstance.embedder.getId()) + '-' + guestInstance.elementInstanceId
|
||||||
delete embedderElementsMap[oldKey]
|
delete embedderElementsMap[oldKey]
|
||||||
webViewManager.removeGuest(guestInstance.embedder, guestInstanceId)
|
webViewManager.removeGuest(guestInstance.embedder, guestInstanceId)
|
||||||
guestInstance.embedder.send('ELECTRON_GUEST_VIEW_INTERNAL_DESTROY_GUEST-' + guest.viewInstanceId)
|
guestInstance.embedder.send('ELECTRON_GUEST_VIEW_INTERNAL_DESTROY_GUEST-' + guest.viewInstanceId)
|
||||||
}
|
}
|
||||||
|
|
||||||
webPreferences = {
|
const webPreferences = {
|
||||||
guestInstanceId: guestInstanceId,
|
guestInstanceId: guestInstanceId,
|
||||||
nodeIntegration: (ref1 = params.nodeintegration) != null ? ref1 : false,
|
nodeIntegration: params.nodeintegration != null ? params.nodeintegration : false,
|
||||||
plugins: params.plugins,
|
plugins: params.plugins,
|
||||||
zoomFactor: params.zoomFactor,
|
zoomFactor: params.zoomFactor,
|
||||||
webSecurity: !params.disablewebsecurity,
|
webSecurity: !params.disablewebsecurity,
|
||||||
|
@ -217,7 +214,7 @@ const destroyGuest = function (embedder, guestInstanceId) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
let guestInstance = guestInstances[guestInstanceId]
|
const guestInstance = guestInstances[guestInstanceId]
|
||||||
if (embedder !== guestInstance.embedder) {
|
if (embedder !== guestInstance.embedder) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -280,12 +277,12 @@ ipcMain.on('ELECTRON_GUEST_VIEW_MANAGER_DESTROY_GUEST', function (event, guestIn
|
||||||
})
|
})
|
||||||
|
|
||||||
ipcMain.on('ELECTRON_GUEST_VIEW_MANAGER_SET_SIZE', function (event, guestInstanceId, params) {
|
ipcMain.on('ELECTRON_GUEST_VIEW_MANAGER_SET_SIZE', function (event, guestInstanceId, params) {
|
||||||
const guestInstance = guestInstances[guestInstanceId]
|
const guest = getGuest(guestInstanceId)
|
||||||
guestInstance != null ? guestInstance.guest.setSize(params) : void 0
|
if (guest != null) guest.setSize(params)
|
||||||
})
|
})
|
||||||
|
|
||||||
// Returns WebContents from its guest id.
|
// Returns WebContents from its guest id.
|
||||||
exports.getGuest = function (guestInstanceId) {
|
const getGuest = function (guestInstanceId) {
|
||||||
const guestInstance = guestInstances[guestInstanceId]
|
const guestInstance = guestInstances[guestInstanceId]
|
||||||
return guestInstance != null ? guestInstance.guest : void 0
|
return guestInstance != null ? guestInstance.guest : void 0
|
||||||
}
|
}
|
||||||
|
@ -295,4 +292,6 @@ const getEmbedder = function (guestInstanceId) {
|
||||||
const guestInstance = guestInstances[guestInstanceId]
|
const guestInstance = guestInstances[guestInstanceId]
|
||||||
return guestInstance != null ? guestInstance.embedder : void 0
|
return guestInstance != null ? guestInstance.embedder : void 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
exports.getGuest = getGuest
|
||||||
exports.getEmbedder = getEmbedder
|
exports.getEmbedder = getEmbedder
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
const ipcRenderer = require('electron').ipcRenderer
|
const {ipcRenderer, webFrame} = require('electron')
|
||||||
const webFrame = require('electron').webFrame
|
|
||||||
|
|
||||||
var requestId = 0
|
let requestId = 0
|
||||||
|
|
||||||
var WEB_VIEW_EVENTS = {
|
const WEB_VIEW_EVENTS = {
|
||||||
'load-commit': ['url', 'isMainFrame'],
|
'load-commit': ['url', 'isMainFrame'],
|
||||||
'did-attach': [],
|
'did-attach': [],
|
||||||
'did-finish-load': [],
|
'did-finish-load': [],
|
||||||
|
@ -40,19 +39,19 @@ var WEB_VIEW_EVENTS = {
|
||||||
'update-target-url': ['url']
|
'update-target-url': ['url']
|
||||||
}
|
}
|
||||||
|
|
||||||
var DEPRECATED_EVENTS = {
|
const DEPRECATED_EVENTS = {
|
||||||
'page-title-updated': 'page-title-set'
|
'page-title-updated': 'page-title-set'
|
||||||
}
|
}
|
||||||
|
|
||||||
var dispatchEvent = function (webView, eventName, eventKey, ...args) {
|
const dispatchEvent = function (webView, eventName, eventKey, ...args) {
|
||||||
var domEvent, f, i, j, len, ref1
|
let f, i, j, len
|
||||||
if (DEPRECATED_EVENTS[eventName] != null) {
|
if (DEPRECATED_EVENTS[eventName] != null) {
|
||||||
dispatchEvent.apply(null, [webView, DEPRECATED_EVENTS[eventName], eventKey].concat(args))
|
dispatchEvent.apply(null, [webView, DEPRECATED_EVENTS[eventName], eventKey].concat(args))
|
||||||
}
|
}
|
||||||
domEvent = new Event(eventName)
|
const domEvent = new Event(eventName)
|
||||||
ref1 = WEB_VIEW_EVENTS[eventKey]
|
const props = WEB_VIEW_EVENTS[eventKey]
|
||||||
for (i = j = 0, len = ref1.length; j < len; i = ++j) {
|
for (i = j = 0, len = props.length; j < len; i = ++j) {
|
||||||
f = ref1[i]
|
f = props[i]
|
||||||
domEvent[f] = args[i]
|
domEvent[f] = args[i]
|
||||||
}
|
}
|
||||||
webView.dispatchEvent(domEvent)
|
webView.dispatchEvent(domEvent)
|
||||||
|
@ -64,11 +63,10 @@ var dispatchEvent = function (webView, eventName, eventKey, ...args) {
|
||||||
module.exports = {
|
module.exports = {
|
||||||
registerEvents: function (webView, viewInstanceId) {
|
registerEvents: function (webView, viewInstanceId) {
|
||||||
ipcRenderer.on('ELECTRON_GUEST_VIEW_INTERNAL_DESTROY_GUEST-' + viewInstanceId, function () {
|
ipcRenderer.on('ELECTRON_GUEST_VIEW_INTERNAL_DESTROY_GUEST-' + viewInstanceId, function () {
|
||||||
var domEvent
|
|
||||||
webFrame.detachGuest(webView.internalInstanceId)
|
webFrame.detachGuest(webView.internalInstanceId)
|
||||||
webView.guestInstanceId = undefined
|
webView.guestInstanceId = undefined
|
||||||
webView.reset()
|
webView.reset()
|
||||||
domEvent = new Event('destroyed')
|
const domEvent = new Event('destroyed')
|
||||||
webView.dispatchEvent(domEvent)
|
webView.dispatchEvent(domEvent)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -77,18 +75,18 @@ module.exports = {
|
||||||
})
|
})
|
||||||
|
|
||||||
ipcRenderer.on('ELECTRON_GUEST_VIEW_INTERNAL_IPC_MESSAGE-' + viewInstanceId, function (event, channel, ...args) {
|
ipcRenderer.on('ELECTRON_GUEST_VIEW_INTERNAL_IPC_MESSAGE-' + viewInstanceId, function (event, channel, ...args) {
|
||||||
var domEvent = new Event('ipc-message')
|
const domEvent = new Event('ipc-message')
|
||||||
domEvent.channel = channel
|
domEvent.channel = channel
|
||||||
domEvent.args = args
|
domEvent.args = args
|
||||||
webView.dispatchEvent(domEvent)
|
webView.dispatchEvent(domEvent)
|
||||||
})
|
})
|
||||||
|
|
||||||
ipcRenderer.on('ELECTRON_GUEST_VIEW_INTERNAL_SIZE_CHANGED-' + viewInstanceId, function (event, ...args) {
|
ipcRenderer.on('ELECTRON_GUEST_VIEW_INTERNAL_SIZE_CHANGED-' + viewInstanceId, function (event, ...args) {
|
||||||
var domEvent, f, i, j, len, ref1
|
let f, i, j, len
|
||||||
domEvent = new Event('size-changed')
|
const domEvent = new Event('size-changed')
|
||||||
ref1 = ['oldWidth', 'oldHeight', 'newWidth', 'newHeight']
|
const props = ['oldWidth', 'oldHeight', 'newWidth', 'newHeight']
|
||||||
for (i = j = 0, len = ref1.length; j < len; i = ++j) {
|
for (i = j = 0, len = props.length; j < len; i = ++j) {
|
||||||
f = ref1[i]
|
f = props[i]
|
||||||
domEvent[f] = args[i]
|
domEvent[f] = args[i]
|
||||||
}
|
}
|
||||||
webView.onSizeChanged(domEvent)
|
webView.onSizeChanged(domEvent)
|
||||||
|
|
|
@ -6,9 +6,9 @@ const webViewConstants = require('./web-view-constants')
|
||||||
const remote = require('electron').remote
|
const remote = require('electron').remote
|
||||||
|
|
||||||
// Helper function to resolve url set in attribute.
|
// Helper function to resolve url set in attribute.
|
||||||
var a = document.createElement('a')
|
const a = document.createElement('a')
|
||||||
|
|
||||||
var resolveURL = function (url) {
|
const resolveURL = function (url) {
|
||||||
if (url === '') return ''
|
if (url === '') return ''
|
||||||
a.href = url
|
a.href = url
|
||||||
return a.href
|
return a.href
|
||||||
|
@ -211,9 +211,8 @@ class SrcAttribute extends WebViewAttribute {
|
||||||
// where the webview guest has crashed and navigating to the same address
|
// where the webview guest has crashed and navigating to the same address
|
||||||
// spawns off a new process.
|
// spawns off a new process.
|
||||||
setupMutationObserver () {
|
setupMutationObserver () {
|
||||||
var params
|
|
||||||
this.observer = new MutationObserver((mutations) => {
|
this.observer = new MutationObserver((mutations) => {
|
||||||
var i, len, mutation, newValue, oldValue
|
let i, len, mutation, newValue, oldValue
|
||||||
for (i = 0, len = mutations.length; i < len; i++) {
|
for (i = 0, len = mutations.length; i < len; i++) {
|
||||||
mutation = mutations[i]
|
mutation = mutations[i]
|
||||||
oldValue = mutation.oldValue
|
oldValue = mutation.oldValue
|
||||||
|
@ -224,7 +223,7 @@ class SrcAttribute extends WebViewAttribute {
|
||||||
this.handleMutation(oldValue, newValue)
|
this.handleMutation(oldValue, newValue)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
params = {
|
const params = {
|
||||||
attributes: true,
|
attributes: true,
|
||||||
attributeOldValue: true,
|
attributeOldValue: true,
|
||||||
attributeFilter: [this.name]
|
attributeFilter: [this.name]
|
||||||
|
@ -233,7 +232,6 @@ class SrcAttribute extends WebViewAttribute {
|
||||||
}
|
}
|
||||||
|
|
||||||
parse () {
|
parse () {
|
||||||
var guestContents, httpreferrer, opts, useragent
|
|
||||||
if (!this.webViewImpl.elementAttached || !this.webViewImpl.attributes[webViewConstants.ATTRIBUTE_PARTITION].validPartitionId || !this.getValue()) {
|
if (!this.webViewImpl.elementAttached || !this.webViewImpl.attributes[webViewConstants.ATTRIBUTE_PARTITION].validPartitionId || !this.getValue()) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -246,16 +244,16 @@ class SrcAttribute extends WebViewAttribute {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Navigate to |this.src|.
|
// Navigate to |this.src|.
|
||||||
opts = {}
|
const opts = {}
|
||||||
httpreferrer = this.webViewImpl.attributes[webViewConstants.ATTRIBUTE_HTTPREFERRER].getValue()
|
const httpreferrer = this.webViewImpl.attributes[webViewConstants.ATTRIBUTE_HTTPREFERRER].getValue()
|
||||||
if (httpreferrer) {
|
if (httpreferrer) {
|
||||||
opts.httpReferrer = httpreferrer
|
opts.httpReferrer = httpreferrer
|
||||||
}
|
}
|
||||||
useragent = this.webViewImpl.attributes[webViewConstants.ATTRIBUTE_USERAGENT].getValue()
|
const useragent = this.webViewImpl.attributes[webViewConstants.ATTRIBUTE_USERAGENT].getValue()
|
||||||
if (useragent) {
|
if (useragent) {
|
||||||
opts.userAgent = useragent
|
opts.userAgent = useragent
|
||||||
}
|
}
|
||||||
guestContents = remote.getGuestWebContents(this.webViewImpl.guestInstanceId)
|
const guestContents = remote.getGuestWebContents(this.webViewImpl.guestInstanceId)
|
||||||
guestContents.loadURL(this.getValue(), opts)
|
guestContents.loadURL(this.getValue(), opts)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -281,12 +279,11 @@ class PreloadAttribute extends WebViewAttribute {
|
||||||
}
|
}
|
||||||
|
|
||||||
getValue () {
|
getValue () {
|
||||||
var preload, protocol
|
|
||||||
if (!this.webViewImpl.webviewNode.hasAttribute(this.name)) {
|
if (!this.webViewImpl.webviewNode.hasAttribute(this.name)) {
|
||||||
return this.value
|
return this.value
|
||||||
}
|
}
|
||||||
preload = resolveURL(this.webViewImpl.webviewNode.getAttribute(this.name))
|
let preload = resolveURL(this.webViewImpl.webviewNode.getAttribute(this.name))
|
||||||
protocol = preload.substr(0, 5)
|
const protocol = preload.substr(0, 5)
|
||||||
if (protocol !== 'file:') {
|
if (protocol !== 'file:') {
|
||||||
console.error(webViewConstants.ERROR_MSG_INVALID_PRELOAD_ATTRIBUTE)
|
console.error(webViewConstants.ERROR_MSG_INVALID_PRELOAD_ATTRIBUTE)
|
||||||
preload = ''
|
preload = ''
|
||||||
|
|
|
@ -8,19 +8,18 @@ const v8Util = process.atomBinding('v8_util')
|
||||||
const guestViewInternal = require('./guest-view-internal')
|
const guestViewInternal = require('./guest-view-internal')
|
||||||
const webViewConstants = require('./web-view-constants')
|
const webViewConstants = require('./web-view-constants')
|
||||||
|
|
||||||
var hasProp = {}.hasOwnProperty
|
const hasProp = {}.hasOwnProperty
|
||||||
|
|
||||||
// ID generator.
|
// ID generator.
|
||||||
var nextId = 0
|
let nextId = 0
|
||||||
|
|
||||||
var getNextId = function () {
|
const getNextId = function () {
|
||||||
return ++nextId
|
return ++nextId
|
||||||
}
|
}
|
||||||
|
|
||||||
// Represents the internal state of the WebView node.
|
// Represents the internal state of the WebView node.
|
||||||
var WebViewImpl = (function () {
|
const WebViewImpl = (function () {
|
||||||
function WebViewImpl (webviewNode) {
|
function WebViewImpl (webviewNode) {
|
||||||
var shadowRoot
|
|
||||||
this.webviewNode = webviewNode
|
this.webviewNode = webviewNode
|
||||||
v8Util.setHiddenValue(this.webviewNode, 'internal', this)
|
v8Util.setHiddenValue(this.webviewNode, 'internal', this)
|
||||||
this.attached = false
|
this.attached = false
|
||||||
|
@ -30,7 +29,7 @@ var WebViewImpl = (function () {
|
||||||
// on* Event handlers.
|
// on* Event handlers.
|
||||||
this.on = {}
|
this.on = {}
|
||||||
this.browserPluginNode = this.createBrowserPluginNode()
|
this.browserPluginNode = this.createBrowserPluginNode()
|
||||||
shadowRoot = this.webviewNode.createShadowRoot()
|
const shadowRoot = this.webviewNode.createShadowRoot()
|
||||||
shadowRoot.innerHTML = '<!DOCTYPE html><style type="text/css">:host { display: flex; }</style>'
|
shadowRoot.innerHTML = '<!DOCTYPE html><style type="text/css">:host { display: flex; }</style>'
|
||||||
this.setupWebViewAttributes()
|
this.setupWebViewAttributes()
|
||||||
this.setupFocusPropagation()
|
this.setupFocusPropagation()
|
||||||
|
@ -52,7 +51,7 @@ var WebViewImpl = (function () {
|
||||||
WebViewImpl.prototype.createBrowserPluginNode = function () {
|
WebViewImpl.prototype.createBrowserPluginNode = function () {
|
||||||
// We create BrowserPlugin as a custom element in order to observe changes
|
// We create BrowserPlugin as a custom element in order to observe changes
|
||||||
// to attributes synchronously.
|
// to attributes synchronously.
|
||||||
var browserPluginNode = new WebViewImpl.BrowserPlugin()
|
const browserPluginNode = new WebViewImpl.BrowserPlugin()
|
||||||
v8Util.setHiddenValue(browserPluginNode, 'internal', this)
|
v8Util.setHiddenValue(browserPluginNode, 'internal', this)
|
||||||
return browserPluginNode
|
return browserPluginNode
|
||||||
}
|
}
|
||||||
|
@ -136,18 +135,16 @@ var WebViewImpl = (function () {
|
||||||
}
|
}
|
||||||
|
|
||||||
WebViewImpl.prototype.onSizeChanged = function (webViewEvent) {
|
WebViewImpl.prototype.onSizeChanged = function (webViewEvent) {
|
||||||
var maxHeight, maxWidth, minHeight, minWidth, newHeight, newWidth, node, width
|
const {newHeight, newWidth} = webViewEvent
|
||||||
newWidth = webViewEvent.newWidth
|
const node = this.webviewNode
|
||||||
newHeight = webViewEvent.newHeight
|
const width = node.offsetWidth
|
||||||
node = this.webviewNode
|
|
||||||
width = node.offsetWidth
|
|
||||||
|
|
||||||
// Check the current bounds to make sure we do not resize <webview>
|
// Check the current bounds to make sure we do not resize <webview>
|
||||||
// outside of current constraints.
|
// outside of current constraints.
|
||||||
maxWidth = this.attributes[webViewConstants.ATTRIBUTE_MAXWIDTH].getValue() | width
|
const maxWidth = this.attributes[webViewConstants.ATTRIBUTE_MAXWIDTH].getValue() | width
|
||||||
maxHeight = this.attributes[webViewConstants.ATTRIBUTE_MAXHEIGHT].getValue() | width
|
const maxHeight = this.attributes[webViewConstants.ATTRIBUTE_MAXHEIGHT].getValue() | width
|
||||||
minWidth = this.attributes[webViewConstants.ATTRIBUTE_MINWIDTH].getValue() | width
|
let minWidth = this.attributes[webViewConstants.ATTRIBUTE_MINWIDTH].getValue() | width
|
||||||
minHeight = this.attributes[webViewConstants.ATTRIBUTE_MINHEIGHT].getValue() | width
|
let minHeight = this.attributes[webViewConstants.ATTRIBUTE_MINHEIGHT].getValue() | width
|
||||||
minWidth = Math.min(minWidth, maxWidth)
|
minWidth = Math.min(minWidth, maxWidth)
|
||||||
minHeight = Math.min(minHeight, maxHeight)
|
minHeight = Math.min(minHeight, maxHeight)
|
||||||
if (!this.attributes[webViewConstants.ATTRIBUTE_AUTOSIZE].getValue() || (newWidth >= minWidth && newWidth <= maxWidth && newHeight >= minHeight && newHeight <= maxHeight)) {
|
if (!this.attributes[webViewConstants.ATTRIBUTE_AUTOSIZE].getValue() || (newWidth >= minWidth && newWidth <= maxWidth && newHeight >= minHeight && newHeight <= maxHeight)) {
|
||||||
|
@ -162,8 +159,7 @@ var WebViewImpl = (function () {
|
||||||
|
|
||||||
WebViewImpl.prototype.onElementResize = function (newSize) {
|
WebViewImpl.prototype.onElementResize = function (newSize) {
|
||||||
// Dispatch the 'resize' event.
|
// Dispatch the 'resize' event.
|
||||||
var resizeEvent
|
const resizeEvent = new Event('resize', {
|
||||||
resizeEvent = new Event('resize', {
|
|
||||||
bubbles: true
|
bubbles: true
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -195,8 +191,7 @@ var WebViewImpl = (function () {
|
||||||
// Adds an 'on<event>' property on the webview, which can be used to set/unset
|
// Adds an 'on<event>' property on the webview, which can be used to set/unset
|
||||||
// an event handler.
|
// an event handler.
|
||||||
WebViewImpl.prototype.setupEventProperty = function (eventName) {
|
WebViewImpl.prototype.setupEventProperty = function (eventName) {
|
||||||
var propertyName
|
const propertyName = 'on' + eventName.toLowerCase()
|
||||||
propertyName = 'on' + eventName.toLowerCase()
|
|
||||||
return Object.defineProperty(this.webviewNode, propertyName, {
|
return Object.defineProperty(this.webviewNode, propertyName, {
|
||||||
get: () => {
|
get: () => {
|
||||||
return this.on[propertyName]
|
return this.on[propertyName]
|
||||||
|
@ -216,14 +211,13 @@ var WebViewImpl = (function () {
|
||||||
|
|
||||||
// Updates state upon loadcommit.
|
// Updates state upon loadcommit.
|
||||||
WebViewImpl.prototype.onLoadCommit = function (webViewEvent) {
|
WebViewImpl.prototype.onLoadCommit = function (webViewEvent) {
|
||||||
var newValue, oldValue
|
const oldValue = this.webviewNode.getAttribute(webViewConstants.ATTRIBUTE_SRC)
|
||||||
oldValue = this.webviewNode.getAttribute(webViewConstants.ATTRIBUTE_SRC)
|
const newValue = webViewEvent.url
|
||||||
newValue = webViewEvent.url
|
|
||||||
if (webViewEvent.isMainFrame && (oldValue !== newValue)) {
|
if (webViewEvent.isMainFrame && (oldValue !== newValue)) {
|
||||||
// Touching the src attribute triggers a navigation. To avoid
|
// Touching the src attribute triggers a navigation. To avoid
|
||||||
// triggering a page reload on every guest-initiated navigation,
|
// triggering a page reload on every guest-initiated navigation,
|
||||||
// we do not handle this mutation.
|
// we do not handle this mutation.
|
||||||
return this.attributes[webViewConstants.ATTRIBUTE_SRC].setValueIgnoreMutation(newValue)
|
this.attributes[webViewConstants.ATTRIBUTE_SRC].setValueIgnoreMutation(newValue)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -232,17 +226,15 @@ var WebViewImpl = (function () {
|
||||||
}
|
}
|
||||||
|
|
||||||
WebViewImpl.prototype.buildParams = function () {
|
WebViewImpl.prototype.buildParams = function () {
|
||||||
var attribute, attributeName, css, elementRect, params, ref1
|
const params = {
|
||||||
params = {
|
|
||||||
instanceId: this.viewInstanceId,
|
instanceId: this.viewInstanceId,
|
||||||
userAgentOverride: this.userAgentOverride,
|
userAgentOverride: this.userAgentOverride,
|
||||||
zoomFactor: webFrame.getZoomFactor()
|
zoomFactor: webFrame.getZoomFactor()
|
||||||
}
|
}
|
||||||
ref1 = this.attributes
|
for (const attributeName in this.attributes) {
|
||||||
for (attributeName in ref1) {
|
if (hasProp.call(this.attributes, attributeName)) {
|
||||||
if (!hasProp.call(ref1, attributeName)) continue
|
params[attributeName] = this.attributes[attributeName].getValue()
|
||||||
attribute = ref1[attributeName]
|
}
|
||||||
params[attributeName] = attribute.getValue()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// When the WebView is not participating in layout (display:none)
|
// When the WebView is not participating in layout (display:none)
|
||||||
|
@ -250,8 +242,8 @@ var WebViewImpl = (function () {
|
||||||
// However, in the case where the WebView has a fixed size we can
|
// However, in the case where the WebView has a fixed size we can
|
||||||
// use that value to initially size the guest so as to avoid a relayout of
|
// use that value to initially size the guest so as to avoid a relayout of
|
||||||
// the on display:block.
|
// the on display:block.
|
||||||
css = window.getComputedStyle(this.webviewNode, null)
|
const css = window.getComputedStyle(this.webviewNode, null)
|
||||||
elementRect = this.webviewNode.getBoundingClientRect()
|
const elementRect = this.webviewNode.getBoundingClientRect()
|
||||||
params.elementWidth = parseInt(elementRect.width) || parseInt(css.getPropertyValue('width'))
|
params.elementWidth = parseInt(elementRect.width) || parseInt(css.getPropertyValue('width'))
|
||||||
params.elementHeight = parseInt(elementRect.height) || parseInt(css.getPropertyValue('height'))
|
params.elementHeight = parseInt(elementRect.height) || parseInt(css.getPropertyValue('height'))
|
||||||
return params
|
return params
|
||||||
|
@ -271,8 +263,8 @@ var WebViewImpl = (function () {
|
||||||
})()
|
})()
|
||||||
|
|
||||||
// Registers browser plugin <object> custom element.
|
// Registers browser plugin <object> custom element.
|
||||||
var registerBrowserPluginElement = function () {
|
const registerBrowserPluginElement = function () {
|
||||||
var proto = Object.create(HTMLObjectElement.prototype)
|
const proto = Object.create(HTMLObjectElement.prototype)
|
||||||
proto.createdCallback = function () {
|
proto.createdCallback = function () {
|
||||||
this.setAttribute('type', 'application/browser-plugin')
|
this.setAttribute('type', 'application/browser-plugin')
|
||||||
this.setAttribute('id', 'browser-plugin-' + getNextId())
|
this.setAttribute('id', 'browser-plugin-' + getNextId())
|
||||||
|
@ -298,13 +290,12 @@ var registerBrowserPluginElement = function () {
|
||||||
delete proto.createdCallback
|
delete proto.createdCallback
|
||||||
delete proto.attachedCallback
|
delete proto.attachedCallback
|
||||||
delete proto.detachedCallback
|
delete proto.detachedCallback
|
||||||
return delete proto.attributeChangedCallback
|
delete proto.attributeChangedCallback
|
||||||
}
|
}
|
||||||
|
|
||||||
// Registers <webview> custom element.
|
// Registers <webview> custom element.
|
||||||
var registerWebViewElement = function () {
|
var registerWebViewElement = function () {
|
||||||
var createBlockHandler, createNonBlockHandler, i, j, len, len1, m, methods, nonblockMethods, proto
|
const proto = Object.create(HTMLObjectElement.prototype)
|
||||||
proto = Object.create(HTMLObjectElement.prototype)
|
|
||||||
proto.createdCallback = function () {
|
proto.createdCallback = function () {
|
||||||
return new WebViewImpl(this)
|
return new WebViewImpl(this)
|
||||||
}
|
}
|
||||||
|
@ -345,7 +336,7 @@ var registerWebViewElement = function () {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Public-facing API methods.
|
// Public-facing API methods.
|
||||||
methods = [
|
const methods = [
|
||||||
'getURL',
|
'getURL',
|
||||||
'loadURL',
|
'loadURL',
|
||||||
'getTitle',
|
'getTitle',
|
||||||
|
@ -394,7 +385,7 @@ var registerWebViewElement = function () {
|
||||||
'showDefinitionForSelection',
|
'showDefinitionForSelection',
|
||||||
'capturePage'
|
'capturePage'
|
||||||
]
|
]
|
||||||
nonblockMethods = [
|
const nonblockMethods = [
|
||||||
'insertCSS',
|
'insertCSS',
|
||||||
'insertText',
|
'insertText',
|
||||||
'send',
|
'send',
|
||||||
|
@ -405,7 +396,7 @@ var registerWebViewElement = function () {
|
||||||
]
|
]
|
||||||
|
|
||||||
// Forward proto.foo* method calls to WebViewImpl.foo*.
|
// Forward proto.foo* method calls to WebViewImpl.foo*.
|
||||||
createBlockHandler = function (m) {
|
const createBlockHandler = function (m) {
|
||||||
return function (...args) {
|
return function (...args) {
|
||||||
const internal = v8Util.getHiddenValue(this, 'internal')
|
const internal = v8Util.getHiddenValue(this, 'internal')
|
||||||
if (internal.webContents) {
|
if (internal.webContents) {
|
||||||
|
@ -415,28 +406,28 @@ var registerWebViewElement = function () {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (i = 0, len = methods.length; i < len; i++) {
|
for (let i = 0, len = methods.length; i < len; i++) {
|
||||||
m = methods[i]
|
const method = methods[i]
|
||||||
proto[m] = createBlockHandler(m)
|
proto[method] = createBlockHandler(method)
|
||||||
}
|
}
|
||||||
createNonBlockHandler = function (m) {
|
const createNonBlockHandler = function (m) {
|
||||||
return function (...args) {
|
return function (...args) {
|
||||||
const internal = v8Util.getHiddenValue(this, 'internal')
|
const internal = v8Util.getHiddenValue(this, 'internal')
|
||||||
ipcRenderer.send.apply(ipcRenderer, ['ELECTRON_BROWSER_ASYNC_CALL_TO_GUEST_VIEW', null, internal.guestInstanceId, m].concat(args))
|
ipcRenderer.send.apply(ipcRenderer, ['ELECTRON_BROWSER_ASYNC_CALL_TO_GUEST_VIEW', null, internal.guestInstanceId, m].concat(args))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (j = 0, len1 = nonblockMethods.length; j < len1; j++) {
|
for (let j = 0, len1 = nonblockMethods.length; j < len1; j++) {
|
||||||
m = nonblockMethods[j]
|
const method = nonblockMethods[j]
|
||||||
proto[m] = createNonBlockHandler(m)
|
proto[method] = createNonBlockHandler(method)
|
||||||
}
|
}
|
||||||
|
|
||||||
proto.executeJavaScript = function (code, hasUserGesture, callback) {
|
proto.executeJavaScript = function (code, hasUserGesture, callback) {
|
||||||
var internal = v8Util.getHiddenValue(this, 'internal')
|
const internal = v8Util.getHiddenValue(this, 'internal')
|
||||||
if (typeof hasUserGesture === 'function') {
|
if (typeof hasUserGesture === 'function') {
|
||||||
callback = hasUserGesture
|
callback = hasUserGesture
|
||||||
hasUserGesture = false
|
hasUserGesture = false
|
||||||
}
|
}
|
||||||
let requestId = getNextId()
|
const requestId = getNextId()
|
||||||
ipcRenderer.send('ELECTRON_BROWSER_ASYNC_CALL_TO_GUEST_VIEW', requestId, internal.guestInstanceId, 'executeJavaScript', code, hasUserGesture)
|
ipcRenderer.send('ELECTRON_BROWSER_ASYNC_CALL_TO_GUEST_VIEW', requestId, internal.guestInstanceId, 'executeJavaScript', code, hasUserGesture)
|
||||||
ipcRenderer.once(`ELECTRON_RENDERER_ASYNC_CALL_TO_GUEST_VIEW_RESPONSE_${requestId}`, function (event, result) {
|
ipcRenderer.once(`ELECTRON_RENDERER_ASYNC_CALL_TO_GUEST_VIEW_RESPONSE_${requestId}`, function (event, result) {
|
||||||
if (callback) callback(result)
|
if (callback) callback(result)
|
||||||
|
@ -445,7 +436,7 @@ var registerWebViewElement = function () {
|
||||||
|
|
||||||
// WebContents associated with this webview.
|
// WebContents associated with this webview.
|
||||||
proto.getWebContents = function () {
|
proto.getWebContents = function () {
|
||||||
var internal = v8Util.getHiddenValue(this, 'internal')
|
const internal = v8Util.getHiddenValue(this, 'internal')
|
||||||
return internal.webContents
|
return internal.webContents
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -461,9 +452,9 @@ var registerWebViewElement = function () {
|
||||||
delete proto.attributeChangedCallback
|
delete proto.attributeChangedCallback
|
||||||
}
|
}
|
||||||
|
|
||||||
var useCapture = true
|
const useCapture = true
|
||||||
|
|
||||||
var listener = function (event) {
|
const listener = function (event) {
|
||||||
if (document.readyState === 'loading') {
|
if (document.readyState === 'loading') {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue