electron/atom/renderer/lib/web-view/web-view.coffee

320 lines
11 KiB
CoffeeScript
Raw Normal View History

2014-10-22 14:55:13 +00:00
v8Util = process.atomBinding 'v8_util'
guestViewInternal = require './guest-view-internal'
webViewConstants = require './web-view-constants'
2014-10-24 10:24:12 +00:00
webFrame = require 'web-frame'
2014-10-24 11:57:29 +00:00
remote = require 'remote'
2014-10-22 14:55:13 +00:00
# ID generator.
nextId = 0
getNextId = -> ++nextId
2014-10-22 14:55:13 +00:00
# Represents the internal state of the WebView node.
class WebViewImpl
2014-10-22 14:55:13 +00:00
constructor: (@webviewNode) ->
2014-10-22 15:37:27 +00:00
v8Util.setHiddenValue @webviewNode, 'internal', this
2014-10-22 14:55:13 +00:00
@attached = false
@elementAttached = false
@beforeFirstNavigation = true
# on* Event handlers.
@on = {}
@browserPluginNode = @createBrowserPluginNode()
shadowRoot = @webviewNode.createShadowRoot()
@setupWebViewAttributes()
2014-10-22 14:55:13 +00:00
@setupFocusPropagation()
@viewInstanceId = getNextId()
2014-12-08 16:05:34 +00:00
2014-10-22 14:55:13 +00:00
shadowRoot.appendChild @browserPluginNode
createBrowserPluginNode: ->
# We create BrowserPlugin as a custom element in order to observe changes
# to attributes synchronously.
browserPluginNode = new WebViewImpl.BrowserPlugin()
2014-10-22 14:55:13 +00:00
v8Util.setHiddenValue browserPluginNode, 'internal', this
browserPluginNode
# Resets some state upon reattaching <webview> element to the DOM.
reset: ->
# If guestInstanceId is defined then the <webview> has navigated and has
# already picked up a partition ID. Thus, we need to reset the initialization
# state. However, it may be the case that beforeFirstNavigation is false BUT
# guestInstanceId has yet to be initialized. This means that we have not
# heard back from createGuest yet. We will not reset the flag in this case so
# that we don't end up allocating a second guest.
if @guestInstanceId
guestViewInternal.destroyGuest @guestInstanceId
2014-10-22 14:55:13 +00:00
@guestInstanceId = undefined
@beforeFirstNavigation = true
@attributes[webViewConstants.ATTRIBUTE_PARTITION].validPartitionId = true
2014-10-22 14:55:13 +00:00
@internalInstanceId = 0
# Sets the <webview>.request property.
setRequestPropertyOnWebViewNode: (request) ->
Object.defineProperty @webviewNode, 'request', value: request, enumerable: true
setupFocusPropagation: ->
unless @webviewNode.hasAttribute 'tabIndex'
# <webview> needs a tabIndex in order to be focusable.
# TODO(fsamuel): It would be nice to avoid exposing a tabIndex attribute
# to allow <webview> to be focusable.
# See http://crbug.com/231664.
@webviewNode.setAttribute 'tabIndex', -1
@webviewNode.addEventListener 'focus', (e) =>
# Focus the BrowserPlugin when the <webview> takes focus.
@browserPluginNode.focus()
@webviewNode.addEventListener 'blur', (e) =>
# Blur the BrowserPlugin when the <webview> loses focus.
@browserPluginNode.blur()
# This observer monitors mutations to attributes of the <webview> and
# updates the BrowserPlugin properties accordingly. In turn, updating
# a BrowserPlugin property will update the corresponding BrowserPlugin
# attribute, if necessary. See BrowserPlugin::UpdateDOMAttribute for more
# details.
handleWebviewAttributeMutation: (attributeName, oldValue, newValue) ->
if not @attributes[attributeName] or @attributes[attributeName].ignoreMutation
return
# Let the changed attribute handle its own mutation;
@attributes[attributeName].handleMutation oldValue, newValue
2014-10-22 14:55:13 +00:00
handleBrowserPluginAttributeMutation: (attributeName, oldValue, newValue) ->
if attributeName is webViewConstants.ATTRIBUTE_INTERNALINSTANCEID and !oldValue and !!newValue
@browserPluginNode.removeAttribute webViewConstants.ATTRIBUTE_INTERNALINSTANCEID
2014-12-08 16:05:34 +00:00
@internalInstanceId = parseInt newValue
2014-10-22 14:55:13 +00:00
2015-05-29 05:47:09 +00:00
# Track when the element resizes using the element resize callback.
webFrame.registerElementResizeCallback @internalInstanceId, @onElementResize.bind(this)
return unless @guestInstanceId
2015-05-29 03:44:49 +00:00
guestViewInternal.attachGuest @internalInstanceId, @guestInstanceId, @buildParams()
2014-10-22 14:55:13 +00:00
onSizeChanged: (webViewEvent) ->
newWidth = webViewEvent.newWidth
newHeight = webViewEvent.newHeight
node = @webviewNode
width = node.offsetWidth
height = node.offsetHeight
# Check the current bounds to make sure we do not resize <webview>
# outside of current constraints.
maxWidth = @attributes[webViewConstants.ATTRIBUTE_MAXWIDTH].getValue() | width
maxHeight = @attributes[webViewConstants.ATTRIBUTE_MAXHEIGHT].getValue() | width
minWidth = @attributes[webViewConstants.ATTRIBUTE_MINWIDTH].getValue() | width
minHeight = @attributes[webViewConstants.ATTRIBUTE_MINHEIGHT].getValue() | width
2014-10-22 14:55:13 +00:00
minWidth = Math.min minWidth, maxWidth
minHeight = Math.min minHeight, maxHeight
if not @attributes[webViewConstants.ATTRIBUTE_AUTOSIZE].getValue() or
2014-10-22 14:55:13 +00:00
(newWidth >= minWidth and
newWidth <= maxWidth and
newHeight >= minHeight and
newHeight <= maxHeight)
node.style.width = newWidth + 'px'
node.style.height = newHeight + 'px'
# Only fire the DOM event if the size of the <webview> has actually
# changed.
@dispatchEvent webViewEvent
2015-05-29 05:47:09 +00:00
onElementResize: (oldSize, newSize) ->
# Dispatch the 'resize' event.
resizeEvent = new Event('resize', bubbles: true)
resizeEvent.oldWidth = oldSize.width
resizeEvent.oldHeight = oldSize.height
resizeEvent.newWidth = newSize.width
resizeEvent.newHeight = newSize.height
@dispatchEvent resizeEvent
if @guestInstanceId
guestViewInternal.setSize @guestInstanceId, normal: newSize
2014-10-22 14:55:13 +00:00
createGuest: ->
2015-05-29 03:44:49 +00:00
guestViewInternal.createGuest @buildParams(), (guestInstanceId) =>
@attachWindow guestInstanceId
2014-10-22 14:55:13 +00:00
dispatchEvent: (webViewEvent) ->
2014-10-22 14:55:13 +00:00
@webviewNode.dispatchEvent webViewEvent
# Adds an 'on<event>' property on the webview, which can be used to set/unset
# an event handler.
setupEventProperty: (eventName) ->
propertyName = 'on' + eventName.toLowerCase()
Object.defineProperty @webviewNode, propertyName,
get: => @on[propertyName]
set: (value) =>
if @on[propertyName]
@webviewNode.removeEventListener eventName, @on[propertyName]
@on[propertyName] = value
if value
@webviewNode.addEventListener eventName, value
enumerable: true
# Updates state upon loadcommit.
onLoadCommit: (@baseUrlForDataUrl, @currentEntryIndex, @entryCount, @processId, url, isTopLevel) ->
oldValue = @webviewNode.getAttribute webViewConstants.ATTRIBUTE_SRC
2014-10-22 14:55:13 +00:00
newValue = url
if isTopLevel and (oldValue != newValue)
# Touching the src attribute triggers a navigation. To avoid
# triggering a page reload on every guest-initiated navigation,
# we do not handle this mutation
@attributes[webViewConstants.ATTRIBUTE_SRC].setValueIgnoreMutation newValue
2014-10-22 14:55:13 +00:00
onAttach: (storagePartitionId) ->
@attributes[webViewConstants.ATTRIBUTE_PARTITION].setValue storagePartitionId
2014-10-22 14:55:13 +00:00
2015-05-29 03:44:49 +00:00
buildParams: ->
params =
instanceId: @viewInstanceId
userAgentOverride: @userAgentOverride
for own attributeName, attribute of @attributes
params[attributeName] = attribute.getValue()
2015-05-29 03:44:49 +00:00
# When the WebView is not participating in layout (display:none)
# then getBoundingClientRect() would report a width and height of 0.
# 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
# the on display:block.
css = window.getComputedStyle @webviewNode, null
elementRect = @webviewNode.getBoundingClientRect()
2015-05-29 05:47:09 +00:00
params.elementWidth = parseInt(elementRect.width) ||
parseInt(css.getPropertyValue('width'))
params.elementHeight = parseInt(elementRect.height) ||
parseInt(css.getPropertyValue('height'))
params
2014-10-22 14:55:13 +00:00
attachWindow: (guestInstanceId) ->
2014-10-22 14:55:13 +00:00
@guestInstanceId = guestInstanceId
return true unless @internalInstanceId
2014-10-22 14:55:13 +00:00
2015-05-29 03:44:49 +00:00
guestViewInternal.attachGuest @internalInstanceId, @guestInstanceId, @buildParams()
2014-10-22 14:55:13 +00:00
# Registers browser plugin <object> custom element.
registerBrowserPluginElement = ->
proto = Object.create HTMLObjectElement.prototype
proto.createdCallback = ->
@setAttribute 'type', 'application/browser-plugin'
@setAttribute 'id', 'browser-plugin-' + getNextId()
# The <object> node fills in the <webview> container.
@style.display = 'block'
2014-10-22 14:55:13 +00:00
@style.width = '100%'
@style.height = '100%'
proto.attributeChangedCallback = (name, oldValue, newValue) ->
2014-10-22 15:37:27 +00:00
internal = v8Util.getHiddenValue this, 'internal'
2014-10-22 14:55:13 +00:00
return unless internal
internal.handleBrowserPluginAttributeMutation name, oldValue, newValue
proto.attachedCallback = ->
# Load the plugin immediately.
unused = this.nonExistentAttribute
WebViewImpl.BrowserPlugin = webFrame.registerEmbedderCustomElement 'browserplugin',
2014-10-22 14:55:13 +00:00
extends: 'object', prototype: proto
delete proto.createdCallback
delete proto.attachedCallback
delete proto.detachedCallback
delete proto.attributeChangedCallback
# Registers <webview> custom element.
registerWebViewElement = ->
proto = Object.create HTMLObjectElement.prototype
proto.createdCallback = ->
new WebViewImpl(this)
2014-10-22 14:55:13 +00:00
proto.attributeChangedCallback = (name, oldValue, newValue) ->
2014-10-22 15:37:27 +00:00
internal = v8Util.getHiddenValue this, 'internal'
2014-10-22 14:55:13 +00:00
return unless internal
internal.handleWebviewAttributeMutation name, oldValue, newValue
proto.detachedCallback = ->
2014-10-22 15:37:27 +00:00
internal = v8Util.getHiddenValue this, 'internal'
2014-10-22 14:55:13 +00:00
return unless internal
guestViewInternal.deregisterEvents internal.viewInstanceId
2014-10-22 14:55:13 +00:00
internal.elementAttached = false
internal.reset()
proto.attachedCallback = ->
2014-10-22 15:37:27 +00:00
internal = v8Util.getHiddenValue this, 'internal'
2014-10-22 14:55:13 +00:00
return unless internal
unless internal.elementAttached
guestViewInternal.registerEvents internal, internal.viewInstanceId
2014-10-22 14:55:13 +00:00
internal.elementAttached = true
internal.attributes[webViewConstants.ATTRIBUTE_SRC].parse()
2014-10-22 14:55:13 +00:00
2014-10-24 12:49:51 +00:00
# Public-facing API methods.
methods = [
"getUrl"
"getTitle"
"isLoading"
"isWaitingForResponse"
"stop"
"reload"
2014-11-23 05:26:09 +00:00
"reloadIgnoringCache"
2014-10-24 12:49:51 +00:00
"canGoBack"
"canGoForward"
"canGoToOffset"
2015-05-19 17:11:03 +00:00
"clearHistory"
2014-10-24 12:49:51 +00:00
"goBack"
"goForward"
"goToIndex"
"goToOffset"
"isCrashed"
2014-10-24 13:04:50 +00:00
"setUserAgent"
2014-10-24 12:49:51 +00:00
"executeJavaScript"
2014-11-14 08:34:14 +00:00
"insertCSS"
"openDevTools"
"closeDevTools"
"isDevToolsOpened"
2015-04-22 07:30:10 +00:00
"inspectElement"
"undo"
"redo"
"cut"
"copy"
"paste"
"pasteAndMatchStyle"
"delete"
"selectAll"
"unselect"
"replace"
"replaceMisspelling"
2014-10-24 12:49:51 +00:00
"send"
2014-11-14 08:34:14 +00:00
"getId"
"inspectServiceWorker"
2014-10-24 12:49:51 +00:00
]
# Forward proto.foo* method calls to WebViewImpl.foo*.
2014-10-24 12:49:51 +00:00
createHandler = (m) ->
(args...) ->
internal = v8Util.getHiddenValue this, 'internal'
remote.getGuestWebContents(internal.guestInstanceId)[m] args...
proto[m] = createHandler m for m in methods
2014-10-24 10:44:15 +00:00
window.WebView = webFrame.registerEmbedderCustomElement 'webview',
2014-10-22 14:55:13 +00:00
prototype: proto
# Delete the callbacks so developers cannot call them and produce unexpected
# behavior.
delete proto.createdCallback
delete proto.attachedCallback
delete proto.detachedCallback
delete proto.attributeChangedCallback
useCapture = true
listener = (event) ->
return if document.readyState == 'loading'
registerBrowserPluginElement()
registerWebViewElement()
window.removeEventListener event.type, listener, useCapture
window.addEventListener 'readystatechange', listener, true
module.exports = WebViewImpl