- redis-ui.git
- src
- electron
- global.js
This file ( 1kB ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
const pkg = require('../../package.json');
const Store = require('electron-store');
const conf = new Store();
let currentTranslation = conf.get('current-translation')
if (currentTranslation === undefined) {
currentTranslation = 'en'
}
// optionToHideMenu
let optionToHideMenu = conf.get('option-to-hide-menu')
if (optionToHideMenu === undefined) {
conf.set('option-to-hide-menu', false)
optionToHideMenu = false;
}
global.p3xre = {
dev: process.env.NODE_ENV === 'development',
iconFile: `${__dirname}/images/128x128.png`,
mainWindow: undefined,
pkg: pkg,
indexHtml: 'file://' + __dirname + '/window/main/index.html',
strings: require('../strings/' + currentTranslation + '/index'),
currentTranslation: currentTranslation,
conf: conf,
setLanguage: require('../lib/set-language'),
optionToHideMenu: optionToHideMenu,
}
global.p3xre.setVisible = (visible = true) => {
if (visible === null) {
visible = true;
}
if (global.p3xre.mainWindow !== undefined) {
if (visible) {
global.p3xre.mainWindow.show();
} else {
global.p3xre.mainWindow.hide();
}
}
//global.ngivr.recreateMenus();
}