123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- import {useTheme} from '@emotion/react';
- import type {LegendComponentOption, LineSeriesOption} from 'echarts';
- import ChartZoom from 'sentry/components/charts/chartZoom';
- import type {LineChartProps} from 'sentry/components/charts/lineChart';
- import {LineChart} from 'sentry/components/charts/lineChart';
- import TransitionChart from 'sentry/components/charts/transitionChart';
- import TransparentLoadingMask from 'sentry/components/charts/transparentLoadingMask';
- import {normalizeDateTimeParams} from 'sentry/components/organizations/pageFilters/parse';
- import type {OrganizationSummary} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import {getUtcToLocalDateObject} from 'sentry/utils/dates';
- import {
- axisLabelFormatter,
- getDurationUnit,
- tooltipFormatter,
- } from 'sentry/utils/discover/charts';
- import {aggregateOutputType} from 'sentry/utils/discover/fields';
- import getDynamicText from 'sentry/utils/getDynamicText';
- import {decodeList} from 'sentry/utils/queryString';
- import {useLocation} from 'sentry/utils/useLocation';
- import useRouter from 'sentry/utils/useRouter';
- import generateTrendFunctionAsString from 'sentry/views/performance/trends/utils/generateTrendFunctionAsString';
- import transformEventStats from 'sentry/views/performance/trends/utils/transformEventStats';
- import {getIntervalLine} from 'sentry/views/performance/utils/getIntervalLine';
- import type {ViewProps} from '../types';
- import type {
- NormalizedTrendsTransaction,
- TrendChangeType,
- TrendFunctionField,
- TrendsStats,
- } from './types';
- import {
- getCurrentTrendFunction,
- getCurrentTrendParameter,
- getUnselectedSeries,
- transformEventStatsSmoothed,
- trendToColor,
- } from './utils';
- type Props = ViewProps & {
- isLoading: boolean;
- organization: OrganizationSummary;
- projects: Project[];
- statsData: TrendsStats;
- trendChangeType: TrendChangeType;
- additionalSeries?: LineSeriesOption[];
- applyRegressionFormatToInterval?: boolean;
- disableLegend?: boolean;
- disableXAxis?: boolean;
- grid?: LineChartProps['grid'];
- height?: number;
- neutralColor?: boolean;
- transaction?: NormalizedTrendsTransaction;
- trendFunctionField?: TrendFunctionField;
- };
- function getLegend(trendFunction: string): LegendComponentOption {
- return {
- right: 10,
- top: 0,
- itemGap: 12,
- align: 'left',
- data: [
- {
- name: 'Baseline',
- icon: 'path://M180 1000 l0 -40 200 0 200 0 0 40 0 40 -200 0 -200 0 0 -40z, M810 1000 l0 -40 200 0 200 0 0 40 0 40 -200 0 -200 0 0 -40zm, M1440 1000 l0 -40 200 0 200 0 0 40 0 40 -200 0 -200 0 0 -40z',
- },
- {
- name: 'Releases',
- },
- {
- name: trendFunction,
- },
- ],
- };
- }
- export function Chart({
- trendChangeType,
- statsPeriod,
- transaction,
- statsData,
- isLoading,
- start: propsStart,
- end: propsEnd,
- trendFunctionField,
- disableXAxis,
- disableLegend,
- neutralColor,
- grid,
- height,
- projects,
- project,
- organization,
- additionalSeries,
- applyRegressionFormatToInterval = false,
- }: Props) {
- const location = useLocation();
- const router = useRouter();
- const theme = useTheme();
- const handleLegendSelectChanged = legendChange => {
- const {selected} = legendChange;
- const unselected = Object.keys(selected).filter(key => !selected[key]);
- const query = {
- ...location.query,
- };
- const queryKey = getUnselectedSeries(trendChangeType);
- query[queryKey] = unselected;
- const to = {
- ...location,
- query,
- };
- browserHistory.push(to);
- };
- const derivedTrendChangeType = organization.features.includes('performance-new-trends')
- ? transaction?.change
- : trendChangeType;
- const lineColor =
- trendToColor[neutralColor ? 'neutral' : derivedTrendChangeType || trendChangeType];
- const events =
- statsData && transaction?.project && transaction?.transaction
- ? statsData[[transaction.project, transaction.transaction].join(',')]
- : undefined;
- const data = events?.data ?? [];
- const trendFunction = getCurrentTrendFunction(location, trendFunctionField);
- const trendParameter = getCurrentTrendParameter(location, projects, project);
- const chartLabel = generateTrendFunctionAsString(
- trendFunction.field,
- trendParameter.column
- );
- const results = transformEventStats(data, chartLabel);
- const {smoothedResults, minValue, maxValue} = transformEventStatsSmoothed(
- results,
- chartLabel
- );
- const start = propsStart ? getUtcToLocalDateObject(propsStart) : null;
- const end = propsEnd ? getUtcToLocalDateObject(propsEnd) : null;
- const {utc} = normalizeDateTimeParams(location.query);
- const seriesSelection = decodeList(
- location.query[getUnselectedSeries(trendChangeType)]
- ).reduce((selection, metric) => {
- selection[metric] = false;
- return selection;
- }, {});
- const legend: LegendComponentOption = disableLegend
- ? {show: false}
- : {
- ...getLegend(chartLabel),
- selected: seriesSelection,
- };
- const loading = isLoading;
- const reloading = isLoading;
- const yMax = Math.max(
- maxValue,
- transaction?.aggregate_range_2 || 0,
- transaction?.aggregate_range_1 || 0
- );
- const yMin = Math.min(
- minValue,
- transaction?.aggregate_range_1 || Number.MAX_SAFE_INTEGER,
- transaction?.aggregate_range_2 || Number.MAX_SAFE_INTEGER
- );
- const smoothedSeries = smoothedResults
- ? smoothedResults.map(values => {
- return {
- ...values,
- color: lineColor.default,
- lineStyle: {
- opacity: 1,
- },
- };
- })
- : [];
- const needsLabel = true;
- const intervalSeries = getIntervalLine(
- theme,
- smoothedResults || [],
- 0.5,
- needsLabel,
- transaction,
- applyRegressionFormatToInterval
- );
- const yDiff = yMax - yMin;
- const yMargin = yDiff * 0.1;
- const series = [...smoothedSeries, ...intervalSeries];
- const durationUnit = getDurationUnit(series);
- const chartOptions: Omit<LineChartProps, 'series'> = {
- tooltip: {
- valueFormatter: (value, seriesName) => {
- return tooltipFormatter(value, aggregateOutputType(seriesName));
- },
- },
- yAxis: {
- min: Math.max(0, yMin - yMargin),
- max: yMax + yMargin,
- minInterval: durationUnit,
- axisLabel: {
- color: theme.chartLabel,
- formatter: (value: number) =>
- axisLabelFormatter(value, 'duration', undefined, durationUnit),
- },
- },
- };
- return (
- <ChartZoom
- router={router}
- period={statsPeriod}
- start={start}
- end={end}
- utc={utc === 'true'}
- >
- {zoomRenderProps => {
- return (
- <TransitionChart loading={loading} reloading={reloading}>
- <TransparentLoadingMask visible={reloading} />
- {getDynamicText({
- value: (
- <LineChart
- height={height}
- {...zoomRenderProps}
- {...chartOptions}
- additionalSeries={additionalSeries}
- onLegendSelectChanged={handleLegendSelectChanged}
- series={series}
- seriesOptions={{
- showSymbol: false,
- }}
- legend={legend}
- toolBox={{
- show: false,
- }}
- grid={
- grid ?? {
- left: '10px',
- right: '10px',
- top: '40px',
- bottom: '0px',
- }
- }
- xAxis={disableXAxis ? {show: false} : undefined}
- />
- ),
- fixed: 'Duration Chart',
- })}
- </TransitionChart>
- );
- }}
- </ChartZoom>
- );
- }
- export default Chart;
|