/* global window */ const { ipcRenderer } = require('electron'); const url = require('url'); const i18n = require('./js/modules/i18n'); const userConfig = require('./app/user_config'); 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.userConfig = userConfig; window.getEnvironment = () => config.environment; window.getVersion = () => config.version; window.getAppInstance = () => config.appInstance; window.onLogin = (passPhrase) => ipcRenderer.send('launcher_login', passPhrase); require('./js/logging');