fix #21: always create quick notes relative to root

This commit is contained in:
dragonwocky 2023-08-23 21:25:41 +10:00
parent 5cef2b0ed7
commit b8326526ef
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

16
main.js
View File

@ -1,5 +1,5 @@
/** /**
* obsidian-tray v0.3.3 * obsidian-tray v0.3.4
* (c) 2023 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/) * (c) 2023 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (https://github.com/dragonwocky/obsidian-tray/) under the MIT license * (https://github.com/dragonwocky/obsidian-tray/) under the MIT license
*/ */
@ -130,8 +130,18 @@ const addQuickNote = () => {
date = obsidian.moment().format(pattern), date = obsidian.moment().format(pattern),
name = obsidian name = obsidian
.normalizePath(`${quickNoteLocation ?? ""}/${date}`) .normalizePath(`${quickNoteLocation ?? ""}/${date}`)
.replace(/\*|"|\\|<|>|:|\||\?/g, "-"); .replace(/\*|"|\\|<|>|:|\||\?/g, "-"),
plugin.app.fileManager.createAndOpenMarkdownFile(name); // manually create and open file instead of depending
// on createAndOpenMarkdownFile to force file creation
// relative to the root instead of the active file
// (in case user has default location for new notes
// set to "same folder as current file")
leaf = plugin.app.workspace.getLeaf(),
root = plugin.app.fileManager.getNewFileParent(""),
openMode = { active: true, state: { mode: "source" } };
plugin.app.fileManager
.createNewMarkdownFile(root, name)
.then((file) => leaf.openFile(file, openMode));
showWindows(); showWindows();
}, },
replaceVaultName = (str) => { replaceVaultName = (str) => {