electron/atom/renderer/lib/override.coffee

83 lines
2.7 KiB
CoffeeScript
Raw Normal View History

process = global.process
ipc = require 'ipc'
remote = require 'remote'
2014-03-01 12:00:39 +00:00
# Window object returned by "window.open".
class FakeWindow
2014-10-28 05:23:25 +00:00
constructor: (@guestId) ->
2015-03-04 09:29:52 +00:00
ipc.on 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_CLOSED', (guestId) =>
if guestId is @guestId
@closed = true
close: ->
2014-10-28 05:23:25 +00:00
ipc.send 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_CLOSE', @guestId
2014-10-27 15:03:05 +00:00
focus: ->
ipc.send 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_METHOD', @guestId, 'focus'
blur: ->
ipc.send 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_METHOD', @guestId, 'blur'
2015-03-04 09:29:52 +00:00
postMessage: (message, targetOrigin) ->
ipc.send 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_POSTMESSAGE', @guestId, message, targetOrigin
2014-10-27 15:07:41 +00:00
eval: (args...) ->
ipc.send 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WEB_CONTENTS_METHOD', @guestId, 'executeJavaScript', args...
unless process.guestInstanceId?
# Override default window.close.
window.close = ->
remote.getCurrentWindow().close()
2014-03-01 12:00:39 +00:00
# Make the browser window or guest view emit "new-window" event.
window.open = (url, frameName='', features='') ->
options = {}
ints = [ 'x', 'y', 'width', 'height', 'min-width', 'max-width', 'min-height', 'max-height', 'zoom-factor' ]
# Make sure to get rid of excessive whitespace in the property name
for feature in features.split /,\s*/
[name, value] = feature.split /\s*=/
options[name] =
if value is 'yes' or value is '1'
true
else if value is 'no' or value is '0'
false
else
value
options.x ?= options.left if options.left
options.y ?= options.top if options.top
options.title ?= name
options.width ?= 800
options.height ?= 600
2014-03-01 12:00:39 +00:00
(options[name] = parseInt(options[name], 10) if options[name]?) for name in ints
2014-10-28 05:23:25 +00:00
guestId = ipc.sendSync 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_OPEN', url, frameName, options
if guestId
new FakeWindow(guestId)
else
console.error 'It is not allowed to open new window from this WebContents'
null
# Use the dialog API to implement alert().
window.alert = (message, title='') ->
dialog = remote.require 'dialog'
buttons = ['OK']
dialog.showMessageBox remote.getCurrentWindow(), {message, title, buttons}
2014-03-01 12:03:49 +00:00
# And the confirm().
window.confirm = (message, title='') ->
dialog = remote.require 'dialog'
buttons = ['OK', 'Cancel']
not dialog.showMessageBox remote.getCurrentWindow(), {message, title, buttons}
2014-03-01 12:05:52 +00:00
# But we do not support prompt().
window.prompt = ->
throw new Error('prompt() is and will not be supported in atom-shell.')
window.opener =
2015-03-04 09:29:52 +00:00
postMessage: (message, targetOrigin) ->
ipc.send 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_OPENER_POSTMESSAGE', message, targetOrigin
2015-03-04 09:29:52 +00:00
ipc.on 'ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_POSTMESSAGE', (message, targetOrigin) ->
window.postMessage(message, targetOrigin)