From b86407b7f55d698d2d9f15e97fea6ec0586ee864 Mon Sep 17 00:00:00 2001 From: SiriusXT <1160925501@qq.com> Date: Thu, 17 Apr 2025 16:30:46 +0800 Subject: [PATCH] Make each part of the note path clickable. --- .../app/widgets/ribbon_widgets/note_paths.ts | 46 ++++++++++++------- 1 file changed, 29 insertions(+), 17 deletions(-) diff --git a/src/public/app/widgets/ribbon_widgets/note_paths.ts b/src/public/app/widgets/ribbon_widgets/note_paths.ts index 961878589..131fed2a4 100644 --- a/src/public/app/widgets/ribbon_widgets/note_paths.ts +++ b/src/public/app/widgets/ribbon_widgets/note_paths.ts @@ -19,15 +19,15 @@ const TPL = /*html*/` margin-top: 10px; } - .note-path-list .path-current { + .note-path-list .path-current a { font-weight: bold; } - .note-path-list .path-archived { + .note-path-list .path-archived a { color: var(--muted-text-color) !important; } - .note-path-list .path-search { + .note-path-list .path-search a { font-style: italic; } @@ -72,7 +72,7 @@ export default class NotePathsWidget extends NoteContextAwareWidget { this.$notePathList.empty(); if (!this.note || this.noteId === "root") { - this.$notePathList.empty().append(await this.getRenderedPath("root")); + this.$notePathList.empty().append(await this.getRenderedPath(["root"])); return; } @@ -88,7 +88,7 @@ export default class NotePathsWidget extends NoteContextAwareWidget { const renderedPaths = []; for (const notePathRecord of sortedNotePaths) { - const notePath = notePathRecord.notePath.join("/"); + const notePath = notePathRecord.notePath; renderedPaths.push(await this.getRenderedPath(notePath, notePathRecord)); } @@ -96,42 +96,54 @@ export default class NotePathsWidget extends NoteContextAwareWidget { this.$notePathList.empty().append(...renderedPaths); } - async getRenderedPath(notePath: string, notePathRecord: NotePathRecord | null = null) { - const title = await treeService.getNotePathTitle(notePath); + async getRenderedPath(notePath: string[], notePathRecord: NotePathRecord | null = null) { + const $pathItem = $("