2018-05-20 13:54:42 +02:00
|
|
|
const { _, setLocale } = require('lib/locale.js');
|
2017-12-02 01:26:08 +02:00
|
|
|
const { dirname } = require('lib/path-utils.js');
|
2017-11-14 12:53:18 +02:00
|
|
|
const { Logger } = require('lib/logger.js');
|
2018-06-10 13:19:36 +02:00
|
|
|
const { powerSaveBlocker } = require('electron');
|
2017-11-08 19:51:55 +02:00
|
|
|
|
2017-11-05 02:17:48 +02:00
|
|
|
class Bridge {
|
|
|
|
|
|
|
|
constructor(electronWrapper) {
|
|
|
|
this.electronWrapper_ = electronWrapper;
|
2017-11-21 20:59:32 +02:00
|
|
|
this.autoUpdateLogger_ = null;
|
2017-12-02 01:26:08 +02:00
|
|
|
this.lastSelectedPath_ = null;
|
2018-06-10 13:19:36 +02:00
|
|
|
this.allowPowerSaveBlockerToggle_ = false;
|
2017-11-05 02:17:48 +02:00
|
|
|
}
|
|
|
|
|
2017-11-11 14:00:37 +02:00
|
|
|
electronApp() {
|
|
|
|
return this.electronWrapper_;
|
|
|
|
}
|
|
|
|
|
2017-11-05 02:17:48 +02:00
|
|
|
processArgv() {
|
|
|
|
return process.argv;
|
|
|
|
}
|
|
|
|
|
|
|
|
window() {
|
|
|
|
return this.electronWrapper_.window();
|
|
|
|
}
|
|
|
|
|
2018-06-10 13:19:36 +02:00
|
|
|
setAllowPowerSaveBlockerToggle(v) {
|
|
|
|
this.allowPowerSaveBlockerToggle_ = v;
|
|
|
|
}
|
|
|
|
|
2017-11-05 02:17:48 +02:00
|
|
|
windowContentSize() {
|
|
|
|
if (!this.window()) return { width: 0, height: 0 };
|
|
|
|
const s = this.window().getContentSize();
|
|
|
|
return { width: s[0], height: s[1] };
|
2018-03-02 20:24:02 +02:00
|
|
|
}
|
2017-11-05 02:17:48 +02:00
|
|
|
|
2017-11-14 20:02:58 +02:00
|
|
|
windowSize() {
|
|
|
|
if (!this.window()) return { width: 0, height: 0 };
|
|
|
|
const s = this.window().getSize();
|
|
|
|
return { width: s[0], height: s[1] };
|
|
|
|
}
|
|
|
|
|
|
|
|
windowSetSize(width, height) {
|
|
|
|
if (!this.window()) return;
|
|
|
|
return this.window().setSize(width, height);
|
|
|
|
}
|
|
|
|
|
2017-12-07 23:18:18 +02:00
|
|
|
showSaveDialog(options) {
|
|
|
|
const {dialog} = require('electron');
|
|
|
|
if (!options) options = {};
|
|
|
|
if (!('defaultPath' in options) && this.lastSelectedPath_) options.defaultPath = this.lastSelectedPath_;
|
2018-02-16 01:05:04 +02:00
|
|
|
const filePath = dialog.showSaveDialog(this.window(), options);
|
2017-12-07 23:18:18 +02:00
|
|
|
if (filePath) {
|
|
|
|
this.lastSelectedPath_ = filePath;
|
|
|
|
}
|
|
|
|
return filePath;
|
|
|
|
}
|
|
|
|
|
2017-11-11 00:18:00 +02:00
|
|
|
showOpenDialog(options) {
|
|
|
|
const {dialog} = require('electron');
|
2017-12-02 01:26:08 +02:00
|
|
|
if (!options) options = {};
|
|
|
|
if (!('defaultPath' in options) && this.lastSelectedPath_) options.defaultPath = this.lastSelectedPath_;
|
2017-12-07 23:18:18 +02:00
|
|
|
if (!('createDirectory' in options)) options.createDirectory = true;
|
2018-02-16 01:05:04 +02:00
|
|
|
const filePaths = dialog.showOpenDialog(this.window(), options);
|
2017-12-02 01:26:08 +02:00
|
|
|
if (filePaths && filePaths.length) {
|
|
|
|
this.lastSelectedPath_ = dirname(filePaths[0]);
|
|
|
|
}
|
|
|
|
return filePaths;
|
2017-11-11 00:18:00 +02:00
|
|
|
}
|
|
|
|
|
2018-03-02 20:24:02 +02:00
|
|
|
// Don't use this directly - call one of the showXxxxxxxMessageBox() instead
|
|
|
|
showMessageBox_(window, options) {
|
2017-11-06 20:35:04 +02:00
|
|
|
const {dialog} = require('electron');
|
2018-03-02 20:24:02 +02:00
|
|
|
const nativeImage = require('electron').nativeImage
|
|
|
|
if (!window) window = this.window();
|
2018-02-16 20:06:02 +02:00
|
|
|
return dialog.showMessageBox(window, options);
|
2017-11-06 20:35:04 +02:00
|
|
|
}
|
|
|
|
|
2017-11-08 19:51:55 +02:00
|
|
|
showErrorMessageBox(message) {
|
2018-03-02 20:24:02 +02:00
|
|
|
return this.showMessageBox_(this.window(), {
|
2017-11-08 19:51:55 +02:00
|
|
|
type: 'error',
|
|
|
|
message: message,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
showConfirmMessageBox(message) {
|
2018-03-02 20:24:02 +02:00
|
|
|
const result = this.showMessageBox_(this.window(), {
|
2017-11-08 19:51:55 +02:00
|
|
|
type: 'question',
|
|
|
|
message: message,
|
|
|
|
buttons: [_('OK'), _('Cancel')],
|
|
|
|
});
|
|
|
|
return result === 0;
|
|
|
|
}
|
|
|
|
|
2018-03-02 20:24:02 +02:00
|
|
|
showInfoMessageBox(message, options = {}) {
|
|
|
|
const result = this.showMessageBox_(this.window(), Object.assign({}, {
|
2017-12-07 23:18:18 +02:00
|
|
|
type: 'info',
|
|
|
|
message: message,
|
|
|
|
buttons: [_('OK')],
|
2018-03-02 20:24:02 +02:00
|
|
|
}, options));
|
2017-12-07 23:18:18 +02:00
|
|
|
return result === 0;
|
|
|
|
}
|
|
|
|
|
2018-05-20 13:54:42 +02:00
|
|
|
setLocale(locale) {
|
|
|
|
setLocale(locale);
|
|
|
|
}
|
|
|
|
|
2017-11-08 19:51:55 +02:00
|
|
|
get Menu() {
|
|
|
|
return require('electron').Menu;
|
|
|
|
}
|
|
|
|
|
|
|
|
get MenuItem() {
|
|
|
|
return require('electron').MenuItem;
|
|
|
|
}
|
|
|
|
|
2017-11-11 14:00:37 +02:00
|
|
|
openExternal(url) {
|
|
|
|
return require('electron').shell.openExternal(url)
|
|
|
|
}
|
|
|
|
|
2017-11-12 18:33:34 +02:00
|
|
|
openItem(fullPath) {
|
|
|
|
return require('electron').shell.openItem(fullPath)
|
|
|
|
}
|
|
|
|
|
2018-02-16 01:05:04 +02:00
|
|
|
checkForUpdates(inBackground, window, logFilePath) {
|
2018-01-31 00:35:50 +02:00
|
|
|
const { checkForUpdates } = require('./checkForUpdates.js');
|
2018-02-16 01:05:04 +02:00
|
|
|
checkForUpdates(inBackground, window, logFilePath);
|
2018-01-31 00:35:50 +02:00
|
|
|
}
|
|
|
|
|
2018-06-10 13:19:36 +02:00
|
|
|
powerSaveBlockerStart(type) {
|
|
|
|
if (!this.allowPowerSaveBlockerToggle_) return null;
|
|
|
|
console.info('Enable powerSaveBlockerStart: ' + type);
|
|
|
|
return powerSaveBlocker.start(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
powerSaveBlockerStop(id) {
|
|
|
|
if (!this.allowPowerSaveBlockerToggle_) return null;
|
|
|
|
console.info('Disable powerSaveBlocker: ' + id);
|
|
|
|
return powerSaveBlocker.stop(id);
|
|
|
|
}
|
|
|
|
|
2017-11-05 02:17:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let bridge_ = null;
|
|
|
|
|
|
|
|
function initBridge(wrapper) {
|
|
|
|
if (bridge_) throw new Error('Bridge already initialized');
|
|
|
|
bridge_ = new Bridge(wrapper);
|
|
|
|
return bridge_;
|
|
|
|
}
|
|
|
|
|
|
|
|
function bridge() {
|
|
|
|
if (!bridge_) throw new Error('Bridge not initialized');
|
|
|
|
return bridge_;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = { bridge, initBridge }
|