123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- import type {RefObject} from 'react';
- import {Fragment, useCallback, useEffect, useMemo, useRef, useState} from 'react';
- import {useTheme} from '@emotion/react';
- import styled from '@emotion/styled';
- import {useResizeObserver} from '@react-aria/utils';
- import color from 'color';
- import isEqual from 'lodash/isEqual';
- import moment from 'moment';
- import {Button} from 'sentry/components/button';
- import type {DateTimeObject} from 'sentry/components/charts/utils';
- import {IconClose, IconZoom} from 'sentry/icons';
- import {space} from 'sentry/styles/space';
- import type {DateString} from 'sentry/types';
- import type {EChartBrushEndHandler, ReactEchartsRef} from 'sentry/types/echarts';
- import mergeRefs from 'sentry/utils/mergeRefs';
- import type {ValueRect} from 'sentry/views/ddm/chart/chartUtils';
- import {getValueRect} from 'sentry/views/ddm/chart/chartUtils';
- import type {
- CombinedMetricChartProps,
- FocusAreaSelection,
- SelectionRange,
- } from 'sentry/views/ddm/chart/types';
- import {
- SAMPLES_X_AXIS_ID,
- SAMPLES_Y_AXIS_ID,
- } from 'sentry/views/ddm/chart/useMetricChartSamples';
- import {CHART_HEIGHT} from 'sentry/views/ddm/constants';
- import type {FocusAreaProps} from 'sentry/views/ddm/context';
- interface AbsolutePosition {
- height: string;
- left: string;
- top: string;
- width: string;
- }
- interface UseFocusAreaOptions {
- widgetIndex: number;
- isDisabled?: boolean;
- useFullYAxis?: boolean;
- }
- export interface UseFocusAreaProps extends FocusAreaProps {
- chartRef: RefObject<ReactEchartsRef>;
- opts: UseFocusAreaOptions;
- scalingFactor: number;
- chartUnit?: string;
- onZoom?: (range: DateTimeObject) => void;
- sampleUnit?: string;
- }
- type BrushEndResult = Parameters<EChartBrushEndHandler>[0];
- export function useFocusArea({
- selection: selection,
- opts: {widgetIndex, isDisabled, useFullYAxis},
- onAdd,
- onDraw,
- onRemove,
- onZoom,
- }: UseFocusAreaProps) {
- const hasFocusArea = selection && selection.widgetIndex === widgetIndex;
- const chartRef = useRef<ReactEchartsRef>(null);
- const chartElement = chartRef.current?.ele;
- const isDrawingRef = useRef(false);
- const theme = useTheme();
- const startBrush = useCallback(() => {
- if (hasFocusArea || isDisabled) {
- return;
- }
- onDraw?.();
- chartRef.current?.getEchartsInstance().dispatchAction({
- type: 'takeGlobalCursor',
- key: 'brush',
- brushOption: {
- brushType: 'rect',
- },
- });
- }, [chartRef, hasFocusArea, isDisabled, onDraw]);
- useEffect(() => {
- const handleMouseDown = () => {
- isDrawingRef.current = true;
- startBrush();
- };
- // Handle mouse up is called after onBrushEnd
- // We can use it for a final reliable cleanup as onBrushEnd is not always called (e.g. when simply clicking the chart)
- const handleMouseUp = () => {
- isDrawingRef.current = false;
- };
- chartElement?.addEventListener('mousedown', handleMouseDown, {capture: true});
- window.addEventListener('mouseup', handleMouseUp);
- return () => {
- chartElement?.removeEventListener('mousedown', handleMouseDown, {capture: true});
- window.removeEventListener('mouseup', handleMouseUp);
- };
- }, [chartElement, startBrush]);
- const onBrushEnd = useCallback(
- (brushEnd: BrushEndResult) => {
- if (isDisabled || !isDrawingRef.current) {
- return;
- }
- const rect = brushEnd.areas[0];
- if (!rect) {
- return;
- }
- const range = getSelectionRange(brushEnd, !!useFullYAxis, getValueRect(chartRef));
- onAdd?.({
- widgetIndex,
- range,
- });
- // Remove brush from echarts immediately after adding the focus area
- // since brushes get added to all charts in the group by default and then randomly
- // render in the wrong place
- chartRef.current?.getEchartsInstance().dispatchAction({
- type: 'brush',
- brushType: 'clear',
- areas: [],
- });
- isDrawingRef.current = false;
- },
- [isDisabled, useFullYAxis, onAdd, widgetIndex]
- );
- const handleRemove = useCallback(() => {
- onRemove?.();
- }, [onRemove]);
- const handleZoomIn = useCallback(() => {
- handleRemove();
- onZoom?.({
- period: null,
- ...selection?.range,
- });
- }, [selection, handleRemove, onZoom]);
- const applyChartProps = useCallback(
- (baseProps: CombinedMetricChartProps): CombinedMetricChartProps => {
- return {
- ...baseProps,
- forwardedRef: mergeRefs([baseProps.forwardedRef, chartRef]),
- tooltip: {
- formatter: (params, asyncTicket) => {
- // Deactivate tooltips while drawing
- if (isDrawingRef.current) {
- return '';
- }
- const baseFormatter = baseProps.tooltip?.formatter;
- if (typeof baseFormatter === 'string') {
- return baseFormatter;
- }
- if (!baseFormatter) {
- throw new Error(
- 'You need to define a tooltip formatter for the chart when using the focus area'
- );
- }
- return baseFormatter(params, asyncTicket);
- },
- },
- onBrushEnd,
- toolBox: {
- show: false,
- },
- brush: {
- toolbox: ['rect'],
- xAxisIndex: Array.isArray(baseProps.xAxes)
- ? baseProps.xAxes.findIndex(a => a?.id === SAMPLES_X_AXIS_ID)
- : 0,
- yAxisIndex: Array.isArray(baseProps.yAxes)
- ? baseProps.yAxes.findIndex(a => a?.id === SAMPLES_Y_AXIS_ID)
- : 0,
- brushStyle: {
- borderWidth: 2,
- borderColor: theme.gray500,
- color: 'transparent',
- },
- inBrush: {
- opacity: 1,
- },
- outOfBrush: {
- opacity: 1,
- },
- z: 10,
- },
- };
- },
- [onBrushEnd, theme.gray500]
- );
- return useMemo(
- () => ({
- applyChartProps,
- overlay: hasFocusArea ? (
- <FocusAreaOverlay
- rect={selection!}
- onRemove={handleRemove}
- onZoom={handleZoomIn}
- chartRef={chartRef}
- useFullYAxis={!!useFullYAxis}
- />
- ) : null,
- }),
- [applyChartProps, handleRemove, handleZoomIn, hasFocusArea, selection, useFullYAxis]
- );
- }
- export type UseFocusAreaResult = ReturnType<typeof useFocusArea>;
- type FocusAreaOverlayProps = {
- chartRef: RefObject<ReactEchartsRef>;
- onRemove: () => void;
- onZoom: () => void;
- rect: FocusAreaSelection | null;
- useFullYAxis: boolean;
- };
- function FocusAreaOverlay({
- rect,
- onZoom,
- onRemove,
- useFullYAxis,
- chartRef,
- }: FocusAreaOverlayProps) {
- const [position, setPosition] = useState<AbsolutePosition | null>(null);
- const wrapperRef = useRef<HTMLDivElement>(null);
- useResizeObserver({
- ref: wrapperRef,
- onResize: () => {
- const chartInstance = chartRef.current?.getEchartsInstance();
- chartInstance?.resize();
- updatePosition();
- },
- });
- const updatePosition = useCallback(() => {
- const chartInstance = chartRef.current?.getEchartsInstance();
- if (
- !rect ||
- !chartInstance ||
- rect.range.max === undefined ||
- rect.range.min === undefined ||
- rect.range.start === undefined ||
- rect.range.end === undefined
- ) {
- return;
- }
- const finder = {xAxisId: SAMPLES_X_AXIS_ID, yAxisId: SAMPLES_Y_AXIS_ID};
- const max = rect.range.max;
- const min = rect.range.min;
- const topLeft = chartInstance.convertToPixel(finder, [
- getTimestamp(rect.range.start),
- max,
- ]);
- const bottomRight = chartInstance.convertToPixel(finder, [
- getTimestamp(rect.range.end),
- min,
- ] as number[]);
- if (!topLeft || !bottomRight) {
- return;
- }
- const widthPx = bottomRight[0] - topLeft[0];
- const heightPx = bottomRight[1] - topLeft[1];
- const resultTop = useFullYAxis ? '0px' : `${topLeft[1].toPrecision(5)}px`;
- const resultHeight = useFullYAxis
- ? `${CHART_HEIGHT}px`
- : `${heightPx.toPrecision(5)}px`;
- // Ensure the focus area rect is always within the chart bounds
- const left = Math.max(topLeft[0], 0);
- const width = Math.min(widthPx, chartInstance.getWidth() - left);
- const newPosition = {
- left: `${left.toPrecision(5)}px`,
- top: resultTop,
- width: `${width.toPrecision(5)}px`,
- height: resultHeight,
- };
- if (!isEqual(newPosition, position)) {
- setPosition(newPosition);
- }
- }, [chartRef, rect, useFullYAxis, position]);
- useEffect(() => {
- // In some cases echarts is not yet done with updating the chart
- // and the sample axes are not yet available to read the position from
- // so we need to delay the update until the next microtask
- queueMicrotask(updatePosition);
- }, [rect, updatePosition]);
- if (!position) {
- return null;
- }
- const {left, top, width, height} = position;
- return (
- <Fragment>
- <FocusAreaWrapper ref={wrapperRef}>
- <FocusAreaRect top={top} left={left} width={width} height={height} />
- </FocusAreaWrapper>
- <FocusAreaRectActions top={top} rectHeight={height} left={left}>
- <Button
- size="xs"
- onClick={onZoom}
- icon={<IconZoom isZoomIn />}
- aria-label="zoom"
- />
- <Button size="xs" onClick={onRemove} icon={<IconClose />} aria-label="remove" />
- </FocusAreaRectActions>
- </Fragment>
- );
- }
- const getDateString = (timestamp: number): string =>
- moment.utc(timestamp).format(moment.HTML5_FMT.DATETIME_LOCAL_SECONDS);
- const getTimestamp = (date: DateString) => moment.utc(date).valueOf();
- const getSelectionRange = (
- params: BrushEndResult,
- useFullYAxis: boolean,
- boundingRect: ValueRect
- ): SelectionRange => {
- const rect = params.areas[0];
- const startTimestamp = Math.min(...rect.coordRange[0]);
- const endTimestamp = Math.max(...rect.coordRange[0]);
- const startDate = getDateString(Math.max(startTimestamp, boundingRect.xMin));
- const endDate = getDateString(Math.min(endTimestamp, boundingRect.xMax));
- const min = useFullYAxis ? NaN : Math.min(...rect.coordRange[1]);
- const max = useFullYAxis ? NaN : Math.max(...rect.coordRange[1]);
- return {
- start: startDate,
- end: endDate,
- min,
- max,
- };
- };
- const FocusAreaRectActions = styled('div')<{
- left: string;
- rectHeight: string;
- top: string;
- }>`
- position: absolute;
- top: calc(${p => p.top} + ${p => p.rectHeight});
- left: ${p => p.left};
- display: flex;
- gap: ${space(0.5)};
- padding: ${space(0.5)};
- z-index: 2;
- pointer-events: auto;
- `;
- const FocusAreaWrapper = styled('div')`
- position: absolute;
- top: 0px;
- left: 0;
- height: 100%;
- width: 100%;
- overflow: hidden;
- `;
- const FocusAreaRect = styled('div')<{
- height: string;
- left: string;
- top: string;
- width: string;
- }>`
- position: absolute;
- top: ${p => p.top};
- left: ${p => p.left};
- width: ${p => p.width};
- height: ${p => p.height};
- padding: ${space(1)};
- pointer-events: none;
- z-index: 1;
- border: 2px solid ${p => p.theme.gray500};
- border-radius: ${p => p.theme.borderRadius};
- /* requires overflow: hidden on FocusAreaWrapper */
- box-shadow: 0px 0px 0px 9999px ${p => color(p.theme.surface400).alpha(0.75).toString()};
- `;
|