-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…41719) * Add UI to customize Metrics Explorer chart style * Re-order chart options form * Adding chart options to TSVB link * Rename line series to series chart * Fixing chart context menu tests * Adding test for calculate domain * Ensure caclulateDomain returns numbers * fixing typo
- Loading branch information
1 parent
b3adc74
commit 3d04609
Showing
16 changed files
with
489 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
166 changes: 166 additions & 0 deletions
166
x-pack/legacy/plugins/infra/public/components/metrics_explorer/chart_options.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import React, { useState, useCallback } from 'react'; | ||
import { InjectedIntl, injectI18n, FormattedMessage } from '@kbn/i18n/react'; | ||
import { | ||
EuiRadioGroup, | ||
EuiButtonEmpty, | ||
EuiPopover, | ||
EuiForm, | ||
EuiFormRow, | ||
EuiSwitch, | ||
} from '@elastic/eui'; | ||
import { | ||
MetricsExplorerChartOptions as ChartOptions, | ||
MetricsExplorerYAxisMode, | ||
MetricsExplorerChartType, | ||
} from '../../containers/metrics_explorer/use_metrics_explorer_options'; | ||
|
||
interface Props { | ||
chartOptions: ChartOptions; | ||
onChange: (options: ChartOptions) => void; | ||
intl: InjectedIntl; | ||
} | ||
|
||
export const MetricsExplorerChartOptions = injectI18n(({ chartOptions, onChange, intl }: Props) => { | ||
const [isPopoverOpen, setPopoverState] = useState<boolean>(false); | ||
|
||
const handleClosePopover = useCallback(() => { | ||
setPopoverState(false); | ||
}, []); | ||
|
||
const handleOpenPopover = useCallback(() => { | ||
setPopoverState(true); | ||
}, []); | ||
|
||
const button = ( | ||
<EuiButtonEmpty iconSide="left" iconType="eye" onClick={handleOpenPopover}> | ||
<FormattedMessage | ||
id="xpack.infra.metricsExplorer.customizeChartOptions" | ||
defaultMessage="Customize" | ||
/> | ||
</EuiButtonEmpty> | ||
); | ||
|
||
const yAxisRadios = [ | ||
{ | ||
id: MetricsExplorerYAxisMode.auto, | ||
label: intl.formatMessage({ | ||
id: 'xpack.infra.metricsExplorer.chartOptions.autoLabel', | ||
defaultMessage: 'Automatic (Min to Max)', | ||
}), | ||
}, | ||
{ | ||
id: MetricsExplorerYAxisMode.fromZero, | ||
label: intl.formatMessage({ | ||
id: 'xpack.infra.metricsExplorer.chartOptions.fromZeroLabel', | ||
defaultMessage: 'From Zero (0 to Max)', | ||
}), | ||
}, | ||
]; | ||
|
||
const typeRadios = [ | ||
{ | ||
id: MetricsExplorerChartType.line, | ||
label: intl.formatMessage({ | ||
id: 'xpack.infra.metricsExplorer.chartOptions.lineLabel', | ||
defaultMessage: 'Line', | ||
}), | ||
}, | ||
{ | ||
id: MetricsExplorerChartType.area, | ||
label: intl.formatMessage({ | ||
id: 'xpack.infra.metricsExplorer.chartOptions.areaLabel', | ||
defaultMessage: 'Area', | ||
}), | ||
}, | ||
]; | ||
|
||
const handleYAxisChange = useCallback( | ||
(id: string) => { | ||
onChange({ | ||
...chartOptions, | ||
yAxisMode: id as MetricsExplorerYAxisMode, | ||
}); | ||
}, | ||
[chartOptions, onChange] | ||
); | ||
|
||
const handleTypeChange = useCallback( | ||
(id: string) => { | ||
onChange({ | ||
...chartOptions, | ||
type: id as MetricsExplorerChartType, | ||
}); | ||
}, | ||
[chartOptions, onChange] | ||
); | ||
|
||
const handleStackChange = useCallback( | ||
e => { | ||
onChange({ | ||
...chartOptions, | ||
stack: e.target.checked, | ||
}); | ||
}, | ||
[chartOptions, onChange] | ||
); | ||
|
||
return ( | ||
<EuiPopover | ||
id="MetricExplorerChartOptionsPopover" | ||
button={button} | ||
isOpen={isPopoverOpen} | ||
closePopover={handleClosePopover} | ||
> | ||
<EuiForm> | ||
<EuiFormRow | ||
compressed | ||
label={intl.formatMessage({ | ||
id: 'xpack.infra.metricsExplorer.chartOptions.typeLabel', | ||
defaultMessage: 'Chart Style', | ||
})} | ||
> | ||
<EuiRadioGroup | ||
options={typeRadios} | ||
idSelected={chartOptions.type} | ||
onChange={handleTypeChange} | ||
/> | ||
</EuiFormRow> | ||
<EuiFormRow | ||
compressed | ||
label={intl.formatMessage({ | ||
id: 'xpack.infra.metricsExplorer.chartOptions.stackLabel', | ||
defaultMessage: 'Stack Series', | ||
})} | ||
> | ||
<EuiSwitch | ||
label={intl.formatMessage({ | ||
id: 'xpack.infra.metricsExplorer.chartOptions.stackSwitchLabel', | ||
defaultMessage: 'Stack', | ||
})} | ||
checked={chartOptions.stack} | ||
onChange={handleStackChange} | ||
/> | ||
</EuiFormRow> | ||
<EuiFormRow | ||
compressed | ||
label={intl.formatMessage({ | ||
id: 'xpack.infra.metricsExplorer.chartOptions.yAxisDomainLabel', | ||
defaultMessage: 'Y Axis Domain', | ||
})} | ||
> | ||
<EuiRadioGroup | ||
options={yAxisRadios} | ||
idSelected={chartOptions.yAxisMode} | ||
onChange={handleYAxisChange} | ||
/> | ||
</EuiFormRow> | ||
</EuiForm> | ||
</EuiPopover> | ||
); | ||
}); |
Oops, something went wrong.