42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
/* global window */
|
|
|
|
const { ipcRenderer, remote } = require('electron');
|
|
const url = require('url');
|
|
const i18n = require('./js/modules/i18n');
|
|
const { makeGetter, makeSetter } = require('./preload_utils');
|
|
|
|
const { nativeTheme } = remote.require('electron');
|
|
|
|
const config = url.parse(window.location.toString(), true).query;
|
|
const { locale } = config;
|
|
const localeMessages = ipcRenderer.sendSync('locale-data');
|
|
|
|
window.getEnvironment = () => config.environment;
|
|
window.getVersion = () => config.version;
|
|
window.theme = config.theme;
|
|
window.i18n = i18n.setup(locale, localeMessages);
|
|
window.forCalling = config.forCalling === 'true';
|
|
window.forCamera = config.forCamera === 'true';
|
|
|
|
function setSystemTheme() {
|
|
window.systemTheme = nativeTheme.shouldUseDarkColors ? 'dark' : 'light';
|
|
}
|
|
|
|
setSystemTheme();
|
|
|
|
window.subscribeToSystemThemeChange = fn => {
|
|
nativeTheme.on('updated', () => {
|
|
setSystemTheme();
|
|
fn();
|
|
});
|
|
};
|
|
|
|
require('./js/logging');
|
|
|
|
window.closePermissionsPopup = () =>
|
|
ipcRenderer.send('close-permissions-popup');
|
|
|
|
window.setMediaPermissions = makeSetter('media-permissions');
|
|
window.setMediaCameraPermissions = makeSetter('media-camera-permissions');
|
|
window.getThemeSetting = makeGetter('theme-setting');
|
|
window.setThemeSetting = makeSetter('theme-setting');
|