mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
70 lines
2.3 KiB
JavaScript
70 lines
2.3 KiB
JavaScript
import path from 'path';
|
|
import {ipcRenderer} from 'electron';
|
|
import {BadgeStore} from 'nylas-exports';
|
|
|
|
// Must be absolute real system path
|
|
// https://github.com/atom/electron/issues/1299
|
|
const {platform} = process
|
|
const INBOX_ZERO_ICON = path.join(__dirname, '..', 'assets', platform, 'MenuItem-Inbox-Zero.png');
|
|
const INBOX_UNREAD_ICON = path.join(__dirname, '..', 'assets', platform, 'MenuItem-Inbox-Full.png');
|
|
const INBOX_UNREAD_ALT_ICON = path.join(__dirname, '..', 'assets', platform, 'MenuItem-Inbox-Full-NewItems.png');
|
|
|
|
|
|
class SystemTrayIconStore {
|
|
|
|
static INBOX_ZERO_ICON = INBOX_ZERO_ICON;
|
|
|
|
static INBOX_UNREAD_ICON = INBOX_UNREAD_ICON;
|
|
|
|
static INBOX_UNREAD_ALT_ICON = INBOX_UNREAD_ALT_ICON;
|
|
|
|
constructor() {
|
|
this._windowBlurred = false;
|
|
this._unsubscribers = [];
|
|
}
|
|
|
|
activate() {
|
|
this._updateIcon();
|
|
this._unsubscribers.push(BadgeStore.listen(this._updateIcon));
|
|
|
|
window.addEventListener('browser-window-blur', this._onWindowBlur);
|
|
window.addEventListener('browser-window-focus', this._onWindowFocus);
|
|
this._unsubscribers.push(() => window.removeEventListener('browser-window-blur', this._onWindowBlur))
|
|
this._unsubscribers.push(() => window.removeEventListener('browser-window-focus', this._onWindowFocus))
|
|
}
|
|
|
|
_getIconImageData(isInboxZero, isWindowBlurred) {
|
|
if (isInboxZero) {
|
|
return {iconPath: INBOX_ZERO_ICON, isTemplateImg: true};
|
|
}
|
|
return isWindowBlurred ?
|
|
{iconPath: INBOX_UNREAD_ALT_ICON, isTemplateImg: false} :
|
|
{iconPath: INBOX_UNREAD_ICON, isTemplateImg: true};
|
|
}
|
|
|
|
_onWindowBlur = () => {
|
|
// Set state to blurred, but don't trigger a change. The icon should only be
|
|
// updated when the count changes
|
|
this._windowBlurred = true;
|
|
};
|
|
|
|
_onWindowFocus = () => {
|
|
// Make sure that as long as the window is focused we never use the alt icon
|
|
this._windowBlurred = false;
|
|
this._updateIcon();
|
|
};
|
|
|
|
_updateIcon = () => {
|
|
const unread = BadgeStore.unread();
|
|
const unreadString = (+unread).toLocaleString();
|
|
const isInboxZero = (BadgeStore.total() === 0);
|
|
const {iconPath, isTemplateImg} = this._getIconImageData(isInboxZero, this._windowBlurred);
|
|
ipcRenderer.send('update-system-tray', iconPath, unreadString, isTemplateImg);
|
|
};
|
|
|
|
deactivate() {
|
|
this._unsubscribers.forEach(unsub => unsub())
|
|
}
|
|
}
|
|
|
|
export default SystemTrayIconStore;
|