mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
find widget improvements
This commit is contained in:
parent
fca0b82610
commit
4978a3ff1a
@ -162,10 +162,10 @@ export default class DesktopLayout {
|
|||||||
.child(new SearchResultWidget())
|
.child(new SearchResultWidget())
|
||||||
.child(new SqlResultWidget())
|
.child(new SqlResultWidget())
|
||||||
)
|
)
|
||||||
|
.child(new FindWidget())
|
||||||
.child(...this.customWidgets.get('node-detail-pane'))
|
.child(...this.customWidgets.get('node-detail-pane'))
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.child(new FindWidget())
|
|
||||||
.child(...this.customWidgets.get('center-pane'))
|
.child(...this.customWidgets.get('center-pane'))
|
||||||
)
|
)
|
||||||
.child(new RightPaneContainer()
|
.child(new RightPaneContainer()
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import NoteContextAwareWidget from "./note_context_aware_widget.js";
|
import NoteContextAwareWidget from "./note_context_aware_widget.js";
|
||||||
import appContext from "../services/app_context.js";
|
|
||||||
import FindInText from "./find_in_text.js";
|
import FindInText from "./find_in_text.js";
|
||||||
import FindInCode from "./find_in_code.js";
|
import FindInCode from "./find_in_code.js";
|
||||||
|
|
||||||
@ -34,10 +33,18 @@ const TPL = `
|
|||||||
.find-widget-found-wrapper {
|
.find-widget-found-wrapper {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.find-widget-search-term-input {
|
||||||
|
max-width: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.find-widget-spacer {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<div class="find-widget-box">
|
<div class="find-widget-box">
|
||||||
<input type="text" class="font-control find-widget-search-term-input">
|
<input type="text" class="form-control find-widget-search-term-input">
|
||||||
|
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<label tabIndex="-1" class="form-check-label">
|
<label tabIndex="-1" class="form-check-label">
|
||||||
@ -58,6 +65,10 @@ const TPL = `
|
|||||||
/
|
/
|
||||||
<span class="find-widget-total-found">0</span>
|
<span class="find-widget-total-found">0</span>
|
||||||
</div>
|
</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>
|
||||||
</div>`;
|
</div>`;
|
||||||
|
|
||||||
@ -65,6 +76,8 @@ export default class FindWidget extends NoteContextAwareWidget {
|
|||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
|
this.searchTerm = null;
|
||||||
|
|
||||||
this.textHandler = new FindInText();
|
this.textHandler = new FindInText();
|
||||||
this.codeHandler = new FindInCode();
|
this.codeHandler = new FindInCode();
|
||||||
}
|
}
|
||||||
@ -80,7 +93,8 @@ export default class FindWidget extends NoteContextAwareWidget {
|
|||||||
this.$caseSensitiveCheckbox.change(() => this.performFind());
|
this.$caseSensitiveCheckbox.change(() => this.performFind());
|
||||||
this.$matchWordsCheckbox = this.$widget.find(".find-widget-match-words-checkbox");
|
this.$matchWordsCheckbox = this.$widget.find(".find-widget-match-words-checkbox");
|
||||||
this.$matchWordsCheckbox.change(() => this.performFind());
|
this.$matchWordsCheckbox.change(() => this.performFind());
|
||||||
this.searchTerm = null;
|
this.$closeButton = this.$widget.find(".find-widget-close-button");
|
||||||
|
this.$closeButton.on("click", () => this.closeSearch());
|
||||||
|
|
||||||
this.$input.keydown(async e => {
|
this.$input.keydown(async e => {
|
||||||
if ((e.metaKey || e.ctrlKey) && (e.key === 'F' || e.key === 'f')) {
|
if ((e.metaKey || e.ctrlKey) && (e.key === 'F' || e.key === 'f')) {
|
||||||
@ -92,26 +106,12 @@ export default class FindWidget extends NoteContextAwareWidget {
|
|||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
return false;
|
return false;
|
||||||
} else if (e.key === 'Escape') {
|
} else if (e.key === 'Escape') {
|
||||||
await this.getHandler().close();
|
await this.closeSearch();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$input.on('input', () => this.startSearch());
|
this.$input.on('input', () => this.startSearch());
|
||||||
|
|
||||||
// Note blur doesn't bubble to parent div, but the parent div needs to
|
|
||||||
// detect when any of the children are not focused and hide. Use
|
|
||||||
// focusout instead which does bubble to the parent div.
|
|
||||||
this.$findBox.on('focusout', async e => {
|
|
||||||
// e.relatedTarget is the new focused element, note it can be null
|
|
||||||
// if nothing is being focused
|
|
||||||
if (this.$findBox[0].contains(e.relatedTarget)) {
|
|
||||||
// The focused element is inside this div, ignore
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
await this.closeSearch();
|
|
||||||
});
|
|
||||||
|
|
||||||
return this.$widget;
|
return this.$widget;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -128,12 +128,9 @@ export default class FindWidget extends NoteContextAwareWidget {
|
|||||||
// immediately, as this can cause search word typing lag with
|
// immediately, as this can cause search word typing lag with
|
||||||
// one or two-char searchwords and long notes
|
// one or two-char searchwords and long notes
|
||||||
// See https://github.com/antoniotejada/Trilium-FindWidget/issues/1
|
// See https://github.com/antoniotejada/Trilium-FindWidget/issues/1
|
||||||
const searchTerm = this.$input.val();
|
|
||||||
const matchCase = this.$caseSensitiveCheckbox.prop("checked");
|
|
||||||
const wholeWord = this.$matchWordsCheckbox.prop("checked");
|
|
||||||
this.timeoutId = setTimeout(async () => {
|
this.timeoutId = setTimeout(async () => {
|
||||||
this.timeoutId = null;
|
this.timeoutId = null;
|
||||||
await this.performFind(searchTerm, matchCase, wholeWord);
|
await this.performFind();
|
||||||
}, findWidgetDelayMillis);
|
}, findWidgetDelayMillis);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -141,7 +138,7 @@ export default class FindWidget extends NoteContextAwareWidget {
|
|||||||
async findNext(e) {
|
async findNext(e) {
|
||||||
const searchTerm = this.$input.val();
|
const searchTerm = this.$input.val();
|
||||||
if (waitForEnter && this.searchTerm !== searchTerm) {
|
if (waitForEnter && this.searchTerm !== searchTerm) {
|
||||||
await this.performFind(searchTerm);
|
await this.performFind();
|
||||||
}
|
}
|
||||||
const totalFound = parseInt(this.$totalFound.text());
|
const totalFound = parseInt(this.$totalFound.text());
|
||||||
const currentFound = parseInt(this.$currentFound.text()) - 1;
|
const currentFound = parseInt(this.$currentFound.text()) - 1;
|
||||||
@ -163,41 +160,35 @@ export default class FindWidget extends NoteContextAwareWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async findInTextEvent() {
|
async findInTextEvent() {
|
||||||
const note = appContext.tabManager.getActiveContextNote();
|
|
||||||
// Only writeable text and code supported
|
// Only writeable text and code supported
|
||||||
const readOnly = note.getAttribute("label", "readOnly");
|
const readOnly = await this.noteContext.isReadOnly();
|
||||||
if (!readOnly && (note.type === "code" || note.type === "text")) {
|
|
||||||
if (this.$findBox.is(":hidden")) {
|
|
||||||
this.$findBox.show();
|
|
||||||
this.$input.focus();
|
|
||||||
this.$totalFound.text(0);
|
|
||||||
this.$currentFound.text(0);
|
|
||||||
|
|
||||||
const searchTerm = await this.getHandler().getInitialSearchTerm();
|
if (readOnly || !['text', 'code'].includes(this.note.type) || !this.$findBox.is(":hidden")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.$input.val(searchTerm || "");
|
this.$findBox.show();
|
||||||
|
this.$input.focus();
|
||||||
|
this.$totalFound.text(0);
|
||||||
|
this.$currentFound.text(0);
|
||||||
|
|
||||||
// Directly perform the search if there's some text to
|
const searchTerm = await this.getHandler().getInitialSearchTerm();
|
||||||
// find, without delaying or waiting for enter
|
|
||||||
if (searchTerm !== "") {
|
this.$input.val(searchTerm || "");
|
||||||
this.$input.select();
|
|
||||||
await this.performFind(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. */
|
||||||
* Perform the find and highlight the find results.
|
async performFind() {
|
||||||
*
|
const searchTerm = this.$input.val();
|
||||||
* @param [searchTerm] {string} taken from the input box if missing.
|
const matchCase = this.$caseSensitiveCheckbox.prop("checked");
|
||||||
* @param [matchCase] {boolean} taken from the checkbox state if missing.
|
const wholeWord = this.$matchWordsCheckbox.prop("checked");
|
||||||
* @param [wholeWord] {boolean} taken from the checkbox state if missing.
|
|
||||||
*/
|
|
||||||
async performFind(searchTerm, matchCase, wholeWord) {
|
|
||||||
searchTerm = (searchTerm === undefined) ? this.$input.val() : searchTerm;
|
|
||||||
matchCase = (matchCase === undefined) ? this.$caseSensitiveCheckbox.prop("checked") : matchCase;
|
|
||||||
wholeWord = (wholeWord === undefined) ? this.$matchWordsCheckbox.prop("checked") : wholeWord;
|
|
||||||
|
|
||||||
const {totalFound, currentFound} = await this.getHandler().performFind(searchTerm, matchCase, wholeWord);
|
const {totalFound, currentFound} = await this.getHandler().performFind(searchTerm, matchCase, wholeWord);
|
||||||
|
|
||||||
@ -212,10 +203,6 @@ export default class FindWidget extends NoteContextAwareWidget {
|
|||||||
|
|
||||||
// Restore any state, if there's a current occurrence clear markers
|
// Restore any state, if there's a current occurrence clear markers
|
||||||
// and scroll to and select the last occurrence
|
// and scroll to and select the last occurrence
|
||||||
|
|
||||||
// XXX Switching to a different tab with crl+tab doesn't invoke
|
|
||||||
// blur and leaves a stale search which then breaks when
|
|
||||||
// navigating it
|
|
||||||
const totalFound = parseInt(this.$totalFound.text());
|
const totalFound = parseInt(this.$totalFound.text());
|
||||||
const currentFound = parseInt(this.$currentFound.text()) - 1;
|
const currentFound = parseInt(this.$currentFound.text()) - 1;
|
||||||
|
|
||||||
@ -226,23 +213,19 @@ export default class FindWidget extends NoteContextAwareWidget {
|
|||||||
this.searchTerm = null;
|
this.searchTerm = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
isEnabled() {
|
|
||||||
return super.isEnabled() && (this.note.type === 'text' || this.note.type === 'code');
|
|
||||||
}
|
|
||||||
|
|
||||||
async entitiesReloadedEvent({loadResults}) {
|
async entitiesReloadedEvent({loadResults}) {
|
||||||
if (loadResults.isNoteContentReloaded(this.noteId)) {
|
if (loadResults.isNoteContentReloaded(this.noteId)) {
|
||||||
this.refresh();
|
this.refresh();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getHandler() {
|
isEnabled() {
|
||||||
const note = appContext.tabManager.getActiveContextNote();
|
return super.isEnabled() && ['text', 'code'].includes(this.note.type);
|
||||||
|
}
|
||||||
|
|
||||||
if (note.type === "code") {
|
getHandler() {
|
||||||
return this.codeHandler;
|
return this.note.type === "code"
|
||||||
} else {
|
? this.codeHandler
|
||||||
return this.textHandler;
|
: this.textHandler;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user