123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- import {useTheme} from '@emotion/react';
- import max from 'lodash/max';
- import min from 'lodash/min';
- import type {AreaChartProps} from 'sentry/components/charts/areaChart';
- import {AreaChart} from 'sentry/components/charts/areaChart';
- import ChartZoom from 'sentry/components/charts/chartZoom';
- import {LineChart} from 'sentry/components/charts/lineChart';
- import type {DateString} from 'sentry/types/core';
- import type {Series} from 'sentry/types/echarts';
- import {
- axisLabelFormatter,
- getDurationUnit,
- tooltipFormatter,
- } from 'sentry/utils/discover/charts';
- import {aggregateOutputType} from 'sentry/utils/discover/fields';
- import useRouter from 'sentry/utils/useRouter';
- type Props = {
- data: Series[];
- end: DateString;
- loading: boolean;
- start: DateString;
- statsPeriod: string | null | undefined;
- utc: boolean;
- chartColors?: string[];
- definedAxisTicks?: number;
- disableMultiAxis?: boolean;
- disableXAxis?: boolean;
- grid?: AreaChartProps['grid'];
- height?: number;
- isLineChart?: boolean;
- previousData?: Series[];
- };
- // adapted from https://stackoverflow.com/questions/11397239/rounding-up-for-a-graph-maximum
- export function computeAxisMax(data: Series[]) {
- // assumes min is 0
- const valuesDict = data.map(value => value.data.map(point => point.value));
- const maxValue = max(valuesDict.map(max)) as number;
- if (maxValue <= 1) {
- return 1;
- }
- const power = Math.log10(maxValue);
- const magnitude = min([max([10 ** (power - Math.floor(power)), 0]), 10]) as number;
- let scale: number;
- if (magnitude <= 2.5) {
- scale = 0.2;
- } else if (magnitude <= 5) {
- scale = 0.5;
- } else if (magnitude <= 7.5) {
- scale = 1.0;
- } else {
- scale = 2.0;
- }
- const step = 10 ** Math.floor(power) * scale;
- return Math.round(Math.ceil(maxValue / step) * step);
- }
- function Chart({
- data,
- previousData,
- statsPeriod,
- start,
- end,
- utc,
- loading,
- height,
- grid,
- disableMultiAxis,
- disableXAxis,
- definedAxisTicks,
- chartColors,
- isLineChart,
- }: Props) {
- const router = useRouter();
- const theme = useTheme();
- if (!data || data.length <= 0) {
- return null;
- }
- const colors = chartColors ?? theme.charts.getColorPalette(4);
- const durationOnly = data.every(
- value => aggregateOutputType(value.seriesName) === 'duration'
- );
- const dataMax = durationOnly ? computeAxisMax(data) : undefined;
- const xAxes = disableMultiAxis
- ? undefined
- : [
- {
- gridIndex: 0,
- type: 'time' as const,
- },
- {
- gridIndex: 1,
- type: 'time' as const,
- },
- ];
- const durationUnit = getDurationUnit(data);
- const yAxes = disableMultiAxis
- ? [
- {
- minInterval: durationUnit,
- splitNumber: definedAxisTicks,
- axisLabel: {
- color: theme.chartLabel,
- formatter(value: number) {
- return axisLabelFormatter(
- value,
- aggregateOutputType(data[0].seriesName),
- undefined,
- durationUnit
- );
- },
- },
- },
- ]
- : [
- {
- gridIndex: 0,
- scale: true,
- minInterval: durationUnit,
- max: dataMax,
- axisLabel: {
- color: theme.chartLabel,
- formatter(value: number) {
- return axisLabelFormatter(
- value,
- aggregateOutputType(data[0].seriesName),
- undefined,
- durationUnit
- );
- },
- },
- },
- {
- gridIndex: 1,
- scale: true,
- max: dataMax,
- minInterval: durationUnit,
- axisLabel: {
- color: theme.chartLabel,
- formatter(value: number) {
- return axisLabelFormatter(
- value,
- aggregateOutputType(data[1].seriesName),
- undefined,
- durationUnit
- );
- },
- },
- },
- ];
- const axisPointer = disableMultiAxis
- ? undefined
- : {
- // Link the two series x-axis together.
- link: [{xAxisIndex: [0, 1]}],
- };
- const areaChartProps = {
- seriesOptions: {
- showSymbol: false,
- },
- grid: disableMultiAxis
- ? grid
- : [
- {
- top: '8px',
- left: '24px',
- right: '52%',
- bottom: '16px',
- },
- {
- top: '8px',
- left: '52%',
- right: '24px',
- bottom: '16px',
- },
- ],
- axisPointer,
- xAxes,
- yAxes,
- utc,
- isGroupedByDate: true,
- showTimeInTooltip: true,
- colors: [colors[0], colors[1]] as string[],
- tooltip: {
- valueFormatter: (value, seriesName) => {
- return tooltipFormatter(
- value,
- aggregateOutputType(data?.length ? data[0].seriesName : seriesName)
- );
- },
- nameFormatter(value: string) {
- return value === 'epm()' ? 'tpm()' : value;
- },
- },
- };
- if (loading) {
- if (isLineChart) {
- return <LineChart height={height} series={[]} {...areaChartProps} />;
- }
- return <AreaChart height={height} series={[]} {...areaChartProps} />;
- }
- const series = data.map((values, i: number) => ({
- ...values,
- yAxisIndex: i,
- xAxisIndex: i,
- }));
- const xAxis = disableXAxis
- ? {
- show: false,
- axisLabel: {show: true, margin: 0},
- axisLine: {show: false},
- }
- : undefined;
- return (
- <ChartZoom
- router={router}
- period={statsPeriod}
- start={start}
- end={end}
- utc={utc}
- xAxisIndex={disableMultiAxis ? undefined : [0, 1]}
- >
- {zoomRenderProps => {
- if (isLineChart) {
- return (
- <LineChart
- height={height}
- {...zoomRenderProps}
- series={series}
- previousPeriod={previousData}
- xAxis={xAxis}
- yAxis={areaChartProps.yAxes[0]}
- tooltip={areaChartProps.tooltip}
- />
- );
- }
- return (
- <AreaChart
- height={height}
- {...zoomRenderProps}
- series={series}
- previousPeriod={previousData}
- xAxis={xAxis}
- {...areaChartProps}
- />
- );
- }}
- </ChartZoom>
- );
- }
- export default Chart;
|