221 lines
6.2 KiB
TypeScript
221 lines
6.2 KiB
TypeScript
import {
|
|
highlightClass,
|
|
type SearchMatch,
|
|
regexLineSplit,
|
|
regexYaml,
|
|
regexStripQuotes,
|
|
excerptAfter,
|
|
excerptBefore,
|
|
SEPARATORS,
|
|
} from 'src/globals'
|
|
import { settings } from 'src/settings'
|
|
import { removeDiacritics, warnDebug } from './utils'
|
|
import type { Query } from 'src/search/query'
|
|
import { Notice } from 'obsidian'
|
|
import { escapeRegExp } from 'lodash-es'
|
|
|
|
export function highlighterGroups(_substring: string, ...args: any[]) {
|
|
// args[0] is the single char preceding args[1], which is the word we want to highlight
|
|
if (!!args[1].trim())
|
|
return `<span>${args[0]}</span><span class="${highlightClass}">${args[1]}</span>`
|
|
return '<no content>'
|
|
}
|
|
|
|
/**
|
|
* Wraps the matches in the text with a <span> element and a highlight class
|
|
* @param text
|
|
* @param matches
|
|
* @returns The html string with the matches highlighted
|
|
*/
|
|
export function highlightText(text: string, matches: SearchMatch[]): string {
|
|
if (!matches.length) {
|
|
return text
|
|
}
|
|
try {
|
|
// Text to highlight
|
|
const src = new RegExp(
|
|
matches
|
|
.map(
|
|
// This regex will match the word (with \b word boundary)
|
|
// \b doesn't detect non-alphabetical character's word boundary, so we need to escape it
|
|
matchItem =>
|
|
`\\b${escapeRegExp(matchItem.match)}\\b${
|
|
!/[a-zA-Z]/.test(matchItem.match)
|
|
? `|${escapeRegExp(matchItem.match)}`
|
|
: ''
|
|
}`
|
|
)
|
|
.join('|'),
|
|
'giu'
|
|
)
|
|
|
|
// Replacer function that will highlight the matches
|
|
const replacer = (match: string) => {
|
|
const matchInfo = matches.find(info =>
|
|
match.match(
|
|
new RegExp(
|
|
`\\b${escapeRegExp(info.match)}\\b${
|
|
!/[a-zA-Z]/.test(info.match) ? `|${escapeRegExp(info.match)}` : ''
|
|
}`,
|
|
'giu'
|
|
)
|
|
)
|
|
)
|
|
if (matchInfo) {
|
|
return `<span class="${highlightClass}">${match}</span>`
|
|
}
|
|
return match
|
|
}
|
|
|
|
// Effectively highlight the text
|
|
return text.replace(src, replacer)
|
|
} catch (e) {
|
|
console.error('Omnisearch - Error in highlightText()', e)
|
|
return text
|
|
}
|
|
}
|
|
|
|
export function escapeHTML(html: string): string {
|
|
return html
|
|
.replaceAll('&', '&')
|
|
.replaceAll('<', '<')
|
|
.replaceAll('>', '>')
|
|
.replaceAll('"', '"')
|
|
.replaceAll("'", ''')
|
|
}
|
|
|
|
export function splitLines(text: string): string[] {
|
|
return text.split(regexLineSplit).filter(l => !!l && l.length > 2)
|
|
}
|
|
|
|
export function removeFrontMatter(text: string): string {
|
|
// Regex to recognize YAML Front Matter (at beginning of file, 3 hyphens, than any character, including newlines, then 3 hyphens).
|
|
return text.replace(regexYaml, '')
|
|
}
|
|
|
|
/**
|
|
* Used to find excerpts in a note body, or select which words to highlight
|
|
*/
|
|
export function stringsToRegex(strings: string[]): RegExp {
|
|
if (!strings.length) return /^$/g
|
|
|
|
// sort strings by decreasing length, so that longer strings are matched first
|
|
strings.sort((a, b) => b.length - a.length)
|
|
|
|
const joined =`(${strings.map(s => escapeRegExp(s)).join('|')})`
|
|
|
|
return new RegExp(`${joined}`, 'gui')
|
|
}
|
|
|
|
export function getMatches(
|
|
text: string,
|
|
reg: RegExp,
|
|
query?: Query
|
|
): SearchMatch[] {
|
|
const separatorRegExp = new RegExp(SEPARATORS, 'gu')
|
|
const originalText = text
|
|
text = text.toLowerCase().replace(separatorRegExp, ' ')
|
|
if (settings.ignoreDiacritics) {
|
|
text = removeDiacritics(text)
|
|
}
|
|
const startTime = new Date().getTime()
|
|
let match: RegExpExecArray | null = null
|
|
let matches: SearchMatch[] = []
|
|
let count = 0
|
|
while ((match = reg.exec(text)) !== null) {
|
|
// Avoid infinite loops, stop looking after 100 matches or if we're taking too much time
|
|
if (++count >= 100 || new Date().getTime() - startTime > 50) {
|
|
warnDebug('Stopped getMatches at', count, 'results')
|
|
break
|
|
}
|
|
const matchStartIndex = match.index
|
|
const matchEndIndex = matchStartIndex + match[0].length
|
|
const originalMatch = originalText
|
|
.substring(matchStartIndex, matchEndIndex)
|
|
.trim()
|
|
if (originalMatch && match.index >= 0) {
|
|
matches.push({ match: originalMatch, offset: match.index })
|
|
}
|
|
}
|
|
|
|
// If the query is more than 1 token and can be found "as is" in the text, put this match first
|
|
if (query && (query.query.text.length > 1 || query.getExactTerms().length > 0)) {
|
|
const best = text.indexOf(query.getBestStringForExcerpt())
|
|
if (best > -1 && matches.find(m => m.offset === best)) {
|
|
matches = matches.filter(m => m.offset !== best)
|
|
matches.unshift({
|
|
offset: best,
|
|
match: query.getBestStringForExcerpt(),
|
|
})
|
|
}
|
|
}
|
|
|
|
return matches
|
|
}
|
|
|
|
export function makeExcerpt(
|
|
content: string,
|
|
offset: number
|
|
): { content: string; offset: number } {
|
|
try {
|
|
const pos = offset ?? -1
|
|
const from = Math.max(0, pos - excerptBefore)
|
|
const to = Math.min(content.length, pos + excerptAfter)
|
|
if (pos > -1) {
|
|
content =
|
|
(from > 0 ? '…' : '') +
|
|
content.slice(from, to).trim() +
|
|
(to < content.length - 1 ? '…' : '')
|
|
} else {
|
|
content = content.slice(0, excerptAfter)
|
|
}
|
|
if (settings.renderLineReturnInExcerpts) {
|
|
const lineReturn = new RegExp(/(?:\r\n|\r|\n)/g)
|
|
// Remove multiple line returns
|
|
content = content
|
|
.split(lineReturn)
|
|
.filter(l => l)
|
|
.join('\n')
|
|
|
|
const last = content.lastIndexOf('\n', pos - from)
|
|
|
|
if (last > 0) {
|
|
content = content.slice(last)
|
|
}
|
|
}
|
|
|
|
content = escapeHTML(content)
|
|
|
|
if (settings.renderLineReturnInExcerpts) {
|
|
content = content.trim().replaceAll('\n', '<br>')
|
|
}
|
|
|
|
return { content: content, offset: pos }
|
|
} catch (e) {
|
|
new Notice(
|
|
'Omnisearch - Error while creating excerpt, see developer console'
|
|
)
|
|
console.error(`Omnisearch - Error while creating excerpt`)
|
|
console.error(e)
|
|
return { content: '', offset: -1 }
|
|
}
|
|
}
|
|
|
|
/**
|
|
* splits a string in words or "expressions in quotes"
|
|
* @param str
|
|
* @returns
|
|
*/
|
|
export function splitQuotes(str: string): string[] {
|
|
return (
|
|
str
|
|
.match(/"(.*?)"/g)
|
|
?.map(s => s.replace(/"/g, ''))
|
|
.filter(q => !!q) ?? []
|
|
)
|
|
}
|
|
|
|
export function stripSurroundingQuotes(str: string): string {
|
|
return str.replace(regexStripQuotes, '')
|
|
}
|