electron/lib/browser/api/web-contents.js

238 lines
6.6 KiB
JavaScript
Raw Normal View History

'use strict'
2016-01-13 03:55:49 +00:00
const {EventEmitter} = require('events')
const {ipcMain, Menu, NavigationController} = require('electron')
2016-01-12 02:40:23 +00:00
const binding = process.atomBinding('web_contents')
const debuggerBinding = process.atomBinding('debugger')
2016-05-02 07:45:57 +00:00
const sessionBinding = process.atomBinding('session')
2016-01-12 02:40:23 +00:00
let nextId = 0
2016-02-22 14:00:21 +00:00
let getNextId = function () {
return ++nextId
}
2016-01-12 02:40:23 +00:00
2016-01-14 21:18:52 +00:00
let PDFPageSize = {
2016-01-12 02:40:23 +00:00
A5: {
custom_display_name: 'A5',
2016-01-12 02:40:23 +00:00
height_microns: 210000,
name: 'ISO_A5',
2016-01-12 02:40:23 +00:00
width_microns: 148000
},
A4: {
custom_display_name: 'A4',
2016-01-12 02:40:23 +00:00
height_microns: 297000,
name: 'ISO_A4',
is_default: 'true',
2016-01-12 02:40:23 +00:00
width_microns: 210000
},
A3: {
custom_display_name: 'A3',
2016-01-12 02:40:23 +00:00
height_microns: 420000,
name: 'ISO_A3',
2016-01-12 02:40:23 +00:00
width_microns: 297000
},
Legal: {
custom_display_name: 'Legal',
2016-01-12 02:40:23 +00:00
height_microns: 355600,
name: 'NA_LEGAL',
2016-01-12 02:40:23 +00:00
width_microns: 215900
},
Letter: {
custom_display_name: 'Letter',
2016-01-12 02:40:23 +00:00
height_microns: 279400,
name: 'NA_LETTER',
2016-01-12 02:40:23 +00:00
width_microns: 215900
},
Tabloid: {
height_microns: 431800,
name: 'NA_LEDGER',
2016-01-12 02:40:23 +00:00
width_microns: 279400,
custom_display_name: 'Tabloid'
2016-01-12 02:40:23 +00:00
}
}
2016-01-12 02:40:23 +00:00
2016-01-13 03:55:49 +00:00
// Following methods are mapped to webFrame.
const webFrameMethods = [
'insertText',
'setZoomFactor',
'setZoomLevel',
2016-01-19 22:49:40 +00:00
'setZoomLevelLimits'
]
2016-01-13 03:55:49 +00:00
let wrapWebContents = function (webContents) {
2016-01-14 18:35:29 +00:00
// webContents is an EventEmitter.
var controller, method, name, ref1
Object.setPrototypeOf(webContents, EventEmitter.prototype)
2016-01-12 02:40:23 +00:00
// Every remote callback from renderer process would add a listenter to the
// render-view-deleted event, so ignore the listenters warning.
webContents.setMaxListeners(0)
2016-01-14 18:35:29 +00:00
// WebContents::send(channel, args..)
webContents.send = function (channel, ...args) {
if (channel == null) {
throw new Error('Missing required channel argument')
}
return this._send(channel, args)
}
2016-01-12 02:40:23 +00:00
// WebContents::sendToAll(channel, args..)
webContents.sendToAll = function (channel, ...args) {
if (channel == null) {
throw new Error('Missing required channel argument')
}
return this._sendToAll(channel, args)
}
2016-01-14 18:35:29 +00:00
// The navigation controller.
controller = new NavigationController(webContents)
ref1 = NavigationController.prototype
2016-01-12 02:40:23 +00:00
for (name in ref1) {
method = ref1[name]
2016-01-12 02:40:23 +00:00
if (method instanceof Function) {
(function (name, method) {
2016-03-29 00:35:49 +00:00
webContents[name] = function () {
return method.apply(controller, arguments)
}
})(name, method)
2016-01-12 02:40:23 +00:00
}
}
2016-01-13 03:55:49 +00:00
// Mapping webFrame methods.
for (let method of webFrameMethods) {
webContents[method] = function (...args) {
this.send('ELECTRON_INTERNAL_RENDERER_WEB_FRAME_METHOD', method, args)
}
2016-01-13 03:55:49 +00:00
}
const asyncWebFrameMethods = function (requestId, method, callback, ...args) {
this.send('ELECTRON_INTERNAL_RENDERER_ASYNC_WEB_FRAME_METHOD', requestId, method, args)
ipcMain.once(`ELECTRON_INTERNAL_BROWSER_ASYNC_WEB_FRAME_RESPONSE_${requestId}`, function (event, result) {
2016-03-29 00:35:49 +00:00
if (callback) callback(result)
})
}
2016-02-22 14:00:21 +00:00
2016-01-13 04:11:46 +00:00
// Make sure webContents.executeJavaScript would run the code only when the
// webContents has been loaded.
webContents.executeJavaScript = function (code, hasUserGesture, callback) {
let requestId = getNextId()
if (typeof hasUserGesture === 'function') {
callback = hasUserGesture
hasUserGesture = false
}
if (this.getURL() && !this.isLoadingMainFrame()) {
asyncWebFrameMethods.call(this, requestId, 'executeJavaScript', callback, code, hasUserGesture)
2016-03-29 00:35:49 +00:00
} else {
this.once('did-finish-load', () => {
asyncWebFrameMethods.call(this, requestId, 'executeJavaScript', callback, code, hasUserGesture)
})
2016-03-29 00:35:49 +00:00
}
}
2016-01-13 04:11:46 +00:00
2016-01-14 18:35:29 +00:00
// Dispatch IPC messages to the ipc module.
webContents.on('ipc-message', function (event, [channel, ...args]) {
2016-05-19 22:28:08 +00:00
ipcMain.emit.apply(ipcMain, [channel, event].concat(args))
})
webContents.on('ipc-message-sync', function (event, [channel, ...args]) {
2016-01-12 02:40:23 +00:00
Object.defineProperty(event, 'returnValue', {
set: function (value) {
return event.sendReply(JSON.stringify(value))
2016-03-30 21:06:50 +00:00
},
get: function () {
return undefined
2016-01-12 02:40:23 +00:00
}
})
return ipcMain.emit.apply(ipcMain, [channel, event].concat(args))
})
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// Handle context menu action request from pepper plugin.
webContents.on('pepper-context-menu', function (event, params) {
2016-05-19 22:28:08 +00:00
const menu = Menu.buildFromTemplate(params.menu)
menu.popup(params.x, params.y)
})
2016-01-12 02:40:23 +00:00
// The devtools requests the webContents to reload.
webContents.on('devtools-reload-page', function () {
webContents.reload()
})
2016-01-14 18:35:29 +00:00
// Delays the page-title-updated event to next tick.
webContents.on('-page-title-updated', function (...args) {
setImmediate(() => {
this.emit.apply(this, ['page-title-updated'].concat(args))
})
})
2016-01-12 02:40:23 +00:00
2016-03-29 00:40:40 +00:00
webContents.printToPDF = function (options, callback) {
var printingSetting
2016-01-12 02:40:23 +00:00
printingSetting = {
pageRage: [],
mediaSize: {},
landscape: false,
color: 2,
headerFooterEnabled: false,
marginsType: 0,
isFirstRequest: false,
requestID: getNextId(),
previewModifiable: true,
printToPDF: true,
printWithCloudPrint: false,
printWithPrivet: false,
printWithExtension: false,
deviceName: 'Save as PDF',
2016-01-12 02:40:23 +00:00
generateDraftData: true,
fitToPageEnabled: false,
duplex: 0,
copies: 1,
collate: true,
shouldPrintBackgrounds: false,
shouldPrintSelectionOnly: false
}
2016-01-12 02:40:23 +00:00
if (options.landscape) {
printingSetting.landscape = options.landscape
2016-01-12 02:40:23 +00:00
}
if (options.marginsType) {
printingSetting.marginsType = options.marginsType
2016-01-12 02:40:23 +00:00
}
if (options.printSelectionOnly) {
printingSetting.shouldPrintSelectionOnly = options.printSelectionOnly
2016-01-12 02:40:23 +00:00
}
if (options.printBackground) {
printingSetting.shouldPrintBackgrounds = options.printBackground
2016-01-12 02:40:23 +00:00
}
if (options.pageSize && PDFPageSize[options.pageSize]) {
printingSetting.mediaSize = PDFPageSize[options.pageSize]
2016-01-12 02:40:23 +00:00
} else {
printingSetting.mediaSize = PDFPageSize['A4']
2016-01-12 02:40:23 +00:00
}
return this._printToPDF(printingSetting, callback)
}
}
2016-01-12 02:40:23 +00:00
2016-01-23 04:02:21 +00:00
// Wrapper for native class.
let wrapDebugger = function (webContentsDebugger) {
2016-01-23 04:02:21 +00:00
// debugger is an EventEmitter.
Object.setPrototypeOf(webContentsDebugger, EventEmitter.prototype)
}
2016-01-23 04:02:21 +00:00
2016-05-02 07:45:57 +00:00
var wrapSession = function (session) {
// session is an EventEmitter.
Object.setPrototypeOf(session, EventEmitter.prototype)
}
binding._setWrapWebContents(wrapWebContents)
debuggerBinding._setWrapDebugger(wrapDebugger)
2016-05-02 07:45:57 +00:00
sessionBinding._setWrapSession(wrapSession)
2016-01-12 02:40:23 +00:00
2016-05-28 01:10:24 +00:00
module.exports = {
create (options = {}) {
return binding.create(options)
},
fromId (id) {
return binding.fromId(id)
2016-01-12 02:40:23 +00:00
}
}