-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuzzysearch.js
45 lines (39 loc) · 1.02 KB
/
fuzzysearch.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import React from "react";
import fuzzysort from "fuzzysort";
export const getSearchHighlightHtml = (search, text, target) => {
if (search && target) {
return getSearchHighlightHtmlForResult(
checkSearchMatch(search, target),
text
);
}
return text;
};
const getSearchHighlightHtmlForResult = (result, text) => {
if (result) {
return fuzzysort.highlight(result, "<b class='hl'>", "</b>");
}
return text;
};
export const checkSearchMatch = (search, string) => {
const result = fuzzysort.single(search, string, {
allowTypo: false
});
return result !== null && result.score >= -1000 ? result : null;
};
export const prepareSearchTarget = text => fuzzysort.prepareSlow(text);
export const SearchHighlight = ({
text,
target,
search,
elementType = "span",
result
}) => {
return React.createElement(elementType, {
dangerouslySetInnerHTML: {
__html: result
? getSearchHighlightHtmlForResult(result, text)
: getSearchHighlightHtml(search, text, target)
}
});
};