You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
6 years ago
|
/* global window */
|
||
|
|
||
|
const { ipcRenderer } = require('electron');
|
||
|
const url = require('url');
|
||
|
const i18n = require('./js/modules/i18n');
|
||
|
|
||
|
const config = url.parse(window.location.toString(), true).query;
|
||
|
const { locale } = config;
|
||
|
const localeMessages = ipcRenderer.sendSync('locale-data');
|
||
|
|
||
|
window.theme = config.theme;
|
||
|
window.i18n = i18n.setup(locale, localeMessages);
|
||
|
|
||
|
// So far we're only using this for Signal.Types
|
||
|
const Signal = require('./js/modules/signal');
|
||
|
|
||
|
window.Signal = Signal.setup({
|
||
|
Attachments: null,
|
||
|
userDataPath: null,
|
||
|
getRegionCode: () => null,
|
||
|
});
|
||
|
|
||
|
window.getEnvironment = () => config.environment;
|
||
|
window.getVersion = () => config.version;
|
||
|
window.getAppInstance = () => config.appInstance;
|
||
|
|
||
6 years ago
|
window.onLogin = (passPhrase) => new Promise((resolve, reject) => {
|
||
6 years ago
|
ipcRenderer.once('password-window-login-response', (event, error) => {
|
||
6 years ago
|
if (error) {
|
||
|
return reject(error);
|
||
|
}
|
||
|
return resolve();
|
||
|
});
|
||
6 years ago
|
ipcRenderer.send('password-window-login', passPhrase);
|
||
6 years ago
|
});
|
||
|
|
||
6 years ago
|
require('./js/logging');
|