prometheus/web/ui/react-app/src/pages/graph/MetricsExplorer.tsx
Matthew 628211c25a
Feat UI metrics search (#9629)
* feat: add search to metrics explorer

Signed-off-by: mtfoley <mtfoley.mae@gmail.com>

* fix: ui-lint and ui-build errors

Signed-off-by: mtfoley <mtfoley.mae@gmail.com>

* feat: use @nexucis/fuzzy

Signed-off-by: mtfoley <mtfoley.mae@gmail.com>

* chore: code style and delete commented test

Signed-off-by: mtfoley <mtfoley.mae@gmail.com>

* rename Props to MetricsExplorerProps

Signed-off-by: mtfoley <mtfoley.mae@gmail.com>
2021-11-08 19:11:39 +01:00

65 lines
2.1 KiB
TypeScript

import React, { Component, ChangeEvent } from 'react';
import { Modal, ModalBody, ModalHeader, Input } from 'reactstrap';
import { Fuzzy, FuzzyResult } from '@nexucis/fuzzy';
const fuz = new Fuzzy({ pre: '<strong>', post: '</strong>', shouldSort: true });
interface MetricsExplorerProps {
show: boolean;
updateShow(show: boolean): void;
metrics: string[];
insertAtCursor(value: string): void;
}
type MetricsExplorerState = {
searchTerm: string;
};
class MetricsExplorer extends Component<MetricsExplorerProps, MetricsExplorerState> {
constructor(props: MetricsExplorerProps) {
super(props);
this.state = { searchTerm: '' };
}
handleSearchTerm = (event: ChangeEvent<HTMLInputElement>): void => {
this.setState({ searchTerm: event.target.value });
};
handleMetricClick = (query: string): void => {
this.props.insertAtCursor(query);
this.props.updateShow(false);
this.setState({ searchTerm: '' });
};
toggle = (): void => {
this.props.updateShow(!this.props.show);
};
render(): JSX.Element {
return (
<Modal isOpen={this.props.show} toggle={this.toggle} className="metrics-explorer" scrollable>
<ModalHeader toggle={this.toggle}>Metrics Explorer</ModalHeader>
<ModalBody>
<Input placeholder="Search" value={this.state.searchTerm} type="text" onChange={this.handleSearchTerm} />
{this.state.searchTerm.length > 0 &&
fuz
.filter(this.state.searchTerm, this.props.metrics)
.map((result: FuzzyResult) => (
<p
key={result.original}
className="metric"
onClick={this.handleMetricClick.bind(this, result.original)}
dangerouslySetInnerHTML={{ __html: result.rendered }}
></p>
))}
{this.state.searchTerm.length === 0 &&
this.props.metrics.map((metric) => (
<p key={metric} className="metric" onClick={this.handleMetricClick.bind(this, metric)}>
{metric}
</p>
))}
</ModalBody>
</Modal>
);
}
}
export default MetricsExplorer;