fix: #4, #6 decouple run in background and hide on launch opts

This commit is contained in:
dragonwocky 2023-04-09 16:14:42 +10:00
parent 5a81b44df1
commit 7f9ec58cfa
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

59
main.js
View File

@ -5,7 +5,8 @@
let tray; let tray;
const obsidian = require("obsidian"), const obsidian = require("obsidian"),
{ app, BrowserWindow, globalShortcut, Tray, Menu, nativeImage } = require("electron").remote; { app, BrowserWindow, globalShortcut, Tray, Menu, nativeImage } =
require("electron").remote;
const showWindows = () => { const showWindows = () => {
console.log("obsidian-tray: showing windows"); console.log("obsidian-tray: showing windows");
@ -23,24 +24,32 @@ const showWindows = () => {
]); ]);
}, },
toggleWindows = (runInBackground, checkForFocus = true) => { toggleWindows = (runInBackground, checkForFocus = true) => {
const windows = BrowserWindow.getAllWindows(); const windows = BrowserWindow.getAllWindows(),
if (windows.some((win) => (!checkForFocus || win.isFocused()) && win.isVisible())) { openWindows = windows.some((win) => {
return (!checkForFocus || win.isFocused()) && win.isVisible();
});
if (openWindows) {
hideWindows(runInBackground); hideWindows(runInBackground);
} else showWindows(); } else showWindows();
}; };
// let _onbeforeunload;
const onWindowClose = (event) => { const onWindowClose = (event) => {
event.stopImmediatePropagation(); event.stopImmediatePropagation();
// event.preventDefault();
console.log("obsidian-tray: intercepting window close"); console.log("obsidian-tray: intercepting window close");
const windows = BrowserWindow.getAllWindows(), const windows = BrowserWindow.getAllWindows(),
currentWindow = windows.find((win) => win.isFocused()); currentWindow = windows.find((win) => win.isFocused());
currentWindow.hide(); currentWindow.hide();
}, },
interceptWindowClose = () => { interceptWindowClose = () => {
// _onbeforeunload = window.onbeforeunload;
// window.onbeforeunload = onWindowClose;
const closeBtn = document.querySelector(".mod-close"); const closeBtn = document.querySelector(".mod-close");
closeBtn.addEventListener("click", onWindowClose, true); closeBtn.addEventListener("click", onWindowClose, true);
}, },
cleanupWindowClose = () => { cleanupWindowClose = () => {
// window.onbeforeunload = _onbeforeunload;
const closeBtn = document.querySelector(".mod-close"); const closeBtn = document.querySelector(".mod-close");
closeBtn.removeEventListener("click", onWindowClose, true); closeBtn.removeEventListener("click", onWindowClose, true);
}; };
@ -114,16 +123,24 @@ const OPTIONS = [
key: "launchOnStartup", key: "launchOnStartup",
desc: "Open Obsidian automatically whenever you log into your computer.", desc: "Open Obsidian automatically whenever you log into your computer.",
type: "toggle", type: "toggle",
default: true, default: false,
onChange: (plugin) => setLaunchOnStartup(plugin), onChange: (plugin) => setLaunchOnStartup(plugin),
}, },
{
key: "hideOnLaunch",
desc: `
Minimises Obsidian automatically whenever the app is launched. If the
"Run in background" option is enabled, windows will be hidden to the system
tray/menubar instead of minimised to the taskbar/dock.
`,
type: "toggle",
default: false,
},
{ {
key: "runInBackground", key: "runInBackground",
desc: ` desc: `
Hide the app and continue to run it in the background instead of quitting Hide the app and continue to run it in the background instead of quitting
it when pressing the window close button or toggle focus hotkey. If both it when pressing the window close button or toggle focus hotkey.
this and "Launch on startup" are enabled, windows will be hidden automatically
whenever the app is initialised.
`, `,
type: "toggle", type: "toggle",
default: false, default: false,
@ -167,7 +184,9 @@ const keyToLabel = (key) =>
.map((word) => word.toLowerCase()) .map((word) => word.toLowerCase())
.join(" "), .join(" "),
htmlToFragment = (html) => htmlToFragment = (html) =>
document.createRange().createContextualFragment((html ?? "").replace(/\s+/g, " ")); document
.createRange()
.createContextualFragment((html ?? "").replace(/\s+/g, " "));
class SettingsTab extends obsidian.PluginSettingTab { class SettingsTab extends obsidian.PluginSettingTab {
constructor(app, plugin) { constructor(app, plugin) {
@ -186,7 +205,9 @@ class SettingsTab extends obsidian.PluginSettingTab {
await opt.onChange?.(this.plugin, value); await opt.onChange?.(this.plugin, value);
}; };
const setting = new obsidian.Setting(this.containerEl).setName(name).setDesc(desc); const setting = new obsidian.Setting(this.containerEl)
.setName(name)
.setDesc(desc);
switch (opt.type) { switch (opt.type) {
case "toggle": case "toggle":
setting.addToggle((toggle) => setting.addToggle((toggle) =>
@ -208,17 +229,17 @@ class SettingsTab extends obsidian.PluginSettingTab {
class TrayPlugin extends obsidian.Plugin { class TrayPlugin extends obsidian.Plugin {
async onload() { async onload() {
console.log("obsidian-tray: loading");
await this.loadSettings(); await this.loadSettings();
this.addSettingTab(new SettingsTab(this.app, this)); this.addSettingTab(new SettingsTab(this.app, this));
const { settings } = this;
console.log("obsidian-tray: loading");
setLaunchOnStartup(this);
registerHotkey(this); registerHotkey(this);
if (this.settings.runInBackground) { setLaunchOnStartup(this);
hideWindows(true); if (settings.createTrayIcon) createTrayIcon(this);
interceptWindowClose(); if (settings.runInBackground) interceptWindowClose();
} // bug: obsidian will refocus/reshow self if minimised but not fully hidden
if (this.settings.createTrayIcon) createTrayIcon(this); if (settings.hideOnLaunch) hideWindows(settings.runInBackground);
} }
onunload() { onunload() {
unregisterHotkey(this); unregisterHotkey(this);
@ -226,10 +247,8 @@ class TrayPlugin extends obsidian.Plugin {
} }
async loadSettings() { async loadSettings() {
const DEFAULT_SETTINGS = OPTIONS.map((opt) => ({ const DEFAULT_SETTINGS = OPTIONS.map((opt) => ({ [opt.key]: opt.default }));
[opt.key]: opt.default, this.settings = Object.assign(...DEFAULT_SETTINGS, await this.loadData());
}));
this.settings = Object.assign({}, ...DEFAULT_SETTINGS, await this.loadData());
} }
async saveSettings() { async saveSettings() {
await this.saveData(this.settings); await this.saveData(this.settings);