Notes/src/public/app/services/note_autocomplete.ts

362 lines
12 KiB
TypeScript
Raw Normal View History

import server from "./server.js";
2022-12-01 13:07:23 +01:00
import appContext from "../components/app_context.js";
2025-01-09 18:07:02 +02:00
import utils from "./utils.js";
import noteCreateService from "./note_create.js";
2021-04-16 23:01:56 +02:00
import froca from "./froca.js";
import { t } from "./i18n.js";
// this key needs to have this value, so it's hit by the tooltip
2020-05-16 22:11:09 +02:00
const SELECTED_NOTE_PATH_KEY = "data-note-path";
2018-11-14 00:05:09 +01:00
const SELECTED_EXTERNAL_LINK_KEY = "data-external-link";
export interface Suggestion {
noteTitle?: string;
externalLink?: string;
notePathTitle?: string;
notePath?: string;
highlightedNotePathTitle?: string;
action?: string | "create-note" | "search-notes" | "external-link";
parentNoteId?: string;
}
interface Options {
container?: HTMLElement;
fastSearch?: boolean;
allowCreatingNotes?: boolean;
allowJumpToSearchNotes?: boolean;
allowExternalLinks?: boolean;
hideGoToSelectedNoteButton?: boolean;
}
async function autocompleteSourceForCKEditor(queryText: string) {
return await new Promise<MentionItem[]>((res, rej) => {
2025-01-09 18:07:02 +02:00
autocompleteSource(
queryText,
(rows) => {
res(
rows.map((row) => {
return {
action: row.action,
noteTitle: row.noteTitle,
id: `@${row.notePathTitle}`,
name: row.notePathTitle || "",
link: `#${row.notePath}`,
notePath: row.notePath,
highlightedNotePathTitle: row.highlightedNotePathTitle
};
})
);
},
{
allowCreatingNotes: true
}
);
2020-09-21 22:08:54 +02:00
});
}
async function autocompleteSource(term: string, cb: (rows: Suggestion[]) => void, options: Options = {}) {
const fastSearch = options.fastSearch === false ? false : true;
2024-11-26 16:20:38 +08:00
if (fastSearch === false) {
2025-01-09 18:07:02 +02:00
if (term.trim().length === 0) {
return;
}
2025-01-09 18:07:02 +02:00
cb([
{
2024-11-26 16:20:38 +08:00
noteTitle: term,
highlightedNotePathTitle: t("quick-search.searching")
2025-01-09 18:07:02 +02:00
}
]);
2024-11-26 16:20:38 +08:00
}
2021-05-22 12:35:41 +02:00
const activeNoteId = appContext.tabManager.getActiveContextNoteId();
2020-09-21 00:07:46 +02:00
let results: Suggestion[] = await server.get<Suggestion[]>(`autocomplete?query=${encodeURIComponent(term)}&activeNoteId=${activeNoteId}&fastSearch=${fastSearch}`);
if (term.trim().length >= 1 && options.allowCreatingNotes) {
2020-09-21 00:07:46 +02:00
results = [
{
2025-01-09 18:07:02 +02:00
action: "create-note",
2020-09-21 00:07:46 +02:00
noteTitle: term,
2025-01-09 18:07:02 +02:00
parentNoteId: activeNoteId || "root",
highlightedNotePathTitle: t("note_autocomplete.create-note", { term })
} as Suggestion
2020-09-21 00:07:46 +02:00
].concat(results);
}
if (term.trim().length >= 1 && options.allowJumpToSearchNotes) {
2024-11-20 14:22:39 +08:00
results = results.concat([
{
2025-01-09 18:07:02 +02:00
action: "search-notes",
2024-11-20 14:22:39 +08:00
noteTitle: term,
highlightedNotePathTitle: `${t("note_autocomplete.search-for", { term })} <kbd style='color: var(--muted-text-color); background-color: transparent; float: right;'>Ctrl+Enter</kbd>`
2024-11-20 14:22:39 +08:00
}
]);
}
if (term.match(/^[a-z]+:\/\/.+/i) && options.allowExternalLinks) {
results = [
{
2025-01-09 18:07:02 +02:00
action: "external-link",
externalLink: term,
highlightedNotePathTitle: t("note_autocomplete.insert-external-link", { term })
} as Suggestion
].concat(results);
}
2020-09-21 00:07:46 +02:00
cb(results);
}
function clearText($el: JQuery<HTMLElement>) {
2020-05-16 22:11:09 +02:00
$el.setSelectedNotePath("");
2025-01-09 18:07:02 +02:00
$el.autocomplete("val", "").trigger("change");
}
function setText($el: JQuery<HTMLElement>, text: string) {
$el.setSelectedNotePath("");
2025-01-09 18:07:02 +02:00
$el.autocomplete("val", text.trim()).autocomplete("open");
}
2025-01-09 18:07:02 +02:00
function showRecentNotes($el: JQuery<HTMLElement>) {
2020-05-16 22:11:09 +02:00
$el.setSelectedNotePath("");
$el.autocomplete("val", "");
2025-01-09 18:07:02 +02:00
$el.autocomplete("open");
$el.trigger("focus");
}
2025-01-09 18:07:02 +02:00
function fullTextSearch($el: JQuery<HTMLElement>, options: Options) {
const searchString = $el.autocomplete("val") as unknown as string;
if (options.fastSearch === false || searchString?.trim().length === 0) {
return;
}
2025-01-09 18:07:02 +02:00
$el.trigger("focus");
options.fastSearch = false;
2025-01-09 18:07:02 +02:00
$el.autocomplete("val", "");
$el.setSelectedNotePath("");
2025-01-09 18:07:02 +02:00
$el.autocomplete("val", searchString);
// Set a delay to avoid resetting to true before full text search (await server.get) is called.
2025-01-09 18:07:02 +02:00
setTimeout(() => {
options.fastSearch = true;
}, 100);
2024-11-23 20:51:51 +08:00
}
function initNoteAutocomplete($el: JQuery<HTMLElement>, options?: Options) {
if ($el.hasClass("note-autocomplete-input")) {
// clear any event listener added in previous invocation of this function
2025-01-09 18:07:02 +02:00
$el.off("autocomplete:noteselected");
2019-05-22 20:53:59 +02:00
return $el;
}
2019-05-22 20:53:59 +02:00
options = options || {};
2019-05-22 20:53:59 +02:00
$el.addClass("note-autocomplete-input");
2025-01-09 18:07:02 +02:00
const $clearTextButton = $("<button>").addClass("input-group-text input-clearer-button bx bxs-tag-x").prop("title", t("note_autocomplete.clear-text-field"));
2025-01-09 18:07:02 +02:00
const $showRecentNotesButton = $("<button>").addClass("input-group-text show-recent-notes-button bx bx-time").prop("title", t("note_autocomplete.show-recent-notes"));
2024-11-23 20:51:51 +08:00
const $fullTextSearchButton = $("<button>")
.addClass("input-group-text full-text-search-button bx bx-search")
.prop("title", `${t("note_autocomplete.full-text-search")} (Shift+Enter)`);
2024-11-23 20:51:51 +08:00
2025-01-09 18:07:02 +02:00
const $goToSelectedNoteButton = $("<a>").addClass("input-group-text go-to-selected-note-button bx bx-arrow-to-right");
2024-11-23 20:51:51 +08:00
$el.after($clearTextButton).after($showRecentNotesButton).after($fullTextSearchButton);
2019-05-22 20:53:59 +02:00
if (!options.hideGoToSelectedNoteButton) {
$el.after($goToSelectedNoteButton);
2019-05-22 20:53:59 +02:00
}
2025-01-09 18:07:02 +02:00
$clearTextButton.on("click", () => clearText($el));
2019-05-22 20:53:59 +02:00
2025-01-09 18:07:02 +02:00
$showRecentNotesButton.on("click", (e) => {
2019-05-22 20:53:59 +02:00
showRecentNotes($el);
// this will cause the click not give focus to the "show recent notes" button
// this is important because otherwise input will lose focus immediately and not show the results
2019-05-22 20:53:59 +02:00
return false;
});
2025-01-09 18:07:02 +02:00
$fullTextSearchButton.on("click", (e) => {
2024-11-23 20:51:51 +08:00
fullTextSearch($el, options);
2024-11-26 15:41:18 +08:00
return false;
2024-11-23 20:51:51 +08:00
});
let autocompleteOptions: AutoCompleteConfig = {};
if (options.container) {
autocompleteOptions.dropdownMenuContainer = options.container;
2025-01-09 18:07:02 +02:00
autocompleteOptions.debug = true; // don't close on blur
}
if (options.allowJumpToSearchNotes) {
2025-01-09 18:07:02 +02:00
$el.on("keydown", (event) => {
if (event.ctrlKey && event.key === "Enter") {
2024-11-20 14:22:39 +08:00
// Prevent Ctrl + Enter from triggering autoComplete.
event.stopImmediatePropagation();
event.preventDefault();
2025-01-09 18:07:02 +02:00
$el.trigger("autocomplete:selected", { action: "search-notes", noteTitle: $el.autocomplete("val") });
2024-11-20 14:22:39 +08:00
}
});
}
2025-01-09 18:07:02 +02:00
$el.on("keydown", async (event) => {
if (event.shiftKey && event.key === "Enter") {
2024-11-23 20:51:51 +08:00
// Prevent Enter from triggering autoComplete.
event.stopImmediatePropagation();
event.preventDefault();
2025-01-09 18:07:02 +02:00
fullTextSearch($el, options);
2024-11-23 20:51:51 +08:00
}
});
2025-01-09 18:07:02 +02:00
$el.autocomplete(
2019-05-22 20:53:59 +02:00
{
2025-01-09 18:07:02 +02:00
...autocompleteOptions,
appendTo: document.querySelector("body"),
hint: false,
autoselect: true,
// openOnFocus has to be false, otherwise re-focus (after return from note type chooser dialog) forces
// re-querying of the autocomplete source which then changes the currently selected suggestion
openOnFocus: false,
minLength: 0,
tabAutocomplete: false
},
[
{
source: (term, cb) => autocompleteSource(term, cb, options),
displayKey: "notePathTitle",
templates: {
suggestion: (suggestion) => suggestion.highlightedNotePathTitle
},
// we can't cache identical searches because notes can be created / renamed, new recent notes can be added
cache: false
}
]
);
// TODO: Types fail due to "autocomplete:selected" not being registered in type definitions.
2025-01-09 18:07:02 +02:00
($el as any).on("autocomplete:selected", async (event: Event, suggestion: Suggestion) => {
if (suggestion.action === "external-link") {
$el.setSelectedNotePath(null);
$el.setSelectedExternalLink(suggestion.externalLink);
$el.autocomplete("val", suggestion.externalLink);
$el.autocomplete("close");
2025-01-09 18:07:02 +02:00
$el.trigger("autocomplete:externallinkselected", [suggestion]);
return;
}
2025-01-09 18:07:02 +02:00
if (suggestion.action === "create-note") {
const { success, noteType, templateNoteId } = await noteCreateService.chooseNoteType();
if (!success) {
return;
}
const { note } = await noteCreateService.createNote(suggestion.parentNoteId, {
2020-09-21 00:07:46 +02:00
title: suggestion.noteTitle,
activate: false,
type: noteType,
templateNoteId: templateNoteId
2020-09-21 00:07:46 +02:00
});
2023-04-15 00:06:13 +02:00
const hoistedNoteId = appContext.tabManager.getActiveContext()?.hoistedNoteId;
suggestion.notePath = note?.getBestNotePathString(hoistedNoteId);
2020-09-21 00:07:46 +02:00
}
2025-01-09 18:07:02 +02:00
if (suggestion.action === "search-notes") {
2024-11-20 14:22:39 +08:00
const searchString = suggestion.noteTitle;
2025-01-09 18:07:02 +02:00
appContext.triggerCommand("searchNotes", { searchString });
2024-11-20 14:22:39 +08:00
return;
}
$el.setSelectedNotePath(suggestion.notePath);
$el.setSelectedExternalLink(null);
$el.autocomplete("val", suggestion.noteTitle);
2020-09-21 00:07:46 +02:00
$el.autocomplete("close");
2025-01-09 18:07:02 +02:00
$el.trigger("autocomplete:noteselected", [suggestion]);
});
2025-01-09 18:07:02 +02:00
$el.on("autocomplete:closed", () => {
if (!String($el.val())?.trim()) {
2019-05-22 20:53:59 +02:00
clearText($el);
}
});
2025-01-09 18:07:02 +02:00
$el.on("autocomplete:opened", () => {
if ($el.attr("readonly")) {
2025-01-09 18:07:02 +02:00
$el.autocomplete("close");
}
});
// clear any event listener added in previous invocation of this function
2025-01-09 18:07:02 +02:00
$el.off("autocomplete:noteselected");
return $el;
}
function init() {
2020-05-16 22:11:09 +02:00
$.fn.getSelectedNotePath = function () {
if (!String($(this).val())?.trim()) {
return "";
} else {
2020-05-16 22:11:09 +02:00
return $(this).attr(SELECTED_NOTE_PATH_KEY);
}
};
2018-11-12 23:34:22 +01:00
2020-08-12 23:39:05 +02:00
$.fn.getSelectedNoteId = function () {
const $el = $(this as unknown as HTMLElement);
const notePath = $el.getSelectedNotePath();
if (!notePath) {
return null;
}
2025-01-09 18:07:02 +02:00
const chunks = notePath.split("/");
2020-08-12 23:39:05 +02:00
return chunks.length >= 1 ? chunks[chunks.length - 1] : null;
2025-01-09 18:07:02 +02:00
};
2020-08-12 23:39:05 +02:00
2020-05-16 22:11:09 +02:00
$.fn.setSelectedNotePath = function (notePath) {
notePath = notePath || "";
2020-05-16 22:11:09 +02:00
$(this).attr(SELECTED_NOTE_PATH_KEY, notePath);
2025-01-09 18:07:02 +02:00
$(this).closest(".input-group").find(".go-to-selected-note-button").toggleClass("disabled", !notePath.trim()).attr("href", `#${notePath}`); // we also set href here so tooltip can be displayed
};
$.fn.getSelectedExternalLink = function () {
if (!String($(this).val())?.trim()) {
return "";
} else {
return $(this).attr(SELECTED_EXTERNAL_LINK_KEY);
}
};
$.fn.setSelectedExternalLink = function (externalLink) {
if (externalLink) {
// TODO: This doesn't seem to do anything with the external link, is it normal?
2025-01-09 18:07:02 +02:00
$(this).closest(".input-group").find(".go-to-selected-note-button").toggleClass("disabled", true);
}
2025-01-09 18:07:02 +02:00
};
2021-01-19 22:10:24 +01:00
$.fn.setNote = async function (noteId) {
2021-04-16 22:57:37 +02:00
const note = noteId ? await froca.getNote(noteId, true) : null;
2021-01-19 22:10:24 +01:00
$(this)
.val(note ? note.title : "")
.setSelectedNotePath(noteId);
2025-01-09 18:07:02 +02:00
};
}
export default {
2020-09-21 22:08:54 +02:00
autocompleteSourceForCKEditor,
initNoteAutocomplete,
showRecentNotes,
setText,
init
2025-01-09 18:07:02 +02:00
};