2021-02-19 14:42:20 -08:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { Modal, ModalBody, ModalHeader } from 'reactstrap';
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
show: boolean;
|
|
|
|
updateShow(show: boolean): void;
|
|
|
|
metrics: string[];
|
|
|
|
insertAtCursor(value: string): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MetricsExplorer extends Component<Props, {}> {
|
|
|
|
handleMetricClick = (query: string) => {
|
|
|
|
this.props.insertAtCursor(query);
|
|
|
|
this.props.updateShow(false);
|
|
|
|
};
|
|
|
|
|
|
|
|
toggle = () => {
|
|
|
|
this.props.updateShow(!this.props.show);
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Modal isOpen={this.props.show} toggle={this.toggle} className="metrics-explorer">
|
|
|
|
<ModalHeader toggle={this.toggle}>Metrics Explorer</ModalHeader>
|
|
|
|
<ModalBody>
|
|
|
|
{this.props.metrics.map(metric => (
|
2021-03-19 05:20:04 -07:00
|
|
|
<p key={metric} className="metric" onClick={this.handleMetricClick.bind(this, metric)}>
|
2021-02-19 14:42:20 -08:00
|
|
|
{metric}
|
|
|
|
</p>
|
|
|
|
))}
|
|
|
|
</ModalBody>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MetricsExplorer;
|