2018-09-13 16:10:51 +00:00
|
|
|
const { ipcRenderer, nativeImage } = require('electron')
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2017-10-24 16:01:51 +00:00
|
|
|
const includes = [].includes
|
|
|
|
let currentId = 0
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2017-10-24 16:28:15 +00:00
|
|
|
const incrementId = () => {
|
|
|
|
currentId += 1
|
|
|
|
return currentId
|
|
|
|
}
|
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
|
2017-10-24 16:01:51 +00:00
|
|
|
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
|
|
|
|
2016-03-25 19:57:17 +00:00
|
|
|
exports.getSources = function (options, callback) {
|
2017-10-24 16:01:51 +00:00
|
|
|
if (!isValid(options)) return callback(new Error('Invalid options'))
|
|
|
|
const captureWindow = includes.call(options.types, 'window')
|
|
|
|
const captureScreen = includes.call(options.types, 'screen')
|
|
|
|
|
2016-01-12 02:40:23 +00:00
|
|
|
if (options.thumbnailSize == null) {
|
|
|
|
options.thumbnailSize = {
|
|
|
|
width: 150,
|
|
|
|
height: 150
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2017-10-24 16:01:51 +00:00
|
|
|
|
|
|
|
const id = incrementId()
|
2016-04-06 23:21:26 +00:00
|
|
|
ipcRenderer.send('ELECTRON_BROWSER_DESKTOP_CAPTURER_GET_SOURCES', captureWindow, captureScreen, options.thumbnailSize, id)
|
2017-10-24 16:01:51 +00:00
|
|
|
return ipcRenderer.once(`ELECTRON_RENDERER_DESKTOP_CAPTURER_RESULT_${id}`, (event, sources) => {
|
|
|
|
callback(null, (() => {
|
2017-10-24 16:28:15 +00:00
|
|
|
const results = []
|
2017-10-24 16:01:51 +00:00
|
|
|
sources.forEach(source => {
|
2016-01-12 02:40:23 +00:00
|
|
|
results.push({
|
|
|
|
id: source.id,
|
|
|
|
name: source.name,
|
2018-04-09 05:43:35 +00:00
|
|
|
thumbnail: nativeImage.createFromDataURL(source.thumbnail),
|
|
|
|
display_id: source.display_id
|
2016-03-25 19:57:17 +00:00
|
|
|
})
|
2017-10-24 16:01:51 +00:00
|
|
|
})
|
2016-03-25 19:57:17 +00:00
|
|
|
return results
|
|
|
|
})())
|
|
|
|
})
|
|
|
|
}
|