mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
f4bf425148
* Update all non-major dependencies * Iterate PR Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
121 lines
3.5 KiB
TypeScript
121 lines
3.5 KiB
TypeScript
/*
|
|
Copyright 2017 Karl Glatz <karl@glatz.biz>
|
|
Copyright 2017 OpenMarket Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import { app, Tray, Menu, nativeImage } from "electron";
|
|
import pngToIco from "png-to-ico";
|
|
import path from "path";
|
|
import fs from "fs";
|
|
|
|
import { _t } from "./language-helper";
|
|
|
|
let trayIcon: Tray | null = null;
|
|
|
|
export function hasTray(): boolean {
|
|
return (trayIcon !== null);
|
|
}
|
|
|
|
export function destroy(): void {
|
|
if (trayIcon) {
|
|
trayIcon.destroy();
|
|
trayIcon = null;
|
|
}
|
|
}
|
|
|
|
function toggleWin(): void {
|
|
if (global.mainWindow?.isVisible() && !global.mainWindow.isMinimized() && global.mainWindow.isFocused()) {
|
|
global.mainWindow.hide();
|
|
} else {
|
|
if (global.mainWindow?.isMinimized()) global.mainWindow.restore();
|
|
if (!global.mainWindow?.isVisible()) global.mainWindow?.show();
|
|
global.mainWindow?.focus();
|
|
}
|
|
}
|
|
|
|
interface IConfig {
|
|
icon_path: string; // eslint-disable-line camelcase
|
|
brand: string;
|
|
}
|
|
|
|
export function create(config: IConfig): void {
|
|
// no trays on darwin
|
|
if (process.platform === 'darwin' || trayIcon) return;
|
|
const defaultIcon = nativeImage.createFromPath(config.icon_path);
|
|
|
|
trayIcon = new Tray(defaultIcon);
|
|
trayIcon.setToolTip(config.brand);
|
|
initApplicationMenu();
|
|
trayIcon.on('click', toggleWin);
|
|
|
|
let lastFavicon: string | null = null;
|
|
global.mainWindow?.webContents.on('page-favicon-updated', async function(ev, favicons) {
|
|
if (!favicons || favicons.length <= 0 || !favicons[0].startsWith('data:')) {
|
|
if (lastFavicon !== null) {
|
|
global.mainWindow?.setIcon(defaultIcon);
|
|
trayIcon?.setImage(defaultIcon);
|
|
lastFavicon = null;
|
|
}
|
|
return;
|
|
}
|
|
|
|
// No need to change, shortcut
|
|
if (favicons[0] === lastFavicon) return;
|
|
lastFavicon = favicons[0];
|
|
|
|
let newFavicon = nativeImage.createFromDataURL(favicons[0]);
|
|
|
|
// Windows likes ico's too much.
|
|
if (process.platform === 'win32') {
|
|
try {
|
|
const icoPath = path.join(app.getPath('temp'), 'win32_element_icon.ico');
|
|
fs.writeFileSync(icoPath, await pngToIco(newFavicon.toPNG()));
|
|
newFavicon = nativeImage.createFromPath(icoPath);
|
|
} catch (e) {
|
|
console.error("Failed to make win32 ico", e);
|
|
}
|
|
}
|
|
|
|
trayIcon?.setImage(newFavicon);
|
|
global.mainWindow?.setIcon(newFavicon);
|
|
});
|
|
|
|
global.mainWindow?.webContents.on('page-title-updated', function(ev, title) {
|
|
trayIcon?.setToolTip(title);
|
|
});
|
|
}
|
|
|
|
export function initApplicationMenu(): void {
|
|
if (!trayIcon) {
|
|
return;
|
|
}
|
|
|
|
const contextMenu = Menu.buildFromTemplate([
|
|
{
|
|
label: _t('Show/Hide'),
|
|
click: toggleWin,
|
|
},
|
|
{ type: 'separator' },
|
|
{
|
|
label: _t('Quit'),
|
|
click: function(): void {
|
|
app.quit();
|
|
},
|
|
},
|
|
]);
|
|
|
|
trayIcon.setContextMenu(contextMenu);
|
|
}
|