| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- import React, { PureComponent } from 'react';
- import { connect } from 'react-redux';
- import { hot } from 'react-hot-loader';
- import memoizeOne from 'memoize-one';
- import { ExploreId, ExploreMode } from 'app/types/explore';
- import { DataSourceSelectItem, ToggleButtonGroup, ToggleButton } from '@grafana/ui';
- import { RawTimeRange, TimeZone, TimeRange, SelectableValue } from '@grafana/data';
- import { DataSourcePicker } from 'app/core/components/Select/DataSourcePicker';
- import { StoreState } from 'app/types/store';
- import {
- changeDatasource,
- clearQueries,
- splitClose,
- runQueries,
- splitOpen,
- changeRefreshInterval,
- changeMode,
- } from './state/actions';
- import { getTimeZone } from '../profile/state/selectors';
- import { ExploreTimeControls } from './ExploreTimeControls';
- enum IconSide {
- left = 'left',
- right = 'right',
- }
- const createResponsiveButton = (options: {
- splitted: boolean;
- title: string;
- onClick: () => void;
- buttonClassName?: string;
- iconClassName?: string;
- iconSide?: IconSide;
- disabled?: boolean;
- }) => {
- const defaultOptions = {
- iconSide: IconSide.left,
- };
- const props = { ...options, defaultOptions };
- const { title, onClick, buttonClassName, iconClassName, splitted, iconSide, disabled } = props;
- return (
- <button
- className={`btn navbar-button ${buttonClassName ? buttonClassName : ''}`}
- onClick={onClick}
- disabled={disabled || false}
- >
- {iconClassName && iconSide === IconSide.left ? <i className={`${iconClassName}`} /> : null}
- <span className="btn-title">{!splitted ? title : ''}</span>
- {iconClassName && iconSide === IconSide.right ? <i className={`${iconClassName}`} /> : null}
- </button>
- );
- };
- interface OwnProps {
- exploreId: ExploreId;
- onChangeTime: (range: RawTimeRange, changedByScanner?: boolean) => void;
- }
- interface StateProps {
- datasourceMissing: boolean;
- exploreDatasources: DataSourceSelectItem[];
- loading: boolean;
- range: TimeRange;
- timeZone: TimeZone;
- selectedDatasource: DataSourceSelectItem;
- splitted: boolean;
- refreshInterval: string;
- supportedModeOptions: Array<SelectableValue<ExploreMode>>;
- selectedModeOption: SelectableValue<ExploreMode>;
- hasLiveOption: boolean;
- isLive: boolean;
- }
- interface DispatchProps {
- changeDatasource: typeof changeDatasource;
- clearAll: typeof clearQueries;
- runQueries: typeof runQueries;
- closeSplit: typeof splitClose;
- split: typeof splitOpen;
- changeRefreshInterval: typeof changeRefreshInterval;
- changeMode: typeof changeMode;
- }
- type Props = StateProps & DispatchProps & OwnProps;
- export class UnConnectedExploreToolbar extends PureComponent<Props, {}> {
- constructor(props: Props) {
- super(props);
- }
- onChangeDatasource = async (option: { value: any }) => {
- this.props.changeDatasource(this.props.exploreId, option.value);
- };
- onClearAll = () => {
- this.props.clearAll(this.props.exploreId);
- };
- onRunQuery = () => {
- return this.props.runQueries(this.props.exploreId);
- };
- onChangeRefreshInterval = (item: string) => {
- const { changeRefreshInterval, exploreId } = this.props;
- changeRefreshInterval(exploreId, item);
- };
- onModeChange = (mode: ExploreMode) => {
- const { changeMode, exploreId } = this.props;
- changeMode(exploreId, mode);
- };
- render() {
- const {
- datasourceMissing,
- exploreDatasources,
- closeSplit,
- exploreId,
- loading,
- range,
- timeZone,
- selectedDatasource,
- splitted,
- refreshInterval,
- onChangeTime,
- split,
- supportedModeOptions,
- selectedModeOption,
- hasLiveOption,
- isLive,
- } = this.props;
- return (
- <div className={splitted ? 'explore-toolbar splitted' : 'explore-toolbar'}>
- <div className="explore-toolbar-item">
- <div className="explore-toolbar-header">
- <div className="explore-toolbar-header-title">
- {exploreId === 'left' && (
- <span className="navbar-page-btn">
- <i className="gicon gicon-explore" />
- Explore
- </span>
- )}
- </div>
- {splitted && (
- <a className="explore-toolbar-header-close" onClick={() => closeSplit(exploreId)}>
- <i className="fa fa-times fa-fw" />
- </a>
- )}
- </div>
- </div>
- <div className="explore-toolbar-item">
- <div className="explore-toolbar-content">
- {!datasourceMissing ? (
- <div className="explore-toolbar-content-item">
- <div className="datasource-picker">
- <DataSourcePicker
- onChange={this.onChangeDatasource}
- datasources={exploreDatasources}
- current={selectedDatasource}
- />
- </div>
- {supportedModeOptions.length > 1 ? (
- <div className="query-type-toggle">
- <ToggleButtonGroup label="" transparent={true}>
- <ToggleButton
- key={ExploreMode.Metrics}
- value={ExploreMode.Metrics}
- onChange={this.onModeChange}
- selected={selectedModeOption.value === ExploreMode.Metrics}
- >
- {'Metrics'}
- </ToggleButton>
- <ToggleButton
- key={ExploreMode.Logs}
- value={ExploreMode.Logs}
- onChange={this.onModeChange}
- selected={selectedModeOption.value === ExploreMode.Logs}
- >
- {'Logs'}
- </ToggleButton>
- </ToggleButtonGroup>
- </div>
- ) : null}
- </div>
- ) : null}
- {exploreId === 'left' && !splitted ? (
- <div className="explore-toolbar-content-item">
- {createResponsiveButton({
- splitted,
- title: 'Split',
- onClick: split,
- iconClassName: 'fa fa-fw fa-columns icon-margin-right',
- iconSide: IconSide.left,
- disabled: isLive,
- })}
- </div>
- ) : null}
- <div className="explore-toolbar-content-item">
- <ExploreTimeControls
- exploreId={exploreId}
- hasLiveOption={hasLiveOption}
- isLive={isLive}
- loading={loading}
- range={range}
- refreshInterval={refreshInterval}
- timeZone={timeZone}
- onChangeTime={onChangeTime}
- onChangeRefreshInterval={this.onChangeRefreshInterval}
- onRunQuery={this.onRunQuery}
- />
- </div>
- <div className="explore-toolbar-content-item">
- <button className="btn navbar-button" onClick={this.onClearAll}>
- Clear All
- </button>
- </div>
- <div className="explore-toolbar-content-item">
- {createResponsiveButton({
- splitted,
- title: 'Run Query',
- onClick: this.onRunQuery,
- buttonClassName: 'navbar-button--secondary',
- iconClassName:
- loading && !isLive ? 'fa fa-spinner fa-fw fa-spin run-icon' : 'fa fa-level-down fa-fw run-icon',
- iconSide: IconSide.right,
- })}
- </div>
- </div>
- </div>
- </div>
- );
- }
- }
- const getModeOptionsMemoized = memoizeOne(
- (
- supportedModes: ExploreMode[],
- mode: ExploreMode
- ): [Array<SelectableValue<ExploreMode>>, SelectableValue<ExploreMode>] => {
- const supportedModeOptions: Array<SelectableValue<ExploreMode>> = [];
- let selectedModeOption = null;
- for (const supportedMode of supportedModes) {
- switch (supportedMode) {
- case ExploreMode.Metrics:
- const option1 = {
- value: ExploreMode.Metrics,
- label: ExploreMode.Metrics,
- };
- supportedModeOptions.push(option1);
- if (mode === ExploreMode.Metrics) {
- selectedModeOption = option1;
- }
- break;
- case ExploreMode.Logs:
- const option2 = {
- value: ExploreMode.Logs,
- label: ExploreMode.Logs,
- };
- supportedModeOptions.push(option2);
- if (mode === ExploreMode.Logs) {
- selectedModeOption = option2;
- }
- break;
- }
- }
- return [supportedModeOptions, selectedModeOption];
- }
- );
- const mapStateToProps = (state: StoreState, { exploreId }: OwnProps): StateProps => {
- const splitted = state.explore.split;
- const exploreItem = state.explore[exploreId];
- const {
- datasourceInstance,
- datasourceMissing,
- exploreDatasources,
- range,
- refreshInterval,
- loading,
- supportedModes,
- mode,
- isLive,
- } = exploreItem;
- const selectedDatasource = datasourceInstance
- ? exploreDatasources.find(datasource => datasource.name === datasourceInstance.name)
- : undefined;
- const hasLiveOption =
- datasourceInstance && datasourceInstance.meta && datasourceInstance.meta.streaming ? true : false;
- const [supportedModeOptions, selectedModeOption] = getModeOptionsMemoized(supportedModes, mode);
- return {
- datasourceMissing,
- exploreDatasources,
- loading,
- range,
- timeZone: getTimeZone(state.user),
- selectedDatasource,
- splitted,
- refreshInterval,
- supportedModeOptions,
- selectedModeOption,
- hasLiveOption,
- isLive,
- };
- };
- const mapDispatchToProps: DispatchProps = {
- changeDatasource,
- changeRefreshInterval,
- clearAll: clearQueries,
- runQueries,
- closeSplit: splitClose,
- split: splitOpen,
- changeMode: changeMode,
- };
- export const ExploreToolbar = hot(module)(
- connect(
- mapStateToProps,
- mapDispatchToProps
- )(UnConnectedExploreToolbar)
- );
|