electron/lib/renderer/api/desktop-capturer.js

43 lines
1.3 KiB
JavaScript
Raw Normal View History

'use strict'
const { nativeImage, deprecate } = require('electron')
const ipcRendererUtils = require('@electron/internal/renderer/ipc-renderer-internal-utils')
2016-01-12 02:40:23 +00:00
2017-10-24 23:36:06 +00:00
// |options.types| can't be empty and must be an array
function isValid (options) {
2017-10-24 23:36:06 +00:00
const types = options ? options.types : undefined
return Array.isArray(types)
2016-03-25 19:57:17 +00:00
}
2016-01-12 02:40:23 +00:00
function mapSources (sources) {
return sources.map(source => ({
id: source.id,
name: source.name,
thumbnail: nativeImage.createFromDataURL(source.thumbnail),
display_id: source.display_id,
appIcon: source.appIcon ? nativeImage.createFromDataURL(source.appIcon) : null
}))
}
exports.getSources = (options) => {
return new Promise((resolve, reject) => {
if (!isValid(options)) throw new Error('Invalid options')
const captureWindow = options.types.includes('window')
const captureScreen = options.types.includes('screen')
if (options.thumbnailSize == null) {
options.thumbnailSize = {
width: 150,
height: 150
}
2016-03-25 19:57:17 +00:00
}
if (options.fetchWindowIcons == null) {
options.fetchWindowIcons = false
}
ipcRendererUtils.invoke('ELECTRON_BROWSER_DESKTOP_CAPTURER_GET_SOURCES', captureWindow, captureScreen, options.thumbnailSize, options.fetchWindowIcons)
.then(sources => resolve(mapSources(sources)), reject)
2016-03-25 19:57:17 +00:00
})
}