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";
|
|
|
|
|
|
|
|
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>
|
|
|
|
<td colspan="2">
|
|
|
|
<button type="button" class="btn btn-sm search-option-descendantOf">
|
|
|
|
<span class="bx bx-filter-alt"></span>
|
|
|
|
descendant of
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button type="button" class="btn btn-sm search-option-fastSearch"
|
|
|
|
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>
|
|
|
|
|
|
|
|
<button type="button" class="btn btn-sm search-option-includeArchivedNotes"
|
|
|
|
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>
|
|
|
|
|
|
|
|
<button type="button" class="btn btn-sm search-option-orderBy">
|
|
|
|
<span class="bx bx-arrow-from-top"></span>
|
|
|
|
order by
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div class="dropdown" style="display: inline-block;">
|
|
|
|
<button class="btn btn-sm dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
|
|
<span class="bx bxs-zap"></span>
|
|
|
|
action
|
|
|
|
</button>
|
|
|
|
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
|
|
|
<a class="dropdown-item" href="#">Delete note</a>
|
|
|
|
<a class="dropdown-item" href="#">Delete attribute</a>
|
|
|
|
<a class="dropdown-item" href="#">Rename attribute</a>
|
|
|
|
<a class="dropdown-item" href="#">Change label value</a>
|
|
|
|
<a class="dropdown-item" href="#">Change relation target</a>
|
|
|
|
<a class="dropdown-item" href="#">Execute script</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tbody class="search-options">
|
|
|
|
<tr class="search-option-descendantOf">
|
|
|
|
<td title="Matched notes must be within subtree of given note.">
|
|
|
|
Descendant of: </td>
|
|
|
|
<td>
|
|
|
|
<div class="input-group">
|
|
|
|
<input class="limit-search-to-subtree form-control" placeholder="search for note by its name">
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="bx bx-x icon-action"></span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="search-option-fastSearch">
|
|
|
|
<td colspan="2">
|
|
|
|
<span class="bx bx-run"></span>
|
|
|
|
|
|
|
|
Fast search
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="bx bx-x icon-action"></span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="search-option-includeArchivedNotes">
|
|
|
|
<td colspan="2">
|
|
|
|
<span class="bx bx-archive"></span>
|
|
|
|
|
|
|
|
Include archived notes
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="bx bx-x icon-action"></span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2">
|
|
|
|
<span class="bx bx-trash"></span>
|
|
|
|
|
|
|
|
Delete matched note
|
|
|
|
</td>
|
2020-11-26 23:00:27 +01:00
|
|
|
<td>
|
2021-01-08 19:57:49 +01:00
|
|
|
<span class="bx bx-x icon-action"></span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
Rename attribute name:
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div style="display: flex; align-items: center">
|
|
|
|
<div style="margin-right: 15px;">From:</div>
|
|
|
|
|
|
|
|
<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"/>
|
2020-11-26 23:00:27 +01:00
|
|
|
</div>
|
|
|
|
</td>
|
2021-01-08 19:57:49 +01:00
|
|
|
<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>
|
2020-11-26 23:00:27 +01:00
|
|
|
|
2021-01-08 19:57:49 +01:00
|
|
|
<button type="button" class="btn btn-sm">
|
|
|
|
<span class="bx bxs-zap"></span>
|
|
|
|
Search & Execute actions
|
|
|
|
</button>
|
|
|
|
</div>
|
2020-11-26 23:00:27 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>`;
|
|
|
|
|
|
|
|
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);
|
|
|
|
this.contentSized();
|
2020-12-30 23:09:29 +01:00
|
|
|
this.overflowing();
|
2020-11-26 23:00:27 +01:00
|
|
|
this.$searchString = this.$widget.find(".search-string");
|
|
|
|
this.$searchString.on('input', () => this.spacedUpdate.scheduleUpdate());
|
|
|
|
|
|
|
|
this.$component = this.$widget.find('.search-definition-widget');
|
|
|
|
|
|
|
|
this.spacedUpdate = new SpacedUpdate(() => this.updateSearch(), 2000);
|
|
|
|
|
|
|
|
this.$limitSearchToSubtree = this.$widget.find('.limit-search-to-subtree');
|
|
|
|
noteAutocompleteService.initNoteAutocomplete(this.$limitSearchToSubtree);
|
|
|
|
|
|
|
|
this.$limitSearchToSubtree.on('autocomplete:closed', e => {
|
|
|
|
this.spacedUpdate.scheduleUpdate();
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$searchWithinNoteContent = this.$widget.find('.search-within-note-content');
|
|
|
|
this.$searchWithinNoteContent.on('change', () => {
|
|
|
|
this.spacedUpdate.scheduleUpdate();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async updateSearch() {
|
|
|
|
const searchString = this.$searchString.val();
|
2020-12-05 23:00:28 +01:00
|
|
|
const subTreeNoteId = this.$limitSearchToSubtree.getSelectedNoteId();
|
2020-11-26 23:00:27 +01:00
|
|
|
const includeNoteContent = this.$searchWithinNoteContent.is(":checked");
|
|
|
|
|
|
|
|
await server.put(`notes/${this.noteId}/attributes`, [
|
|
|
|
{ type: 'label', name: 'searchString', value: searchString },
|
|
|
|
{ type: 'label', name: 'includeNoteContent', value: includeNoteContent ? 'true' : 'false' },
|
2020-12-05 23:00:28 +01:00
|
|
|
subTreeNoteId ? { type: 'label', name: 'subTreeNoteId', value: subTreeNoteId } : undefined,
|
2020-11-26 23:00:27 +01:00
|
|
|
].filter(it => !!it));
|
|
|
|
|
2020-12-04 22:57:54 +01:00
|
|
|
if (this.note.title.startsWith('Search: ')) {
|
|
|
|
await server.put(`notes/${this.noteId}/change-title`, {
|
|
|
|
title: 'Search: ' + (searchString.length < 30 ? searchString : `${searchString.substr(0, 30)}…`)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.refreshResults();
|
|
|
|
}
|
|
|
|
|
|
|
|
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'));
|
|
|
|
this.$searchWithinNoteContent.prop('checked', this.note.getLabelValue('includeNoteContent') === 'true');
|
2020-12-05 23:00:28 +01:00
|
|
|
|
|
|
|
const subTreeNoteId = this.note.getLabelValue('subTreeNoteId');
|
|
|
|
const subTreeNote = subTreeNoteId ? await treeCache.getNote(subTreeNoteId, true) : null;
|
|
|
|
|
|
|
|
this.$limitSearchToSubtree
|
|
|
|
.val(subTreeNote ? subTreeNote.title : "")
|
|
|
|
.setSelectedNotePath(subTreeNoteId);
|
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
|
|
|
}
|
|
|
|
}
|