/* Copyright 2018, 2019 New Vector Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ const { ipcRenderer, desktopCapturer } = require('electron'); // expose ipcRenderer to the renderer process window.ipcRenderer = ipcRenderer; // This is a fix for screen-sharing in Electron window.navigator.mediaDevices.getDisplayMedia = () => { return new Promise(async (resolve, reject) => { try { // Get screen-sharing sources const sources = await desktopCapturer.getSources({ types: ["screen", "window"], }); const screens = sources.filter((source) => { return source.id.startsWith("screen"); }); const windows = sources.filter((source) => { return source.id.startsWith("window"); }); const streamSelector = document.createElement("div"); streamSelector.classList = "stream-selector"; streamSelector.innerHTML = `

Screens

Windows

`; document.body.appendChild(streamSelector); document.querySelectorAll(".desktop-capturer-selection-button").forEach((button) => { button.addEventListener("click", async (ev) => { ev.stopPropagation(); try { const id = button.getAttribute("data-id"); const source = sources.find((source) => source.id === id); if (!source) { streamSelector.remove(); reject(new Error(`Source with id ${id} does not exist`)); } const stream = await window.navigator.mediaDevices.getUserMedia({ audio: false, video: { mandatory: { chromeMediaSource: "desktop", chromeMediaSourceId: source.id, }, }, }); streamSelector.remove(); resolve(stream); } catch (err) { streamSelector.remove(); reject(err); } }); }); const background = document.querySelector(".stream-selector"); background.addEventListener("click", async (ev) => { streamSelector.remove(); reject(new Error("No source selected")); }); } catch (err) { reject(err); } }); };