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 */
|
|
|
|
|
2018-06-02 00:43:01 +00:00
|
|
|
const { ipcRenderer } = require('electron');
|
|
|
|
const url = require('url');
|
|
|
|
const i18n = require('./js/modules/i18n');
|
2021-02-04 19:54:03 +00:00
|
|
|
const {
|
|
|
|
getEnvironment,
|
|
|
|
setEnvironment,
|
|
|
|
parseEnvironment,
|
|
|
|
} = require('./ts/environment');
|
2018-06-02 00:43:01 +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-06-02 00:43:01 +00:00
|
|
|
|
2021-02-04 19:54:03 +00:00
|
|
|
window.getEnvironment = getEnvironment;
|
2018-06-02 00:43:01 +00:00
|
|
|
window.getVersion = () => config.version;
|
|
|
|
window.getAppInstance = () => config.appInstance;
|
|
|
|
|
2018-07-03 22:33:50 +00:00
|
|
|
window.closeAbout = () => ipcRenderer.send('close-about');
|
2018-06-02 00:43:01 +00:00
|
|
|
|
|
|
|
window.i18n = i18n.setup(locale, localeMessages);
|
2018-07-03 22:33:50 +00:00
|
|
|
|
2021-03-04 21:44:57 +00:00
|
|
|
require('./ts/logging/set_up_renderer_logging').initialize();
|