Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/public/app/services/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,15 +278,20 @@ function goToLinkExt(evt: MouseEvent | JQuery.ClickEvent | JQuery.MouseDownEvent
const { notePath, viewScope } = parseNavigationStateFromUrl(hrefLink);

const ctrlKey = utils.isCtrlKey(evt);
const shiftKey = evt.shiftKey;
const isLeftClick = "which" in evt && evt.which === 1;
const isMiddleClick = "which" in evt && evt.which === 2;
const targetIsBlank = ($link?.attr("target") === "_blank");
const openInNewTab = (isLeftClick && ctrlKey) || isMiddleClick || targetIsBlank;
const activate = (isLeftClick && ctrlKey && shiftKey) || (isMiddleClick && shiftKey);
const openInNewWindow = isLeftClick && evt.shiftKey && !ctrlKey;

if (notePath) {
if (openInNewTab) {
if (openInNewWindow) {
appContext.triggerCommand("openInWindow", { notePath, viewScope });
} else if (openInNewTab) {
appContext.tabManager.openTabWithNoteWithHoisting(notePath, {
activate: targetIsBlank,
activate: activate ? true : targetIsBlank,
viewScope
});
} else if (isLeftClick) {
Expand Down
48 changes: 30 additions & 18 deletions src/public/app/widgets/ribbon_widgets/note_paths.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
</style>
Expand Down Expand Up @@ -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;
}
Expand All @@ -88,50 +88,62 @@ 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));
}

this.$notePathList.empty().append(...renderedPaths);
}

async getRenderedPath(notePath: string, notePathRecord: NotePathRecord | null = null) {
const title = await treeService.getNotePathTitle(notePath);

const $noteLink = await linkService.createLink(notePath, { title });

$noteLink.find("a").addClass("no-tooltip-preview tn-link");
async getRenderedPath(notePath: string[], notePathRecord: NotePathRecord | null = null) {
const $pathItem = $("<li>");
const pathSegments: string[] = [];
const lastIndex = notePath.length - 1;

for (let i = 0; i < notePath.length; i++) {
const noteId = notePath[i];
pathSegments.push(noteId);
const title = await treeService.getNoteTitle(noteId);
const $noteLink = await linkService.createLink(pathSegments.join("/"), { title });

$noteLink.find("a").addClass("no-tooltip-preview tn-link");
$pathItem.append($noteLink);

if (i != lastIndex) {
$pathItem.append(" / ");
}
}

const icons = [];

if (this.notePath === notePath) {
$noteLink.addClass("path-current");
if (this.notePath === notePath.join("/")) {
$pathItem.addClass("path-current");
}

if (!notePathRecord || notePathRecord.isInHoistedSubTree) {
$noteLink.addClass("path-in-hoisted-subtree");
$pathItem.addClass("path-in-hoisted-subtree");
} else {
icons.push(`<span class="bx bx-trending-up" title="${t("note_paths.outside_hoisted")}"></span>`);
}

if (notePathRecord?.isArchived) {
$noteLink.addClass("path-archived");
$pathItem.addClass("path-archived");

icons.push(`<span class="bx bx-archive" title="${t("note_paths.archived")}"></span>`);
}

if (notePathRecord?.isSearch) {
$noteLink.addClass("path-search");
$pathItem.addClass("path-search");

icons.push(`<span class="bx bx-search" title="${t("note_paths.search")}"></span>`);
}

if (icons.length > 0) {
$noteLink.append(` ${icons.join(" ")}`);
$pathItem.append(` ${icons.join(" ")}`);
}

return $("<li>").append($noteLink);
return $pathItem;
}

entitiesReloadedEvent({ loadResults }: EventData<"entitiesReloaded">) {
Expand Down
Loading