feat: #7 multi-vault support (open, hide & quit actions target vault windows only)

This commit is contained in:
dragonwocky 2023-04-10 23:35:39 +10:00
parent 8cebeed926
commit 3270ed5d82
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

138
main.js
View File

@ -37,40 +37,37 @@ const LOG_PREFIX = "obsidian-tray",
OBSIDIAN_BASE64_ICON = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHZSURBVDhPlZKxTxRBFMa/XZcF7nIG7mjxjoRCwomJxgsFdhaASqzQxFDzB1AQKgstLGxIiBQGJBpiCCGx8h+wgYaGgAWNd0dyHofeEYVwt/PmOTMZV9aDIL/s5pvZvPfN9yaL/+HR3eXcypta0m4juFbP5GHuXc9IbunDFc9db/G81/ZzhDMN7g8td47mll4R5BfHwZN4LOaA+fHa259PbUmIYzWkt3e2NZNo3/V9v1vvU6kkstk+tLW3ItUVr/m+c3N8MlkwxYqmBFcbwUQQCNOcyVzDwEAWjuPi5DhAMV/tKOYPX5hCyz8Gz1zX5SmWjBvZfmTSaRBJkGAIoxJHv+pVW2yIGNxOJ8bUVNcFEWLxuG1ia6JercTbttwQTeDwPS0kCMXiXtgk/jQrFUw7ptYSMWApF40yo/ytjHq98fdk3ayVE+cn2CxMb6ruz9qAJKFUKoWza1VJSi/n0+ffgYHdWW2gHuxXymg0gjCB0sjpmiaDnkL3RzDyzLqBUKns2ztQqUR0fk2TwSrGSf1eczqF5vsPZRCQSSAFLk6gqctgQRkc6TWRQLV2YMYQki9OoNkqzFQ9r+WOGuW5CrJbOzyAlPKr6MSGLbkcDwbf35oY/jRkt6cAfgNwowruAMz9AgAAAABJRU5ErkJggg==`, OBSIDIAN_BASE64_ICON = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHZSURBVDhPlZKxTxRBFMa/XZcF7nIG7mjxjoRCwomJxgsFdhaASqzQxFDzB1AQKgstLGxIiBQGJBpiCCGx8h+wgYaGgAWNd0dyHofeEYVwt/PmOTMZV9aDIL/s5pvZvPfN9yaL/+HR3eXcypta0m4juFbP5GHuXc9IbunDFc9db/G81/ZzhDMN7g8td47mll4R5BfHwZN4LOaA+fHa259PbUmIYzWkt3e2NZNo3/V9v1vvU6kkstk+tLW3ItUVr/m+c3N8MlkwxYqmBFcbwUQQCNOcyVzDwEAWjuPi5DhAMV/tKOYPX5hCyz8Gz1zX5SmWjBvZfmTSaRBJkGAIoxJHv+pVW2yIGNxOJ8bUVNcFEWLxuG1ia6JercTbttwQTeDwPS0kCMXiXtgk/jQrFUw7ptYSMWApF40yo/ytjHq98fdk3ayVE+cn2CxMb6ruz9qAJKFUKoWza1VJSi/n0+ffgYHdWW2gHuxXymg0gjCB0sjpmiaDnkL3RzDyzLqBUKns2ztQqUR0fk2TwSrGSf1eczqF5vsPZRCQSSAFLk6gqctgQRkc6TWRQLV2YMYQki9OoNkqzFQ9r+WOGuW5CrJbOzyAlPKr6MSGLbkcDwbf35oY/jRkt6cAfgNwowruAMz9AgAAAABJRU5ErkJggg==`,
log = (message) => console.log(`${LOG_PREFIX}: ${message}`); log = (message) => console.log(`${LOG_PREFIX}: ${message}`);
let tray; let tray, plugin;
const obsidian = require("obsidian"), const obsidian = require("obsidian"),
{ { app, Tray, Menu, nativeImage } = require("electron").remote,
app, { getCurrentWindow, globalShortcut } = require("electron").remote;
BrowserWindow,
getCurrentWindow,
globalShortcut,
Tray,
Menu,
nativeImage,
} = require("electron").remote;
const showWindows = () => { const childWindows = new Set(),
log(LOG_SHOWING_WINDOWS); observeChildWindows = () => {
const windows = BrowserWindow.getAllWindows(); getCurrentWindow().webContents.on("did-create-window", (win) => {
windows.forEach((win) => win.show()); childWindows.add(win);
getCurrentWindow().focus(); win.on("close", () => childWindows.delete(win));
win.setSkipTaskbar(plugin.settings.hideTaskbarIcon);
});
}, },
hideWindows = (runInBackground) => { getAllWindows = () => [...childWindows, getCurrentWindow()],
showWindows = () => {
log(LOG_SHOWING_WINDOWS);
getAllWindows().forEach((win) => win.show());
},
hideWindows = () => {
log(LOG_HIDING_WINDOWS); log(LOG_HIDING_WINDOWS);
const windows = BrowserWindow.getAllWindows(); getAllWindows().forEach((win) => [
windows.forEach((win) => [
win.isFocused() && win.blur(), win.isFocused() && win.blur(),
runInBackground ? win.hide() : win.minimize(), plugin.settings.runInBackground ? win.hide() : win.minimize(),
]); ]);
}, },
toggleWindows = (runInBackground, checkForFocus = true) => { toggleWindows = (checkForFocus = true) => {
const windows = BrowserWindow.getAllWindows(), const openWindows = getAllWindows().some((win) => {
openWindows = windows.some((win) => { return (!checkForFocus || win.isFocused()) && win.isVisible();
return (!checkForFocus || win.isFocused()) && win.isVisible(); });
}); if (openWindows) hideWindows();
if (openWindows) { else showWindows();
hideWindows(runInBackground);
} else showWindows();
}; };
const onWindowClose = (event) => event.preventDefault(), const onWindowClose = (event) => event.preventDefault(),
@ -90,15 +87,17 @@ const onWindowClose = (event) => event.preventDefault(),
// the 3-second delayed window force close in obsidian.asar/main.js // the 3-second delayed window force close in obsidian.asar/main.js
getCurrentWindow().on("close", onWindowClose); getCurrentWindow().on("close", onWindowClose);
}, },
cleanupWindowClose = () => { allowWindowClose = () => {
getCurrentWindow().removeListener("close", onWindowClose); getCurrentWindow().removeListener("close", onWindowClose);
window.removeEventListener("beforeunload", onWindowUnload, true); window.removeEventListener("beforeunload", onWindowUnload, true);
}; };
const setHideTaskbarIcon = (plugin) => { const setHideTaskbarIcon = () => {
getCurrentWindow().setSkipTaskbar(plugin.settings.hideTaskbarIcon); getAllWindows().forEach((win) => {
win.setSkipTaskbar(plugin.settings.hideTaskbarIcon);
});
}, },
setLaunchOnStartup = (plugin) => { setLaunchOnStartup = () => {
const { launchOnStartup, runInBackground, hideOnLaunch } = plugin.settings; const { launchOnStartup, runInBackground, hideOnLaunch } = plugin.settings;
app.setLoginItemSettings({ app.setLoginItemSettings({
openAtLogin: launchOnStartup, openAtLogin: launchOnStartup,
@ -108,9 +107,16 @@ const setHideTaskbarIcon = (plugin) => {
relaunchObsidian = () => { relaunchObsidian = () => {
app.relaunch(); app.relaunch();
app.exit(0); app.exit(0);
},
quitObsidian = () => {
log(LOG_CLEANUP);
unregisterHotkeys();
allowWindowClose();
destroyTray();
getAllWindows().forEach((win) => win.destroy());
}; };
const addQuickNote = (plugin) => { const addQuickNote = () => {
const { quickNoteLocation, quickNoteDateFormat } = plugin.settings, const { quickNoteLocation, quickNoteDateFormat } = plugin.settings,
pattern = quickNoteDateFormat || DEFAULT_DATE_FORMAT, pattern = quickNoteDateFormat || DEFAULT_DATE_FORMAT,
date = obsidian.moment().format(pattern), date = obsidian.moment().format(pattern),
@ -120,7 +126,7 @@ const addQuickNote = (plugin) => {
plugin.app.fileManager.createAndOpenMarkdownFile(name); plugin.app.fileManager.createAndOpenMarkdownFile(name);
showWindows(); showWindows();
}, },
createTrayIcon = (plugin) => { createTrayIcon = () => {
log(LOG_TRAY_ICON); log(LOG_TRAY_ICON);
const obsidianIcon = nativeImage.createFromDataURL( const obsidianIcon = nativeImage.createFromDataURL(
plugin.settings.trayIconImage ?? OBSIDIAN_BASE64_ICON plugin.settings.trayIconImage ?? OBSIDIAN_BASE64_ICON
@ -130,7 +136,7 @@ const addQuickNote = (plugin) => {
type: "normal", type: "normal",
label: ACTION_QUICK_NOTE, label: ACTION_QUICK_NOTE,
accelerator: plugin.settings.quickNoteHotkey, accelerator: plugin.settings.quickNoteHotkey,
click: () => addQuickNote(plugin), click: addQuickNote,
}, },
{ {
type: "normal", type: "normal",
@ -146,41 +152,35 @@ const addQuickNote = (plugin) => {
}, },
{ type: "separator" }, { type: "separator" },
{ label: ACTION_RELAUNCH, click: relaunchObsidian }, { label: ACTION_RELAUNCH, click: relaunchObsidian },
{ label: ACTION_QUIT, role: "quit" }, { label: ACTION_QUIT, click: quitObsidian },
]); ]);
tray = new Tray(obsidianIcon); tray = new Tray(obsidianIcon);
tray.setContextMenu(contextMenu); tray.setContextMenu(contextMenu);
tray.setToolTip("Obsidian"); tray.setToolTip("Obsidian");
tray.on("click", () => tray.on("click", () => toggleWindows(false));
toggleWindows(plugin.settings.runInBackground, false) },
); destroyTray = () => {
tray.destroy();
tray = undefined;
}; };
const registerHotkeys = (plugin) => { const registerHotkeys = () => {
log(LOG_REGISTER_HOTKEY); log(LOG_REGISTER_HOTKEY);
try { try {
const toggleAccelerator = plugin.settings.toggleWindowFocusHotkey, const { toggleWindowFocusHotkey, quickNoteHotkey } = plugin.settings;
quicknoteAccelerator = plugin.settings.quickNoteHotkey; if (toggleWindowFocusHotkey) {
if (toggleAccelerator) { globalShortcut.register(toggleWindowFocusHotkey, toggleWindows);
globalShortcut.register(toggleAccelerator, () => {
const runInBackground = plugin.settings.runInBackground;
toggleWindows(runInBackground);
});
} }
if (quicknoteAccelerator) { if (quickNoteHotkey) {
globalShortcut.register(quicknoteAccelerator, () => { globalShortcut.register(quickNoteHotkey, addQuickNote);
addQuickNote(plugin);
});
} }
} catch {} } catch {}
}, },
unregisterHotkeys = (plugin) => { unregisterHotkeys = () => {
log(LOG_UNREGISTER_HOTKEY); log(LOG_UNREGISTER_HOTKEY);
try { try {
const toggle = plugin.settings.toggleWindowFocusHotkey, globalShortcut.unregister(plugin.settings.toggleWindowFocusHotkey);
quicknote = plugin.settings.quickNoteHotkey; globalShortcut.unregister(plugin.settings.quickNoteHotkey);
globalShortcut.unregister(toggle);
globalShortcut.unregister(quicknote);
} catch {} } catch {}
}; };
@ -211,8 +211,8 @@ const OPTIONS = [
`, `,
type: "toggle", type: "toggle",
default: false, default: false,
onChange: (plugin) => { onChange: () => {
setLaunchOnStartup(plugin); setLaunchOnStartup();
const runInBackground = plugin.settings.runInBackground; const runInBackground = plugin.settings.runInBackground;
if (!runInBackground) showWindows(); if (!runInBackground) showWindows();
}, },
@ -374,20 +374,15 @@ class TrayPlugin extends obsidian.Plugin {
this.addSettingTab(new SettingsTab(this.app, this)); this.addSettingTab(new SettingsTab(this.app, this));
const { settings } = this; const { settings } = this;
registerHotkeys(this); plugin = this;
setHideTaskbarIcon(this); registerHotkeys();
setLaunchOnStartup(this); setHideTaskbarIcon();
if (settings.createTrayIcon) createTrayIcon(this); setLaunchOnStartup();
observeChildWindows();
if (settings.createTrayIcon) createTrayIcon();
if (settings.runInBackground) interceptWindowClose(); if (settings.runInBackground) interceptWindowClose();
if (settings.hideOnLaunch) { if (settings.hideOnLaunch) {
let _hidden; this.registerEvent(this.app.workspace.onLayoutReady(hideWindows));
this.registerEvent(
this.app.workspace.onLayoutReady(() => {
if (_hidden) return;
_hidden = true;
hideWindows(settings.runInBackground);
})
);
} }
// add as command: can be called from command palette // add as command: can be called from command palette
@ -400,8 +395,9 @@ class TrayPlugin extends obsidian.Plugin {
} }
onunload() { onunload() {
log(LOG_CLEANUP); log(LOG_CLEANUP);
unregisterHotkeys(this); unregisterHotkeys();
cleanupWindowClose(); allowWindowClose();
destroyTray();
} }
async loadSettings() { async loadSettings() {