blob: e8b91519e0a36b951a00effb6c28742628bd1c46 (
plain)
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
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
import React from "react";
import {OptionWithSearchResult, SearchProps} from "./types";
import _ from "lodash";
type HighlighterProps = {
label: string
}
const Highlighter: React.FC<HighlighterProps> = ({label}: HighlighterProps) => {
return <strong>{label}</strong>
}
export const signatureFromSearchResult = (searchResult: OptionWithSearchResult): string => {
return searchResult.name.replace(searchResult.searchKeys[searchResult.rank], searchResult.highlight)
}
export const SearchResultRow: React.FC<SearchProps> = ({searchResult}: SearchProps) => {
/*
This is a work-around for an issue: https://youtrack.jetbrains.com/issue/RG-2108
*/
const out = _.chunk(signatureFromSearchResult(searchResult).split('**'), 2).flatMap(([txt, label]) => [
txt,
label ? <Highlighter label={label}></Highlighter> : null,
]);
return (
<div className="template-wrapper">
<span>{out}</span>
<span className="template-description">{searchResult.description}</span>
</div>
)
}
|