Notes/src/public/app/widgets/find_in_code.ts

248 lines
8.9 KiB
TypeScript
Raw Normal View History

2022-05-16 23:56:43 +02:00
// ck-find-result and ck-find-result_selected are the styles ck-editor
// uses for highlighting matches, use the same one on CodeMirror
// for consistency
2022-05-25 23:38:06 +02:00
import utils from "../services/utils.js";
2025-03-17 22:46:00 +02:00
import type FindWidget from "./find.js";
2022-05-25 23:38:06 +02:00
2022-05-16 23:56:43 +02:00
const FIND_RESULT_SELECTED_CSS_CLASSNAME = "ck-find-result_selected";
const FIND_RESULT_CSS_CLASSNAME = "ck-find-result";
2025-03-17 22:46:00 +02:00
// TODO: Deduplicate.
interface Match {
className: string;
clear(): void;
find(): {
from: number;
to: number;
};
}
2022-05-16 23:56:43 +02:00
export default class FindInCode {
2025-03-17 22:46:00 +02:00
private parent: FindWidget;
private findResult?: Match[] | null;
constructor(parent: FindWidget) {
this.parent = parent;
}
async getCodeEditor() {
2025-03-17 22:46:00 +02:00
return this.parent.noteContext?.getCodeEditor();
}
2025-03-17 22:46:00 +02:00
async performFind(searchTerm: string, matchCase: boolean, wholeWord: boolean) {
let findResult: Match[] | null = null;
2022-05-16 23:56:43 +02:00
let totalFound = 0;
let currentFound = -1;
// See https://codemirror.net/addon/search/searchcursor.js for tips
const codeEditor = await this.getCodeEditor();
2025-03-17 22:46:00 +02:00
if (!codeEditor) {
return;
}
2022-05-16 23:56:43 +02:00
const doc = codeEditor.doc;
const text = doc.getValue();
// Clear all markers
2025-03-17 22:46:00 +02:00
if (this.findResult) {
2022-05-16 23:56:43 +02:00
codeEditor.operation(() => {
2025-03-17 22:46:00 +02:00
const findResult = this.findResult as Match[];
for (let i = 0; i < findResult.length; ++i) {
const marker = findResult[i];
2022-05-16 23:56:43 +02:00
marker.clear();
}
});
}
if (searchTerm !== "") {
2022-05-25 23:38:06 +02:00
searchTerm = utils.escapeRegExp(searchTerm);
2022-05-16 23:56:43 +02:00
// Find and highlight matches
// Find and highlight matches
// XXX Using \\b and not using the unicode flag probably doesn't
2023-06-29 23:32:19 +02:00
// work with non-ASCII alphabets, findAndReplace uses a more
2022-05-16 23:56:43 +02:00
// complicated regexp, see
// https://github.com/ckeditor/ckeditor5/blob/b95e2faf817262ac0e1e21993d9c0bde3f1be594/packages/ckeditor5-find-and-replace/src/utils.js#L145
const wholeWordChar = wholeWord ? "\\b" : "";
2025-01-09 18:07:02 +02:00
const re = new RegExp(wholeWordChar + searchTerm + wholeWordChar, "g" + (matchCase ? "" : "i"));
2022-05-16 23:56:43 +02:00
let curLine = 0;
let curChar = 0;
2025-03-17 22:46:00 +02:00
let curMatch: RegExpExecArray | null = null;
2022-05-16 23:56:43 +02:00
findResult = [];
2023-05-05 23:41:11 +02:00
// All those markText take several seconds on e.g., this ~500-line
// script, batch them inside an operation, so they become
2022-05-16 23:56:43 +02:00
// unnoticeable. Alternatively, an overlay could be used, see
// https://codemirror.net/addon/search/match-highlighter.js ?
codeEditor.operation(() => {
for (let i = 0; i < text.length; ++i) {
2023-05-05 23:41:11 +02:00
// Fetch the next match if it's the first time or if past the current match start
2025-01-09 18:07:02 +02:00
if (curMatch == null || curMatch.index < i) {
2022-05-16 23:56:43 +02:00
curMatch = re.exec(text);
if (curMatch == null) {
// No more matches
break;
}
}
// Create a non-selected highlight marker for the match, the
// selected marker highlight will be done later
if (i === curMatch.index) {
2025-01-09 18:07:02 +02:00
let fromPos = { line: curLine, ch: curChar };
2023-05-05 23:41:11 +02:00
// If multiline is supported, this needs to recalculate curLine since the match may span lines
2025-01-09 18:07:02 +02:00
let toPos = { line: curLine, ch: curChar + curMatch[0].length };
2023-05-05 23:41:11 +02:00
// or css = "color: #f3"
2025-01-09 18:07:02 +02:00
let marker = doc.markText(fromPos, toPos, { className: FIND_RESULT_CSS_CLASSNAME });
2025-03-17 22:46:00 +02:00
findResult?.push(marker);
2022-05-16 23:56:43 +02:00
2023-05-05 23:41:11 +02:00
// Set the first match beyond the cursor as the current match
2022-05-16 23:56:43 +02:00
if (currentFound === -1) {
const cursorPos = codeEditor.getCursor();
2025-01-09 18:07:02 +02:00
if (fromPos.line > cursorPos.line || (fromPos.line === cursorPos.line && fromPos.ch >= cursorPos.ch)) {
2022-05-16 23:56:43 +02:00
currentFound = totalFound;
}
}
totalFound++;
}
// Do line and char position tracking
if (text[i] === "\n") {
curLine++;
curChar = 0;
} else {
curChar++;
}
}
});
}
this.findResult = findResult;
// Calculate curfound if not already, highlight it as selected
2025-03-17 22:46:00 +02:00
if (findResult && totalFound > 0) {
2025-01-09 18:07:02 +02:00
currentFound = Math.max(0, currentFound);
2022-05-16 23:56:43 +02:00
let marker = findResult[currentFound];
let pos = marker.find();
codeEditor.scrollIntoView(pos.to);
marker.clear();
2025-01-09 18:07:02 +02:00
findResult[currentFound] = doc.markText(pos.from, pos.to, { className: FIND_RESULT_SELECTED_CSS_CLASSNAME });
2022-05-16 23:56:43 +02:00
}
return {
totalFound,
2023-09-05 21:00:24 +02:00
currentFound: Math.min(currentFound + 1, totalFound)
2022-05-16 23:56:43 +02:00
};
}
2025-03-17 22:46:00 +02:00
async findNext(direction: number, currentFound: number, nextFound: number) {
const codeEditor = await this.getCodeEditor();
2025-03-17 22:46:00 +02:00
if (!codeEditor || !this.findResult) {
return;
}
2022-05-16 23:56:43 +02:00
const doc = codeEditor.doc;
//
// Dehighlight current, highlight & scrollIntoView next
//
let marker = this.findResult[currentFound];
let pos = marker.find();
marker.clear();
2025-01-09 18:07:02 +02:00
marker = doc.markText(pos.from, pos.to, { className: FIND_RESULT_CSS_CLASSNAME });
2022-05-16 23:56:43 +02:00
this.findResult[currentFound] = marker;
marker = this.findResult[nextFound];
pos = marker.find();
marker.clear();
2025-01-09 18:07:02 +02:00
marker = doc.markText(pos.from, pos.to, { className: FIND_RESULT_SELECTED_CSS_CLASSNAME });
2022-05-16 23:56:43 +02:00
this.findResult[nextFound] = marker;
codeEditor.scrollIntoView(pos.from);
}
2025-03-17 22:46:00 +02:00
async findBoxClosed(totalFound: number, currentFound: number) {
const codeEditor = await this.getCodeEditor();
2022-05-16 23:56:43 +02:00
2025-03-17 22:46:00 +02:00
if (codeEditor && totalFound > 0) {
2022-05-16 23:56:43 +02:00
const doc = codeEditor.doc;
2025-03-17 22:46:00 +02:00
const pos = this.findResult?.[currentFound].find();
2022-05-16 23:56:43 +02:00
// Note setting the selection sets the cursor to
// the end of the selection and scrolls it into
// view
2025-03-17 22:46:00 +02:00
if (pos) {
doc.setSelection(pos.from, pos.to);
}
2022-05-16 23:56:43 +02:00
// Clear all markers
codeEditor.operation(() => {
2025-03-17 22:46:00 +02:00
if (!this.findResult) {
return;
}
2022-05-16 23:56:43 +02:00
for (let i = 0; i < this.findResult.length; ++i) {
let marker = this.findResult[i];
marker.clear();
}
});
}
this.findResult = null;
2025-03-17 22:46:00 +02:00
codeEditor?.focus();
2022-05-16 23:56:43 +02:00
}
2025-03-17 22:46:00 +02:00
async replace(replaceText: string) {
2024-11-12 10:56:54 +08:00
// this.findResult may be undefined and null
2025-01-09 18:07:02 +02:00
if (!this.findResult || this.findResult.length === 0) {
2024-11-12 10:56:54 +08:00
return;
}
2024-11-11 22:57:24 +08:00
let currentFound = -1;
this.findResult.forEach((marker, index) => {
const pos = marker.find();
if (pos) {
if (marker.className === FIND_RESULT_SELECTED_CSS_CLASSNAME) {
currentFound = index;
return;
}
}
});
if (currentFound >= 0) {
let marker = this.findResult[currentFound];
let pos = marker.find();
const codeEditor = await this.getCodeEditor();
2025-03-17 22:46:00 +02:00
const doc = codeEditor?.doc;
if (doc) {
doc.replaceRange(replaceText, pos.from, pos.to);
}
2024-11-11 22:57:24 +08:00
marker.clear();
let nextFound;
if (currentFound === this.findResult.length - 1) {
nextFound = 0;
} else {
nextFound = currentFound;
}
this.findResult.splice(currentFound, 1);
if (this.findResult.length > 0) {
this.findNext(0, nextFound, nextFound);
}
}
}
2025-03-17 22:46:00 +02:00
async replaceAll(replaceText: string) {
2025-01-09 18:07:02 +02:00
if (!this.findResult || this.findResult.length === 0) {
2024-11-12 10:56:54 +08:00
return;
}
2024-11-11 22:57:24 +08:00
const codeEditor = await this.getCodeEditor();
2025-03-17 22:46:00 +02:00
const doc = codeEditor?.doc;
codeEditor?.operation(() => {
if (!this.findResult) {
return;
}
2024-11-11 22:57:24 +08:00
for (let currentFound = 0; currentFound < this.findResult.length; currentFound++) {
let marker = this.findResult[currentFound];
let pos = marker.find();
2025-03-17 22:46:00 +02:00
doc?.replaceRange(replaceText, pos.from, pos.to);
2024-11-11 22:57:24 +08:00
marker.clear();
}
});
this.findResult = [];
}
2022-05-16 23:56:43 +02:00
}