mirror of
https://github.com/weaveworks/scope.git
synced 2026-02-14 18:09:59 +00:00
57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import { MatchedText } from 'weaveworks-ui-components';
|
|
|
|
const SHOW_ROW_COUNT = 2;
|
|
|
|
const Match = (searchTerms, match) => (
|
|
<div className="matched-results-match" key={match.label}>
|
|
<div className="matched-results-match-wrapper">
|
|
<span className="matched-results-match-label">
|
|
{match.label}
|
|
:
|
|
</span>
|
|
<MatchedText
|
|
text={match.text}
|
|
matches={searchTerms}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
export default class MatchedResults extends React.PureComponent {
|
|
render() {
|
|
const { matches, searchTerms, style } = this.props;
|
|
|
|
if (!matches) {
|
|
return null;
|
|
}
|
|
|
|
let moreFieldMatches;
|
|
let moreFieldMatchesTitle;
|
|
if (matches.size > SHOW_ROW_COUNT) {
|
|
moreFieldMatches = matches
|
|
.valueSeq()
|
|
.skip(SHOW_ROW_COUNT)
|
|
.map(field => field.label);
|
|
moreFieldMatchesTitle = `More matches:\n${moreFieldMatches.join(',\n')}`;
|
|
}
|
|
|
|
return (
|
|
<div className="matched-results" style={style}>
|
|
{matches
|
|
.keySeq()
|
|
.take(SHOW_ROW_COUNT)
|
|
.map(fieldId => Match(searchTerms, matches.get(fieldId)))
|
|
}
|
|
{moreFieldMatches
|
|
&& (
|
|
<div className="matched-results-more" title={moreFieldMatchesTitle}>
|
|
{`${moreFieldMatches.size} more matches`}
|
|
</div>
|
|
)
|
|
}
|
|
</div>
|
|
);
|
|
}
|
|
}
|