mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-23 09:26:27 -06:00
1898c36508
* ELECTRON-505: enable / disable dev tools implement logic to disable / enable dev tools with installer and configuration file * ELECTRON-505: fix mac installer issues * ELECTRON-505: add dev tools option to the windows installers * ELECTRON-505: enable signing in the installers * ELECTRON-505: update mac installer dev tools label text * ELECTRON-505: remove dev tools from configuration windows
126 lines
3.4 KiB
JavaScript
126 lines
3.4 KiB
JavaScript
'use strict';
|
|
|
|
const electron = require('electron');
|
|
const BrowserWindow = electron.BrowserWindow;
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const log = require('../log.js');
|
|
const logLevels = require('../enums/logLevels.js');
|
|
const buildNumber = require('../../package.json').buildNumber;
|
|
const { initCrashReporterMain, initCrashReporterRenderer } = require('../crashReporter.js');
|
|
const i18n = require('../translation/i18n');
|
|
|
|
let aboutWindow;
|
|
|
|
let windowConfig = {
|
|
width: 350,
|
|
height: 260,
|
|
show: false,
|
|
modal: true,
|
|
autoHideMenuBar: true,
|
|
titleBarStyle: true,
|
|
resizable: false,
|
|
webPreferences: {
|
|
preload: path.join(__dirname, 'renderer.js'),
|
|
sandbox: true,
|
|
nodeIntegration: false,
|
|
devTools: false
|
|
}
|
|
};
|
|
|
|
/**
|
|
* method to get the HTML template path
|
|
* @returns {string}
|
|
*/
|
|
function getTemplatePath() {
|
|
let templatePath = path.join(__dirname, 'about-app.html');
|
|
try {
|
|
fs.statSync(templatePath).isFile();
|
|
} catch (err) {
|
|
log.send(logLevels.ERROR, 'about-window: Could not find template ("' + templatePath + '").');
|
|
}
|
|
return 'file://' + templatePath;
|
|
}
|
|
|
|
/**
|
|
* Opens the about application window for a specific window
|
|
* @param {String} windowName - name of the window upon
|
|
* which this window should show
|
|
*/
|
|
function openAboutWindow(windowName) {
|
|
|
|
// This prevents creating multiple instances of the
|
|
// about window
|
|
if (aboutWindow) {
|
|
if (aboutWindow.isMinimized()) {
|
|
aboutWindow.restore();
|
|
}
|
|
aboutWindow.focus();
|
|
return;
|
|
}
|
|
let allWindows = BrowserWindow.getAllWindows();
|
|
allWindows = allWindows.find((window) => { return window.winName === windowName });
|
|
|
|
// if we couldn't find any window matching the window name
|
|
// it will render as a new window
|
|
if (allWindows) {
|
|
windowConfig.parent = allWindows;
|
|
}
|
|
|
|
aboutWindow = new BrowserWindow(windowConfig);
|
|
aboutWindow.setVisibleOnAllWorkspaces(true);
|
|
aboutWindow.loadURL(getTemplatePath());
|
|
|
|
// sets the AlwaysOnTop property for the about window
|
|
// if the main window's AlwaysOnTop is true
|
|
let focusedWindow = BrowserWindow.getFocusedWindow();
|
|
if (focusedWindow && focusedWindow.isAlwaysOnTop()) {
|
|
aboutWindow.setAlwaysOnTop(true);
|
|
}
|
|
|
|
aboutWindow.once('ready-to-show', () => {
|
|
aboutWindow.show();
|
|
});
|
|
|
|
aboutWindow.webContents.on('did-finish-load', () => {
|
|
// initialize crash reporter
|
|
initCrashReporterMain({ process: 'about app window' });
|
|
initCrashReporterRenderer(aboutWindow, { process: 'render | about app window' });
|
|
aboutWindow.webContents.send('buildNumber', buildNumber || '0');
|
|
});
|
|
|
|
aboutWindow.webContents.on('crashed', function () {
|
|
const options = {
|
|
type: 'error',
|
|
title: i18n.getMessageFor('Renderer Process Crashed'),
|
|
message: i18n.getMessageFor('Oops! Looks like we have had a crash.'),
|
|
buttons: ['Close']
|
|
};
|
|
|
|
electron.dialog.showMessageBox(options, function () {
|
|
if (aboutWindow && !aboutWindow.isDestroyed()) {
|
|
aboutWindow.close();
|
|
}
|
|
});
|
|
});
|
|
|
|
aboutWindow.on('close', () => {
|
|
destroyWindow();
|
|
});
|
|
|
|
aboutWindow.on('closed', () => {
|
|
destroyWindow();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Destroys a window
|
|
*/
|
|
function destroyWindow() {
|
|
aboutWindow = null;
|
|
}
|
|
|
|
|
|
module.exports = {
|
|
openAboutWindow: openAboutWindow
|
|
}; |