Toggle show/hide in tray icon
Fix state saving on app exit
This commit is contained in:
30
main/tray.js
30
main/tray.js
@@ -6,17 +6,33 @@ var path = require('path')
|
||||
var electron = require('electron')
|
||||
var windows = require('./windows')
|
||||
|
||||
var trayIcon
|
||||
|
||||
function init () {
|
||||
// No tray icon on OSX
|
||||
if (process.platform === 'darwin') return
|
||||
|
||||
var trayIcon = new electron.Tray(path.join(__dirname, '..', 'static', 'WebTorrentSmall.png'))
|
||||
trayIcon = new electron.Tray(path.join(__dirname, '..', 'static', 'WebTorrentSmall.png'))
|
||||
|
||||
// On Windows, left click to open the app, right click for context menu
|
||||
// On Linux, any click (right or left) opens the context menu
|
||||
trayIcon.on('click', showApp)
|
||||
|
||||
// Show the tray context menu, and keep the available commands up to date
|
||||
updateTrayMenu()
|
||||
windows.main.on('show', updateTrayMenu)
|
||||
windows.main.on('hide', updateTrayMenu)
|
||||
}
|
||||
|
||||
function updateTrayMenu () {
|
||||
var showHideMenuItem
|
||||
if (windows.main.isVisible()) {
|
||||
showHideMenuItem = { label: 'Hide to tray', click: hideApp }
|
||||
} else {
|
||||
showHideMenuItem = { label: 'Show', click: showApp }
|
||||
}
|
||||
var contextMenu = electron.Menu.buildFromTemplate([
|
||||
{ label: 'Show', click: showApp },
|
||||
showHideMenuItem,
|
||||
{ label: 'Quit', click: quitApp }
|
||||
])
|
||||
trayIcon.setContextMenu(contextMenu)
|
||||
@@ -26,6 +42,12 @@ function showApp () {
|
||||
windows.main.show()
|
||||
}
|
||||
|
||||
function quitApp () {
|
||||
electron.app.quit()
|
||||
function hideApp () {
|
||||
windows.main.hide()
|
||||
}
|
||||
|
||||
function quitApp () {
|
||||
windows.main.send('dispatch', 'saveState') /* try to save state on exit */
|
||||
electron.ipcMain.once('savedState', () => electron.app.quit())
|
||||
setTimeout(() => electron.app.quit(), 2000) /* exit after at most 2 secs */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user