forked from signalapp/Signal-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 193
/
password_preload.js
40 lines (32 loc) · 1.13 KB
/
password_preload.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* global window */
/* eslint-disable @typescript-eslint/no-var-requires */
const { ipcRenderer } = require('electron');
const url = require('url');
const { setupI18n } = require('./ts/util/i18n/i18n');
const config = url.parse(window.location.toString(), true).query;
const { dictionary, crowdinLocale } = ipcRenderer.sendSync('locale-data');
// If the app is locked we can't access the database to check the theme.
window.theme = 'classic-dark';
window.primaryColor = 'green';
window.i18n = setupI18n({
crowdinLocale,
translationDictionary: dictionary,
});
window.getEnvironment = () => config.environment;
window.getVersion = () => config.version;
window.getAppInstance = () => config.appInstance;
window.clearLocalData = async () => {
window.log.info('reset database');
ipcRenderer.send('resetDatabase');
};
window.onLogin = passPhrase =>
new Promise((resolve, reject) => {
ipcRenderer.once('password-window-login-response', (event, error) => {
if (error) {
return reject(error);
}
return resolve();
});
ipcRenderer.send('password-window-login', passPhrase);
});
require('./ts/util/logging');