Add single instance lock
This commit is contained in:
parent
517b49ef93
commit
23ada54c9e
1 changed files with 91 additions and 122 deletions
|
@ -2,14 +2,16 @@ import path from 'path';
|
||||||
import { app, BrowserWindow, Menu, Tray } from 'electron';
|
import { app, BrowserWindow, Menu, Tray } from 'electron';
|
||||||
const screenz = require('screenz');
|
const screenz = require('screenz');
|
||||||
|
|
||||||
const isDevelopment = process.env.NODE_ENV === 'development';
|
|
||||||
|
|
||||||
let mainWindow = null;
|
let mainWindow = null;
|
||||||
let tray = null;
|
|
||||||
let forceQuit = false;
|
const isDevelopment = process.env.NODE_ENV === 'development';
|
||||||
|
const gotTheLock = app.requestSingleInstanceLock();
|
||||||
|
app.allowRendererProcessReuse = false;
|
||||||
|
|
||||||
const windowSize = { width: 620, height: 320 };
|
const windowSize = { width: 620, height: 320 };
|
||||||
const taskBarHeight = 40;
|
const taskBarHeight = 40;
|
||||||
|
const appIconPath = '../../dist-assets/icon2.ico';
|
||||||
|
const trayIconPath = '../../dist-assets/tray.ico';
|
||||||
|
|
||||||
const installExtensions = async () => {
|
const installExtensions = async () => {
|
||||||
const installer = require('electron-devtools-installer');
|
const installer = require('electron-devtools-installer');
|
||||||
|
@ -24,14 +26,18 @@ const installExtensions = async () => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
app.on('window-all-closed', () => {
|
if (!gotTheLock) {
|
||||||
// On OS X it is common for applications and their menu bar
|
|
||||||
// to stay active until the user quits explicitly with Cmd + Q
|
|
||||||
if (process.platform !== 'darwin') {
|
|
||||||
app.quit();
|
app.quit();
|
||||||
|
} else {
|
||||||
|
app.on('second-instance', () => {
|
||||||
|
// Someone tried to run a second instance, we should focus our window.
|
||||||
|
if (mainWindow) {
|
||||||
|
mainWindow.show();
|
||||||
|
mainWindow.focus();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Create mainWindow, load the rest of the app, etc...
|
||||||
app.on('ready', async () => {
|
app.on('ready', async () => {
|
||||||
if (isDevelopment) {
|
if (isDevelopment) {
|
||||||
await installExtensions();
|
await installExtensions();
|
||||||
|
@ -44,7 +50,6 @@ app.on('ready', async () => {
|
||||||
y: screenz.height - windowSize.height - taskBarHeight,
|
y: screenz.height - windowSize.height - taskBarHeight,
|
||||||
movable: false,
|
movable: false,
|
||||||
resizable: false,
|
resizable: false,
|
||||||
transparent: true,
|
|
||||||
frame: false,
|
frame: false,
|
||||||
show: false,
|
show: false,
|
||||||
skipTaskbar: true,
|
skipTaskbar: true,
|
||||||
|
@ -52,92 +57,19 @@ app.on('ready', async () => {
|
||||||
webPreferences: {
|
webPreferences: {
|
||||||
nodeIntegration: true,
|
nodeIntegration: true,
|
||||||
},
|
},
|
||||||
icon: path.join(__dirname, '../../dist-assets/icon2.ico'),
|
icon: path.join(__dirname, appIconPath),
|
||||||
});
|
});
|
||||||
|
|
||||||
mainWindow.setMenu(null);
|
mainWindow.setMenu(null);
|
||||||
|
|
||||||
mainWindow.loadFile(path.resolve(path.join(__dirname, '../renderer/index.html')));
|
mainWindow.loadFile(path.resolve(path.join(__dirname, '../renderer/index.html')));
|
||||||
|
|
||||||
// show window once on first load
|
|
||||||
mainWindow.webContents.once('did-finish-load', () => {
|
|
||||||
mainWindow.show();
|
|
||||||
});
|
|
||||||
|
|
||||||
mainWindow.webContents.on('did-finish-load', () => {
|
mainWindow.webContents.on('did-finish-load', () => {
|
||||||
// Handle window logic properly on macOS:
|
createTray();
|
||||||
// 1. App should not terminate if window has been closed
|
|
||||||
// 2. Click on icon in dock should re-open the window
|
|
||||||
// 3. ⌘+Q should close the window and quit the app
|
|
||||||
if (process.platform === 'darwin') {
|
|
||||||
mainWindow.on('close', function (e) {
|
|
||||||
if (!forceQuit) {
|
|
||||||
e.preventDefault();
|
|
||||||
mainWindow.hide();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
app.on('activate', () => {
|
|
||||||
mainWindow.show();
|
|
||||||
});
|
|
||||||
|
|
||||||
app.on('before-quit', () => {
|
|
||||||
forceQuit = true;
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
mainWindow.on('closed', () => {
|
|
||||||
tray.destroy();
|
|
||||||
mainWindow = null;
|
|
||||||
});
|
|
||||||
|
|
||||||
app.on('browser-window-blur', () => {
|
|
||||||
if (mainWindow) {
|
|
||||||
mainWindow.hide();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
tray = createTray();
|
|
||||||
});
|
|
||||||
|
|
||||||
function createTray() {
|
|
||||||
const appIcon = new Tray(path.join(__dirname, '../../dist-assets/tray.ico'));
|
|
||||||
const contextMenu = Menu.buildFromTemplate([
|
|
||||||
{
|
|
||||||
label: 'Show',
|
|
||||||
click: () => {
|
|
||||||
mainWindow.show();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Hide',
|
|
||||||
click: () => {
|
|
||||||
mainWindow.hide();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Exit',
|
|
||||||
click: () => {
|
|
||||||
app.isQuiting = true;
|
|
||||||
app.quit();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
|
|
||||||
appIcon.on('click', () => {
|
|
||||||
mainWindow.show();
|
|
||||||
});
|
|
||||||
|
|
||||||
appIcon.setToolTip('Light Control');
|
|
||||||
appIcon.setContextMenu(contextMenu);
|
|
||||||
return appIcon;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isDevelopment) {
|
if (isDevelopment) {
|
||||||
// auto-open dev tools
|
|
||||||
mainWindow.webContents.openDevTools();
|
mainWindow.webContents.openDevTools();
|
||||||
|
|
||||||
// add inspect element on right click menu
|
|
||||||
mainWindow.webContents.on('context-menu', (e, props) => {
|
mainWindow.webContents.on('context-menu', (e, props) => {
|
||||||
Menu.buildFromTemplate([
|
Menu.buildFromTemplate([
|
||||||
{
|
{
|
||||||
|
@ -150,3 +82,40 @@ app.on('ready', async () => {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function createTray() {
|
||||||
|
const trayIcon = new Tray(path.join(__dirname, trayIconPath));
|
||||||
|
const contextMenu = Menu.buildFromTemplate([
|
||||||
|
{
|
||||||
|
label: 'Show',
|
||||||
|
click: () => {
|
||||||
|
mainWindow.show();
|
||||||
|
mainWindow.focus();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Exit',
|
||||||
|
click: () => {
|
||||||
|
app.quit();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
trayIcon.on('click', () => {
|
||||||
|
mainWindow.show();
|
||||||
|
mainWindow.focus();
|
||||||
|
});
|
||||||
|
|
||||||
|
trayIcon.setToolTip('Light Control');
|
||||||
|
trayIcon.setContextMenu(contextMenu);
|
||||||
|
return trayIcon;
|
||||||
|
}
|
||||||
|
|
||||||
|
app.on('browser-window-blur', () => {
|
||||||
|
mainWindow.hide();
|
||||||
|
});
|
||||||
|
|
||||||
|
app.on('window-all-closed', () => {
|
||||||
|
app.quit();
|
||||||
|
});
|
||||||
|
|
Reference in a new issue