mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
236 lines
7.7 KiB
JavaScript
236 lines
7.7 KiB
JavaScript
/**
|
|
* (c) Antonio Tejada 2022
|
|
* https://github.com/antoniotejada/Trilium-FindWidget
|
|
*/
|
|
|
|
import NoteContextAwareWidget from "./note_context_aware_widget.js";
|
|
import FindInText from "./find_in_text.js";
|
|
import FindInCode from "./find_in_code.js";
|
|
|
|
const findWidgetDelayMillis = 200;
|
|
const waitForEnter = (findWidgetDelayMillis < 0);
|
|
|
|
// tabIndex=-1 on the checkbox labels is necessary so when clicking on the label
|
|
// the focusout handler is called with relatedTarget equal to the label instead
|
|
// of undefined. It's -1 instead of > 0, so they don't tabstop
|
|
const TPL = `
|
|
<div style="contain: none;">
|
|
<style>
|
|
.find-widget-box {
|
|
padding: 10px;
|
|
border-top: 1px solid var(--main-border-color);
|
|
align-items: center;
|
|
}
|
|
|
|
.find-widget-box > * {
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.find-widget-box {
|
|
display: flex;
|
|
}
|
|
|
|
.find-widget-found-wrapper {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.find-widget-search-term-input {
|
|
max-width: 250px;
|
|
}
|
|
|
|
.find-widget-spacer {
|
|
flex-grow: 1;
|
|
}
|
|
</style>
|
|
|
|
<div class="find-widget-box">
|
|
<input type="text" class="form-control find-widget-search-term-input">
|
|
|
|
<div class="form-check">
|
|
<label tabIndex="-1" class="form-check-label">
|
|
<input type="checkbox" class="form-check-input find-widget-case-sensitive-checkbox">
|
|
case sensitive
|
|
</label>
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
<label tabIndex="-1" class="form-check-label">
|
|
<input type="checkbox" class="form-check-input find-widget-match-words-checkbox">
|
|
match words
|
|
</label>
|
|
</div>
|
|
|
|
<div class="find-widget-found-wrapper">
|
|
<span class="find-widget-current-found">0</span>
|
|
/
|
|
<span class="find-widget-total-found">0</span>
|
|
</div>
|
|
|
|
<div class="find-widget-spacer"></div>
|
|
|
|
<div class="find-widget-close-button"><button class="btn icon-action bx bx-x"></button></div>
|
|
</div>
|
|
</div>`;
|
|
|
|
export default class FindWidget extends NoteContextAwareWidget {
|
|
constructor() {
|
|
super();
|
|
|
|
this.searchTerm = null;
|
|
|
|
this.textHandler = new FindInText(this);
|
|
this.codeHandler = new FindInCode(this);
|
|
}
|
|
|
|
doRender() {
|
|
this.$widget = $(TPL);
|
|
this.$findBox = this.$widget.find('.find-widget-box');
|
|
this.$findBox.hide();
|
|
this.$input = this.$widget.find('.find-widget-search-term-input');
|
|
this.$currentFound = this.$widget.find('.find-widget-current-found');
|
|
this.$totalFound = this.$widget.find('.find-widget-total-found');
|
|
this.$caseSensitiveCheckbox = this.$widget.find(".find-widget-case-sensitive-checkbox");
|
|
this.$caseSensitiveCheckbox.change(() => this.performFind());
|
|
this.$matchWordsCheckbox = this.$widget.find(".find-widget-match-words-checkbox");
|
|
this.$matchWordsCheckbox.change(() => this.performFind());
|
|
this.$closeButton = this.$widget.find(".find-widget-close-button");
|
|
this.$closeButton.on("click", () => this.closeSearch());
|
|
|
|
this.$input.keydown(async e => {
|
|
if ((e.metaKey || e.ctrlKey) && (e.key === 'F' || e.key === 'f')) {
|
|
// If ctrl+f is pressed when the findbox is shown, select the
|
|
// whole input to find
|
|
this.$input.select();
|
|
} else if (e.key === 'Enter' || e.key === 'F3') {
|
|
await this.findNext(e);
|
|
e.preventDefault();
|
|
return false;
|
|
} else if (e.key === 'Escape') {
|
|
await this.closeSearch();
|
|
}
|
|
});
|
|
|
|
this.$input.on('input', () => this.startSearch());
|
|
|
|
return this.$widget;
|
|
}
|
|
|
|
startSearch() {
|
|
// XXX This should clear the previous search immediately in all cases
|
|
// (the search is stale when waitforenter but also while the
|
|
// delay is running for non waitforenter case)
|
|
if (!waitForEnter) {
|
|
// Clear the previous timeout if any, it's ok if timeoutId is
|
|
// null or undefined
|
|
clearTimeout(this.timeoutId);
|
|
|
|
// Defer the search a few millis so the search doesn't start
|
|
// immediately, as this can cause search word typing lag with
|
|
// one or two-char searchwords and long notes
|
|
// See https://github.com/antoniotejada/Trilium-FindWidget/issues/1
|
|
this.timeoutId = setTimeout(async () => {
|
|
this.timeoutId = null;
|
|
await this.performFind();
|
|
}, findWidgetDelayMillis);
|
|
}
|
|
}
|
|
|
|
async findNext(e) {
|
|
const searchTerm = this.$input.val();
|
|
if (waitForEnter && this.searchTerm !== searchTerm) {
|
|
await this.performFind();
|
|
}
|
|
const totalFound = parseInt(this.$totalFound.text());
|
|
const currentFound = parseInt(this.$currentFound.text()) - 1;
|
|
|
|
if (totalFound > 0) {
|
|
const direction = e.shiftKey ? -1 : 1;
|
|
let nextFound = currentFound + direction;
|
|
// Wrap around
|
|
if (nextFound > totalFound - 1) {
|
|
nextFound = 0;
|
|
} else if (nextFound < 0) {
|
|
nextFound = totalFound - 1;
|
|
}
|
|
|
|
this.$currentFound.text(nextFound + 1);
|
|
|
|
await this.handler.findNext(direction, currentFound, nextFound);
|
|
}
|
|
}
|
|
|
|
async findInTextEvent() {
|
|
if (!this.isActiveNoteContext()) {
|
|
return;
|
|
}
|
|
|
|
// Only writeable text and code supported
|
|
const readOnly = await this.noteContext.isReadOnly();
|
|
|
|
if (readOnly || !['text', 'code'].includes(this.note.type) || !this.$findBox.is(":hidden")) {
|
|
return;
|
|
}
|
|
|
|
this.$findBox.show();
|
|
this.$input.focus();
|
|
this.$totalFound.text(0);
|
|
this.$currentFound.text(0);
|
|
|
|
const searchTerm = await this.handler.getInitialSearchTerm();
|
|
|
|
this.$input.val(searchTerm || "");
|
|
|
|
// Directly perform the search if there's some text to
|
|
// find, without delaying or waiting for enter
|
|
if (searchTerm !== "") {
|
|
this.$input.select();
|
|
await this.performFind();
|
|
}
|
|
}
|
|
|
|
/** Perform the find and highlight the find results. */
|
|
async performFind() {
|
|
const searchTerm = this.$input.val();
|
|
const matchCase = this.$caseSensitiveCheckbox.prop("checked");
|
|
const wholeWord = this.$matchWordsCheckbox.prop("checked");
|
|
|
|
const {totalFound, currentFound} = await this.handler.performFind(searchTerm, matchCase, wholeWord);
|
|
|
|
this.$totalFound.text(totalFound);
|
|
this.$currentFound.text(currentFound);
|
|
|
|
this.searchTerm = searchTerm;
|
|
}
|
|
|
|
async closeSearch() {
|
|
this.$findBox.hide();
|
|
|
|
// Restore any state, if there's a current occurrence clear markers
|
|
// and scroll to and select the last occurrence
|
|
const totalFound = parseInt(this.$totalFound.text());
|
|
const currentFound = parseInt(this.$currentFound.text()) - 1;
|
|
|
|
if (totalFound > 0) {
|
|
await this.handler.cleanup(totalFound, currentFound);
|
|
}
|
|
|
|
this.searchTerm = null;
|
|
}
|
|
|
|
async entitiesReloadedEvent({loadResults}) {
|
|
if (loadResults.isNoteContentReloaded(this.noteId)) {
|
|
this.refresh();
|
|
}
|
|
}
|
|
|
|
isEnabled() {
|
|
return super.isEnabled() && ['text', 'code'].includes(this.note.type);
|
|
}
|
|
|
|
get handler() {
|
|
return this.note.type === "code"
|
|
? this.codeHandler
|
|
: this.textHandler;
|
|
}
|
|
}
|