2021-01-27 15:13:33 -06:00
|
|
|
// Copyright 2018-2021 Signal Messenger, LLC
|
2020-10-30 15:34:04 -05:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-07-06 17:48:14 -07:00
|
|
|
/* global window */
|
|
|
|
|
2018-07-03 15:33:50 -07:00
|
|
|
const { ipcRenderer } = require('electron');
|
|
|
|
const url = require('url');
|
2020-05-04 15:20:01 -04:00
|
|
|
const copyText = require('copy-text-to-clipboard');
|
2021-08-18 16:08:14 -04:00
|
|
|
|
|
|
|
// It is important to call this as early as possible
|
|
|
|
require('./ts/windows/context');
|
|
|
|
|
2018-07-03 15:33:50 -07:00
|
|
|
const i18n = require('./js/modules/i18n');
|
2021-02-04 13:54:03 -06:00
|
|
|
const {
|
|
|
|
getEnvironment,
|
|
|
|
setEnvironment,
|
|
|
|
parseEnvironment,
|
|
|
|
} = require('./ts/environment');
|
2018-07-03 15:33:50 -07:00
|
|
|
|
|
|
|
const config = url.parse(window.location.toString(), true).query;
|
|
|
|
const { locale } = config;
|
|
|
|
const localeMessages = ipcRenderer.sendSync('locale-data');
|
2021-02-04 13:54:03 -06:00
|
|
|
setEnvironment(parseEnvironment(config.environment));
|
2018-07-03 15:33:50 -07:00
|
|
|
|
2018-07-18 20:00:10 -07:00
|
|
|
window.getVersion = () => config.version;
|
2018-07-13 08:57:30 -07:00
|
|
|
window.theme = config.theme;
|
2018-07-03 15:33:50 -07:00
|
|
|
window.i18n = i18n.setup(locale, localeMessages);
|
2020-05-04 15:20:01 -04:00
|
|
|
window.copyText = copyText;
|
2018-07-03 15:33:50 -07:00
|
|
|
|
|
|
|
// got.js appears to need this to successfully submit debug logs to the cloud
|
|
|
|
window.nodeSetImmediate = setImmediate;
|
|
|
|
|
|
|
|
window.getNodeVersion = () => config.node_version;
|
2021-02-04 13:54:03 -06:00
|
|
|
window.getEnvironment = getEnvironment;
|
2018-07-03 15:33:50 -07:00
|
|
|
|
2021-02-26 13:06:37 -08:00
|
|
|
window.Backbone = require('backbone');
|
|
|
|
require('./ts/backbone/views/whisper_view');
|
|
|
|
require('./ts/backbone/views/toast_view');
|
2021-03-04 16:44:57 -05:00
|
|
|
require('./ts/logging/set_up_renderer_logging').initialize();
|
2018-07-03 15:33:50 -07:00
|
|
|
|
|
|
|
window.closeDebugLog = () => ipcRenderer.send('close-debug-log');
|
2020-09-24 13:57:54 -07:00
|
|
|
window.Backbone = require('backbone');
|