trilium/src/services/autocomplete.js

249 lines
7 KiB
JavaScript
Raw Normal View History

2018-04-18 12:26:42 +08:00
const sql = require('./sql');
const sqlInit = require('./sql_init');
const eventService = require('./events');
const repository = require('./repository');
const protectedSessionService = require('./protected_session');
const utils = require('./utils');
2018-04-18 12:26:42 +08:00
let noteTitles;
let protectedNoteTitles;
2018-04-18 12:26:42 +08:00
let noteIds;
const childToParent = {};
const hideInAutocomplete = {};
2018-04-18 12:26:42 +08:00
2018-04-20 08:59:44 +08:00
// key is 'childNoteId-parentNoteId' as a replacement for branchId which we don't use here
let prefixes = {};
2018-04-18 12:26:42 +08:00
async function load() {
noteTitles = await sql.getMap(`SELECT noteId, title FROM notes WHERE isDeleted = 0 AND isProtected = 0`);
2018-04-18 12:26:42 +08:00
noteIds = Object.keys(noteTitles);
prefixes = await sql.getMap(`SELECT noteId || '-' || parentNoteId, prefix FROM branches WHERE prefix IS NOT NULL AND prefix != ''`);
2018-04-20 08:59:44 +08:00
2018-04-18 12:26:42 +08:00
const relations = await sql.getRows(`SELECT noteId, parentNoteId FROM branches WHERE isDeleted = 0`);
for (const rel of relations) {
childToParent[rel.noteId] = childToParent[rel.noteId] || [];
childToParent[rel.noteId].push(rel.parentNoteId);
}
const hiddenLabels = await sql.getColumn(`SELECT noteId FROM labels WHERE isDeleted = 0 AND name = 'hideInAutocomplete'`);
for (const noteId of hiddenLabels) {
hideInAutocomplete[noteId] = true;
}
2018-04-18 12:26:42 +08:00
}
function getResults(query) {
if (!noteTitles || query.length <= 2) {
return [];
}
const tokens = query.toLowerCase().split(" ");
const results = [];
let noteIds = Object.keys(noteTitles);
if (protectedSessionService.isProtectedSessionAvailable()) {
noteIds = noteIds.concat(Object.keys(protectedNoteTitles));
}
for (const noteId of noteIds) {
if (hideInAutocomplete[noteId]) {
continue;
}
2018-04-20 08:59:44 +08:00
const parents = childToParent[noteId];
if (!parents) {
continue;
}
2018-04-18 12:26:42 +08:00
2018-04-20 08:59:44 +08:00
for (const parentNoteId of parents) {
const title = getNoteTitle(noteId, parentNoteId).toLowerCase();
2018-04-20 08:59:44 +08:00
const foundTokens = [];
for (const token of tokens) {
if (title.includes(token)) {
foundTokens.push(token);
}
2018-04-18 12:26:42 +08:00
}
2018-04-20 08:59:44 +08:00
if (foundTokens.length > 0) {
const remainingTokens = tokens.filter(token => !foundTokens.includes(token));
2018-04-18 12:26:42 +08:00
2018-04-20 08:59:44 +08:00
search(parentNoteId, remainingTokens, [noteId], results);
}
2018-04-18 12:26:42 +08:00
}
}
results.sort((a, b) => a.title < b.title ? -1 : 1);
2018-04-18 12:26:42 +08:00
return results;
}
2018-04-20 08:59:44 +08:00
function search(noteId, tokens, path, results) {
if (tokens.length === 0) {
2018-04-20 08:59:44 +08:00
const retPath = getSomePath(noteId, path);
2018-04-18 12:26:42 +08:00
if (retPath) {
const noteTitle = getNoteTitleForPath(retPath);
2018-04-18 12:26:42 +08:00
results.push({
title: noteTitle,
path: retPath.join('/')
});
}
return;
}
2018-04-20 08:59:44 +08:00
const parents = childToParent[noteId];
if (!parents) {
return;
}
for (const parentNoteId of parents) {
if (results.length >= 200) {
return;
}
2018-04-20 08:59:44 +08:00
if (parentNoteId === 'root' || hideInAutocomplete[parentNoteId]) {
2018-04-18 12:26:42 +08:00
continue;
}
const title = getNoteTitle(noteId, parentNoteId);
2018-04-18 12:26:42 +08:00
const foundTokens = [];
for (const token of tokens) {
if (title.includes(token)) {
foundTokens.push(token);
}
}
if (foundTokens.length > 0) {
const remainingTokens = tokens.filter(token => !foundTokens.includes(token));
2018-04-20 08:59:44 +08:00
search(parentNoteId, remainingTokens, path.concat([noteId]), results);
2018-04-18 12:26:42 +08:00
}
else {
2018-04-20 08:59:44 +08:00
search(parentNoteId, tokens, path.concat([noteId]), results);
2018-04-18 12:26:42 +08:00
}
}
}
function getNoteTitle(noteId, parentNoteId) {
const prefix = prefixes[noteId + '-' + parentNoteId];
let title = noteTitles[noteId];
if (!title) {
if (protectedSessionService.isProtectedSessionAvailable()) {
title = protectedNoteTitles[noteId];
}
else {
title = '[protected]';
}
}
return (prefix ? (prefix + ' - ') : '') + title;
}
function getNoteTitleForPath(path) {
2018-04-20 08:59:44 +08:00
const titles = [];
2018-04-18 12:26:42 +08:00
2018-04-20 08:59:44 +08:00
let parentNoteId = 'root';
2018-04-18 12:26:42 +08:00
2018-04-20 08:59:44 +08:00
for (const noteId of path) {
const title = getNoteTitle(noteId, parentNoteId);
2018-04-20 08:59:44 +08:00
titles.push(title);
parentNoteId = noteId;
}
2018-04-20 08:59:44 +08:00
return titles.join(' / ');
}
2018-04-20 08:59:44 +08:00
function getSomePath(noteId, path) {
if (noteId === 'root') {
path.reverse();
2018-04-20 08:59:44 +08:00
return path;
}
2018-04-20 08:59:44 +08:00
const parents = childToParent[noteId];
if (!parents || parents.length === 0) {
return false;
}
for (const parentNoteId of parents) {
const retPath = getSomePath(parentNoteId, path.concat([noteId]));
if (retPath) {
return retPath;
}
}
return false;
}
eventService.subscribe(eventService.ENTITY_CHANGED, async ({entityName, entityId}) => {
if (entityName === 'notes') {
const note = await repository.getNote(entityId);
if (note.isDeleted) {
delete noteTitles[note.noteId];
delete childToParent[note.noteId];
}
else {
noteTitles[note.noteId] = note.title;
}
}
2018-04-20 08:59:44 +08:00
else if (entityName === 'branches') {
const branch = await repository.getBranch(entityId);
if (childToParent[branch.noteId]) {
childToParent[branch.noteId] = childToParent[branch.noteId].filter(noteId => noteId !== branch.parentNoteId)
}
if (branch.isDeleted) {
delete prefixes[branch.noteId + '-' + branch.parentNoteId];
}
else {
if (branch.prefix) {
prefixes[branch.noteId + '-' + branch.parentNoteId] = branch.prefix;
}
childToParent[branch.noteId] = childToParent[branch.noteId] || [];
childToParent[branch.noteId].push(branch.parentNoteId);
}
}
else if (entityName === 'labels') {
const label = await repository.getLabel(entityId);
if (label.name === 'hideInAutocomplete') {
// we're not using label object directly, since there might be other non-deleted hideInAutocomplete label
const hideLabel = await repository.getEntity(`SELECT * FROM labels WHERE isDeleted = 0
AND name = 'hideInAutocomplete' AND noteId = ?`, [label.noteId]);
if (hideLabel) {
hideInAutocomplete[label.noteId] = true;
}
else {
delete hideInAutocomplete[label.noteId];
}
}
}
});
eventService.subscribe(eventService.ENTER_PROTECTED_SESSION, async () => {
protectedNoteTitles = await sql.getMap(`SELECT noteId, title FROM notes WHERE isDeleted = 0 AND isProtected = 1`);
for (const noteId in protectedNoteTitles) {
protectedNoteTitles[noteId] = protectedSessionService.decryptNoteTitle(noteId, protectedNoteTitles[noteId]);
}
});
sqlInit.dbReady.then(() => utils.stopWatch("Autocomplete load", load));
2018-04-18 12:26:42 +08:00
module.exports = {
getResults
};