2021-01-27 21:13:33 +00:00
|
|
|
// Copyright 2018-2021 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-07-07 00:48:14 +00:00
|
|
|
/* global window */
|
|
|
|
|
2021-01-04 18:47:14 +00:00
|
|
|
window.React = require('react');
|
|
|
|
window.ReactDOM = require('react-dom');
|
|
|
|
|
2021-06-30 18:57:43 +00:00
|
|
|
const { ipcRenderer } = require('electron');
|
2018-07-03 22:33:50 +00:00
|
|
|
const url = require('url');
|
2021-08-18 20:08:14 +00:00
|
|
|
|
|
|
|
// It is important to call this as early as possible
|
|
|
|
require('./ts/windows/context');
|
|
|
|
|
2018-07-03 22:33:50 +00:00
|
|
|
const i18n = require('./js/modules/i18n');
|
2021-04-27 19:29:59 +00:00
|
|
|
const { ConfirmationDialog } = require('./ts/components/ConfirmationDialog');
|
2021-02-04 19:54:03 +00:00
|
|
|
const {
|
|
|
|
getEnvironment,
|
|
|
|
setEnvironment,
|
|
|
|
parseEnvironment,
|
|
|
|
} = require('./ts/environment');
|
2018-07-03 22:33:50 +00:00
|
|
|
|
|
|
|
const config = url.parse(window.location.toString(), true).query;
|
|
|
|
const { locale } = config;
|
|
|
|
const localeMessages = ipcRenderer.sendSync('locale-data');
|
2021-02-04 19:54:03 +00:00
|
|
|
setEnvironment(parseEnvironment(config.environment));
|
2018-07-03 22:33:50 +00:00
|
|
|
|
2021-08-18 20:08:14 +00:00
|
|
|
const { createSetting } = require('./ts/util/preload');
|
2021-06-22 14:46:42 +00:00
|
|
|
|
2021-02-04 19:54:03 +00:00
|
|
|
window.getEnvironment = getEnvironment;
|
2018-07-20 21:01:06 +00:00
|
|
|
window.getVersion = () => config.version;
|
2018-07-13 15:57:30 +00:00
|
|
|
window.theme = config.theme;
|
2018-07-03 22:33:50 +00:00
|
|
|
window.i18n = i18n.setup(locale, localeMessages);
|
2020-06-04 18:16:19 +00:00
|
|
|
window.forCalling = config.forCalling === 'true';
|
|
|
|
window.forCamera = config.forCamera === 'true';
|
2021-01-04 18:47:14 +00:00
|
|
|
window.Signal = {
|
|
|
|
Components: {
|
2021-04-27 19:29:59 +00:00
|
|
|
ConfirmationDialog,
|
2021-01-04 18:47:14 +00:00
|
|
|
},
|
|
|
|
};
|
2018-07-03 22:33:50 +00:00
|
|
|
|
2021-03-04 21:44:57 +00:00
|
|
|
require('./ts/logging/set_up_renderer_logging').initialize();
|
2018-07-03 22:33:50 +00:00
|
|
|
|
|
|
|
window.closePermissionsPopup = () =>
|
|
|
|
ipcRenderer.send('close-permissions-popup');
|
|
|
|
|
2020-09-24 20:57:54 +00:00
|
|
|
window.Backbone = require('backbone');
|
2021-08-18 20:08:14 +00:00
|
|
|
|
|
|
|
window.Settings = {
|
|
|
|
mediaCameraPermissions: createSetting('mediaCameraPermissions', {
|
|
|
|
getter: false,
|
|
|
|
}),
|
|
|
|
mediaPermissions: createSetting('mediaPermissions', {
|
|
|
|
getter: false,
|
|
|
|
}),
|
|
|
|
themeSetting: createSetting('themeSetting', { setter: false }),
|
|
|
|
};
|