2020-11-26 23:00:27 +01:00
|
|
|
import noteAutocompleteService from "../services/note_autocomplete.js";
|
|
|
|
import SpacedUpdate from "../services/spaced_update.js";
|
|
|
|
import server from "../services/server.js";
|
|
|
|
import TabAwareWidget from "./tab_aware_widget.js";
|
|
|
|
import treeCache from "../services/tree_cache.js";
|
2021-01-17 21:11:01 +01:00
|
|
|
import ws from "../services/ws.js";
|
2020-11-26 23:00:27 +01:00
|
|
|
|
|
|
|
const TPL = `
|
|
|
|
<div class="search-definition-widget">
|
|
|
|
<style>
|
|
|
|
.note-detail-search {
|
|
|
|
padding: 7px;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-setting-table {
|
2020-12-17 15:19:22 +01:00
|
|
|
margin-top: 7px;
|
|
|
|
margin-bottom: 7px;
|
2020-11-26 23:00:27 +01:00
|
|
|
width: 100%;
|
|
|
|
border-collapse: separate;
|
|
|
|
border-spacing: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attribute-list hr {
|
|
|
|
height: 1px;
|
|
|
|
border-color: var(--main-border-color);
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<div class="search-settings">
|
|
|
|
<table class="search-setting-table">
|
|
|
|
<tr>
|
|
|
|
<td>Search string:</td>
|
2021-01-08 19:57:49 +01:00
|
|
|
<td>
|
2020-11-26 23:00:27 +01:00
|
|
|
<input type="text" class="form-control search-string">
|
|
|
|
</td>
|
2020-12-30 23:09:29 +01:00
|
|
|
<td>
|
|
|
|
<div class="dropdown">
|
2021-01-08 19:57:49 +01:00
|
|
|
<button class="btn btn-secondary dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
2020-12-30 23:09:29 +01:00
|
|
|
?
|
|
|
|
</button>
|
|
|
|
<div class="dropdown-menu dropdown-menu-right p-4" style="width: 500px;">
|
|
|
|
<strong>Search tips</strong> - also see <button class="btn btn-sm" type="button" data-help-page="Search">complete help on search</button>
|
|
|
|
<p>
|
|
|
|
<ul>
|
|
|
|
<li>Just enter any text for full text search</li>
|
|
|
|
<li><code>#abc</code> - returns notes with label abc</li>
|
|
|
|
<li><code>#year = 2019</code> - matches notes with label <code>year</code> having value <code>2019</code></li>
|
|
|
|
<li><code>#rock #pop</code> - matches notes which have both <code>rock</code> and <code>pop</code> labels</li>
|
|
|
|
<li><code>#rock or #pop</code> - only one of the labels must be present</li>
|
|
|
|
<li><code>#year <= 2000</code> - numerical comparison (also >, >=, <).</li>
|
|
|
|
<li><code>note.dateCreated >= MONTH-1</code> - notes created in the last month</li>
|
|
|
|
</ul>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</td>
|
2020-11-26 23:00:27 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-01-08 19:57:49 +01:00
|
|
|
<td>Add search option:</td>
|
2021-01-17 21:11:01 +01:00
|
|
|
<td colspan="2" class="add-search-option">
|
|
|
|
<button type="button" class="btn btn-sm" data-search-option-add="descendantOf">
|
2021-01-08 19:57:49 +01:00
|
|
|
<span class="bx bx-filter-alt"></span>
|
|
|
|
descendant of
|
|
|
|
</button>
|
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
<button type="button" class="btn btn-sm" data-search-option-add="fastSearch"
|
2021-01-08 19:57:49 +01:00
|
|
|
title="Fast search option disables full text search of note contents which might speed up searching in large databases.">
|
|
|
|
<span class="bx bx-run"></span>
|
|
|
|
fast search
|
|
|
|
</button>
|
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
<button type="button" class="btn btn-sm" data-search-option-add="includeArchivedNotes"
|
2021-01-08 19:57:49 +01:00
|
|
|
title="Archived notes are by default excluded from search results, with this option they will be included.">
|
|
|
|
<span class="bx bx-archive"></span>
|
|
|
|
include archived
|
|
|
|
</button>
|
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
<button type="button" class="btn btn-sm" data-search-option-add="orderBy">
|
2021-01-08 19:57:49 +01:00
|
|
|
<span class="bx bx-arrow-from-top"></span>
|
|
|
|
order by
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div class="dropdown" style="display: inline-block;">
|
2021-01-17 23:01:01 +01:00
|
|
|
<button class="btn btn-sm dropdown-toggle action-add-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
2021-01-08 19:57:49 +01:00
|
|
|
<span class="bx bxs-zap"></span>
|
|
|
|
action
|
|
|
|
</button>
|
2021-01-17 23:01:01 +01:00
|
|
|
<div class="dropdown-menu">
|
|
|
|
<a class="dropdown-item" href="#" data-action-add="deleteNote">
|
|
|
|
Delete note</a>
|
|
|
|
<a class="dropdown-item" href="#" data-action-add="deleteAttribute">
|
|
|
|
Delete attribute</a>
|
|
|
|
<a class="dropdown-item" href="#" data-action-add="renameAttribute">
|
|
|
|
Rename attribute</a>
|
|
|
|
<a class="dropdown-item" href="#" data-action-add="changeLabelValue">
|
|
|
|
Change label value</a>
|
|
|
|
<a class="dropdown-item" href="#" data-action-add="changeRelationTarget">
|
|
|
|
Change relation target</a>
|
|
|
|
<a class="dropdown-item" href="#" data-action-add="executeScript">
|
|
|
|
Execute script</a>
|
2021-01-08 19:57:49 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tbody class="search-options">
|
2021-01-17 21:11:01 +01:00
|
|
|
<tr data-search-option-conf="descendantOf">
|
2021-01-08 19:57:49 +01:00
|
|
|
<td title="Matched notes must be within subtree of given note.">
|
|
|
|
Descendant of: </td>
|
|
|
|
<td>
|
|
|
|
<div class="input-group">
|
2021-01-17 21:11:01 +01:00
|
|
|
<input class="descendant-of form-control" placeholder="search for note by its name">
|
2021-01-08 19:57:49 +01:00
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
2021-01-17 21:11:01 +01:00
|
|
|
<span class="bx bx-x icon-action" data-search-option-del="descendantOf"></span>
|
2021-01-08 19:57:49 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
2021-01-17 21:11:01 +01:00
|
|
|
<tr data-search-option-conf="fastSearch">
|
2021-01-08 19:57:49 +01:00
|
|
|
<td colspan="2">
|
|
|
|
<span class="bx bx-run"></span>
|
|
|
|
|
|
|
|
Fast search
|
|
|
|
</td>
|
|
|
|
<td>
|
2021-01-17 21:11:01 +01:00
|
|
|
<span class="bx bx-x icon-action" data-search-option-del="fastSearch"></span>
|
2021-01-08 19:57:49 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
2021-01-17 21:11:01 +01:00
|
|
|
<tr data-search-option-conf="includeArchivedNotes">
|
2021-01-08 19:57:49 +01:00
|
|
|
<td colspan="2">
|
|
|
|
<span class="bx bx-archive"></span>
|
|
|
|
|
|
|
|
Include archived notes
|
|
|
|
</td>
|
|
|
|
<td>
|
2021-01-17 21:11:01 +01:00
|
|
|
<span class="bx bx-x icon-action" data-search-option-del="includeArchivedNotes"></span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr data-search-option-conf="orderBy">
|
|
|
|
<td>
|
|
|
|
<span class="bx bx-arrow-from-top"></span>
|
|
|
|
|
|
|
|
Order by
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<select name="orderBy" class="form-control w-auto d-inline">
|
|
|
|
<option value="relevancy">Relevancy (default)</option>
|
|
|
|
<option value="title">Title</option>
|
|
|
|
<option value="dateCreated">Date created</option>
|
|
|
|
<option value="dateModified">Date of last modification</option>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select name="orderDirection" class="form-control w-auto d-inline">
|
|
|
|
<option value="asc">Ascending (default)</option>
|
|
|
|
<option value="desc">Descending</option>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="bx bx-x icon-action" data-search-option-del="orderBy"></span>
|
2021-01-08 19:57:49 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
2021-01-17 23:01:01 +01:00
|
|
|
<tbody class="action-options">
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
Rename attribute name:
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div style="display: flex; align-items: center">
|
|
|
|
<div style="margin-right: 15px;">From:</div>
|
2021-01-08 19:57:49 +01:00
|
|
|
|
2021-01-17 23:01:01 +01:00
|
|
|
<input type="text" class="form-control" placeholder="old name"/>
|
|
|
|
|
|
|
|
<div style="margin-right: 15px; margin-left: 15px;">To:</div>
|
|
|
|
|
|
|
|
<input type="text" class="form-control" placeholder="new name"/>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="bx bx-x icon-action"></span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="3">
|
|
|
|
<div style="display: flex; justify-content: space-evenly">
|
|
|
|
<button type="button" class="btn btn-sm">
|
|
|
|
<span class="bx bx-search"></span>
|
|
|
|
Search
|
|
|
|
|
|
|
|
<kbd>enter</kbd>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button type="button" class="btn btn-sm">
|
|
|
|
<span class="bx bxs-zap"></span>
|
|
|
|
Search & Execute actions
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
2020-11-26 23:00:27 +01:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>`;
|
|
|
|
|
2021-01-17 23:01:01 +01:00
|
|
|
const ACTION_TPLS = {
|
|
|
|
deleteNote: `
|
|
|
|
<tr>
|
|
|
|
<td colspan="2">
|
|
|
|
<span class="bx bx-trash"></span>
|
|
|
|
|
|
|
|
Delete matched note
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="bx bx-x icon-action" data-action-conf-del></span>
|
|
|
|
</td>
|
|
|
|
</tr>`,
|
|
|
|
deleteAttribute: `
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
Delete attribute:
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div style="display: flex; align-items: center">
|
|
|
|
<div style="margin-right: 15px;">Attribute name:</div>
|
|
|
|
|
|
|
|
<input type="text" class="form-control"/>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="bx bx-x icon-action"></span>
|
|
|
|
</td>
|
|
|
|
</tr>`
|
|
|
|
};
|
|
|
|
|
2020-11-26 23:00:27 +01:00
|
|
|
export default class SearchDefinitionWidget extends TabAwareWidget {
|
|
|
|
static getType() { return "search"; }
|
|
|
|
|
|
|
|
renderTitle(note) {
|
|
|
|
return {
|
|
|
|
show: note.type === 'search',
|
|
|
|
activate: true,
|
|
|
|
$title: 'Search'
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
doRender() {
|
|
|
|
this.$widget = $(TPL);
|
2021-01-17 21:11:01 +01:00
|
|
|
this.$component = this.$widget.find('.search-definition-widget');
|
|
|
|
|
2020-11-26 23:00:27 +01:00
|
|
|
this.contentSized();
|
2020-12-30 23:09:29 +01:00
|
|
|
this.overflowing();
|
2021-01-17 21:11:01 +01:00
|
|
|
|
2020-11-26 23:00:27 +01:00
|
|
|
this.$searchString = this.$widget.find(".search-string");
|
2021-01-17 21:11:01 +01:00
|
|
|
this.$searchString.on('input', () => this.searchStringSU.scheduleUpdate());
|
2020-11-26 23:00:27 +01:00
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
this.searchStringSU = new SpacedUpdate(async () => {
|
|
|
|
const searchString = this.$searchString.val();
|
|
|
|
|
|
|
|
await this.setAttribute('label', 'searchString', searchString);
|
|
|
|
|
|
|
|
if (this.note.title.startsWith('Search: ')) {
|
|
|
|
await server.put(`notes/${this.noteId}/change-title`, {
|
|
|
|
title: 'Search: ' + (searchString.length < 30 ? searchString : `${searchString.substr(0, 30)}…`)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, 1000);
|
|
|
|
|
|
|
|
this.$descendantOf = this.$widget.find('.descendant-of');
|
|
|
|
noteAutocompleteService.initNoteAutocomplete(this.$descendantOf);
|
|
|
|
|
|
|
|
this.$descendantOf.on('autocomplete:closed', async () => {
|
|
|
|
const descendantOfNoteId = this.$descendantOf.getSelectedNoteId();
|
|
|
|
|
|
|
|
await this.setAttribute('relation', 'descendantOf', descendantOfNoteId);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$widget.on('click', '[data-search-option-add]', async event => {
|
|
|
|
const searchOption = $(event.target).attr('data-search-option-add');
|
|
|
|
|
|
|
|
if (searchOption === 'fastSearch') {
|
|
|
|
await this.setAttribute('label', 'fastSearch');
|
|
|
|
}
|
|
|
|
else if (searchOption === 'orderBy') {
|
|
|
|
await this.setAttribute('label', 'orderBy', 'relevancy');
|
|
|
|
await this.setAttribute('label', 'orderDirection', 'asc');
|
|
|
|
}
|
|
|
|
else if (searchOption === 'includeArchivedNotes') {
|
|
|
|
await this.setAttribute('label', 'includeArchivedNotes');
|
|
|
|
}
|
|
|
|
else if (searchOption === 'descendantOf') {
|
|
|
|
await this.setAttribute('relation', 'descendantOf', 'root');
|
|
|
|
}
|
|
|
|
|
|
|
|
this.refresh();
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$widget.on('click', '[data-search-option-del]', async event => {
|
|
|
|
async function deleteAttr(note, attrName) {
|
|
|
|
for (const attr of note.getOwnedAttributes()) {
|
|
|
|
if (attr.name === attrName) {
|
|
|
|
await server.remove(`notes/${note.noteId}/attributes/${attr.attributeId}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const searchOption = $(event.target).attr('data-search-option-del');
|
|
|
|
|
|
|
|
await deleteAttr(this.note, searchOption);
|
|
|
|
|
|
|
|
if (searchOption === 'orderBy') {
|
|
|
|
await deleteAttr(this.note, 'orderDirection');
|
|
|
|
}
|
|
|
|
|
|
|
|
await ws.waitForMaxKnownEntityChangeId();
|
2020-11-26 23:00:27 +01:00
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
this.refresh();
|
|
|
|
});
|
2020-11-26 23:00:27 +01:00
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
this.$orderBy = this.$widget.find('select[name=orderBy]');
|
|
|
|
this.$orderBy.on('change', async () => {
|
|
|
|
const orderBy = this.$orderBy.val();
|
2020-11-26 23:00:27 +01:00
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
await this.setAttribute('label', 'orderBy', orderBy);
|
2020-11-26 23:00:27 +01:00
|
|
|
});
|
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
this.$orderDirection = this.$widget.find('select[name=orderDirection]');
|
|
|
|
this.$orderDirection.on('change', async () => {
|
|
|
|
const orderDirection = this.$orderDirection.val();
|
|
|
|
|
|
|
|
await this.setAttribute('label', 'orderDirection', orderDirection);
|
2020-11-26 23:00:27 +01:00
|
|
|
});
|
2021-01-17 23:01:01 +01:00
|
|
|
|
|
|
|
this.$actionOptions = this.$widget.find('.action-options');
|
|
|
|
|
|
|
|
this.$widget.on('click', '[data-action-add]', async event => {
|
|
|
|
const actionName = $(event.target).attr('data-action-add');
|
|
|
|
|
|
|
|
await server.post(`notes/${this.noteId}/attributes`, {
|
|
|
|
type: 'label',
|
|
|
|
name: 'action',
|
|
|
|
value: JSON.stringify({
|
|
|
|
name: actionName
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$widget.find('.action-add-toggle').dropdown('toggle');
|
|
|
|
|
|
|
|
await ws.waitForMaxKnownEntityChangeId();
|
|
|
|
|
|
|
|
this.refresh();
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$widget.on('click', '[data-action-conf-del]', async event => {
|
|
|
|
const attributeId = $(event.target).closest('[data-attribute-id]').attr('data-attribute-id');
|
|
|
|
|
|
|
|
await server.remove(`notes/${this.noteId}/attributes/${attributeId}`);
|
|
|
|
|
|
|
|
await ws.waitForMaxKnownEntityChangeId();
|
|
|
|
|
|
|
|
this.refresh();
|
|
|
|
});
|
2020-11-26 23:00:27 +01:00
|
|
|
}
|
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
async setAttribute(type, name, value = '') {
|
2021-01-17 23:01:01 +01:00
|
|
|
await server.put(`notes/${this.noteId}/set-attribute`, { type, name, value });
|
2020-12-04 22:57:54 +01:00
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
await ws.waitForMaxKnownEntityChangeId();
|
2020-12-04 22:57:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async refreshResults() {
|
2020-11-26 23:00:27 +01:00
|
|
|
await treeCache.reloadNotes([this.noteId]);
|
|
|
|
}
|
|
|
|
|
2020-11-30 23:20:12 +01:00
|
|
|
async refreshWithNote(note) {
|
2020-11-26 23:00:27 +01:00
|
|
|
this.$component.show();
|
|
|
|
this.$searchString.val(this.note.getLabelValue('searchString'));
|
2020-12-05 23:00:28 +01:00
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
for (const attrName of ['includeArchivedNotes', 'descendantOf', 'fastSearch', 'orderBy']) {
|
|
|
|
const has = note.hasLabel(attrName) || note.hasRelation(attrName);
|
|
|
|
|
|
|
|
this.$widget.find(`[data-search-option-add='${attrName}'`).toggle(!has);
|
|
|
|
this.$widget.find(`[data-search-option-conf='${attrName}'`).toggle(has);
|
|
|
|
}
|
|
|
|
|
|
|
|
const descendantOfNoteId = this.note.getRelationValue('descendantOf');
|
|
|
|
const descendantOfNote = descendantOfNoteId ? await treeCache.getNote(descendantOfNoteId, true) : null;
|
|
|
|
|
|
|
|
this.$descendantOf
|
|
|
|
.val(descendantOfNote ? descendantOfNote.title : "")
|
|
|
|
.setSelectedNotePath(descendantOfNoteId);
|
2020-12-05 23:00:28 +01:00
|
|
|
|
2021-01-17 21:11:01 +01:00
|
|
|
if (note.hasLabel('orderBy')) {
|
|
|
|
this.$orderBy.val(note.getLabelValue('orderBy'));
|
|
|
|
this.$orderDirection.val(note.getLabelValue('orderDirection') || 'asc');
|
|
|
|
}
|
2020-12-04 22:57:54 +01:00
|
|
|
|
2021-01-17 23:01:01 +01:00
|
|
|
this.$actionOptions.empty();
|
|
|
|
|
|
|
|
for (const actionAttr of this.note.getLabels('action')) {
|
|
|
|
let actionDef;
|
|
|
|
|
|
|
|
try {
|
|
|
|
actionDef = JSON.parse(actionAttr.value);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
console.log(`Parsing of attribute: '${actionAttr.value}' failed with error: ${e.message}`);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const $actionConf = $(ACTION_TPLS[actionDef.name]);
|
|
|
|
$actionConf.attr('data-attribute-id', actionAttr.attributeId);
|
|
|
|
|
|
|
|
this.$actionOptions.append($actionConf);
|
|
|
|
}
|
|
|
|
|
2020-12-04 22:57:54 +01:00
|
|
|
this.refreshResults(); // important specifically when this search note was not yet refreshed
|
|
|
|
}
|
|
|
|
|
|
|
|
focusOnSearchDefinitionEvent() {
|
|
|
|
this.$searchString.focus();
|
2020-11-26 23:00:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
getContent() {
|
2021-01-08 19:57:49 +01:00
|
|
|
return '';
|
2020-11-26 23:00:27 +01:00
|
|
|
}
|
|
|
|
}
|