1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/ElectronClient/app/bridge.js

156 lines
3.8 KiB
JavaScript
Raw Normal View History

const { _, setLocale } = require('lib/locale.js');
const { dirname } = require('lib/path-utils.js');
2017-11-14 12:53:18 +02:00
const { Logger } = require('lib/logger.js');
const { powerSaveBlocker } = require('electron');
2017-11-08 19:51:55 +02:00
class Bridge {
constructor(electronWrapper) {
this.electronWrapper_ = electronWrapper;
this.autoUpdateLogger_ = null;
this.lastSelectedPath_ = null;
this.allowPowerSaveBlockerToggle_ = false;
}
2017-11-11 14:00:37 +02:00
electronApp() {
return this.electronWrapper_;
}
processArgv() {
return process.argv;
}
window() {
return this.electronWrapper_.window();
}
setAllowPowerSaveBlockerToggle(v) {
this.allowPowerSaveBlockerToggle_ = v;
}
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-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);
}
showSaveDialog(options) {
const {dialog} = require('electron');
if (!options) options = {};
if (!('defaultPath' in options) && this.lastSelectedPath_) options.defaultPath = this.lastSelectedPath_;
const filePath = dialog.showSaveDialog(this.window(), options);
if (filePath) {
this.lastSelectedPath_ = filePath;
}
return filePath;
}
2017-11-11 00:18:00 +02:00
showOpenDialog(options) {
const {dialog} = require('electron');
if (!options) options = {};
if (!('defaultPath' in options) && this.lastSelectedPath_) options.defaultPath = this.lastSelectedPath_;
if (!('createDirectory' in options)) options.createDirectory = true;
const filePaths = dialog.showOpenDialog(this.window(), options);
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) {
const {dialog} = require('electron');
2018-03-02 20:24:02 +02:00
const nativeImage = require('electron').nativeImage
if (!window) window = this.window();
return dialog.showMessageBox(window, options);
}
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({}, {
type: 'info',
message: message,
buttons: [_('OK')],
2018-03-02 20:24:02 +02:00
}, options));
return result === 0;
}
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)
}
openItem(fullPath) {
return require('electron').shell.openItem(fullPath)
}
checkForUpdates(inBackground, window, logFilePath) {
const { checkForUpdates } = require('./checkForUpdates.js');
checkForUpdates(inBackground, window, logFilePath);
}
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);
}
}
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 }