1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
const { ipcRenderer } = require('electron');
const { RemoteControl,
setupScreenSharingRender,
setupAlwaysOnTopRender,
initPopupsConfigurationRender,
setupPowerMonitorRender
} = require('@jitsi/electron-sdk');
const whitelistedIpcChannels = [ 'protocol-data-msg', 'renderer-ready' ];
/**
* Open an external URL.
*
* @param {string} url - The URL we with to open.
* @returns {void}
*/
function openExternalLink(url) {
ipcRenderer.send('jitsi-open-url', url);
}
/**
* Setup the renderer process.
*
* @param {*} api - API object.
* @param {*} options - Options for what to enable.
* @returns {void}
*/
function setupRenderer(api, options = {}) {
initPopupsConfigurationRender(api);
const iframe = api.getIFrame();
setupScreenSharingRender(api);
if (options.enableRemoteControl) {
new RemoteControl(iframe); // eslint-disable-line no-new
}
// Allow window to be on top if enabled in settings
if (options.enableAlwaysOnTopWindow) {
setupAlwaysOnTopRender(api, null, { showOnPrejoin: true });
}
setupPowerMonitorRender(api);
}
window.jitsiNodeAPI = {
openExternalLink,
setupRenderer,
ipc: {
on: (channel, listener) => {
if (!whitelistedIpcChannels.includes(channel)) {
return;
}
return ipcRenderer.on(channel, listener);
},
send: channel => {
if (!whitelistedIpcChannels.includes(channel)) {
return;
}
return ipcRenderer.send(channel);
},
removeListener: (channel, listener) => {
if (!whitelistedIpcChannels.includes(channel)) {
return;
}
return ipcRenderer.removeListener(channel, listener);
}
}
};
|