import './UplotPanelWrapper.styles.scss'; import { Alert } from 'antd'; import { ToggleGraphProps } from 'components/Graph/types'; import Uplot from 'components/Uplot'; import { PANEL_TYPES } from 'constants/queryBuilder'; import GraphManager from 'container/GridCardLayout/GridCard/FullView/GraphManager'; import { getLocalStorageGraphVisibilityState } from 'container/GridCardLayout/GridCard/utils'; import { useQueryBuilder } from 'hooks/queryBuilder/useQueryBuilder'; import { useIsDarkMode } from 'hooks/useDarkMode'; import { useResizeObserver } from 'hooks/useDimensions'; import { getUPlotChartOptions } from 'lib/uPlotLib/getUplotChartOptions'; import { getUPlotChartData } from 'lib/uPlotLib/utils/getUplotChartData'; import { cloneDeep, isEqual, isUndefined } from 'lodash-es'; import _noop from 'lodash-es/noop'; import { useDashboard } from 'providers/Dashboard/Dashboard'; import { useEffect, useMemo, useRef, useState } from 'react'; import { getSortedSeriesData } from 'utils/getSortedSeriesData'; import { getTimeRange } from 'utils/getTimeRange'; import { PanelWrapperProps } from './panelWrapper.types'; function UplotPanelWrapper({ queryResponse, widget, isFullViewMode, setGraphVisibility, graphVisibility, onToggleModelHandler, onClickHandler, onDragSelect, selectedGraph, }: PanelWrapperProps): JSX.Element { const { toScrollWidgetId, setToScrollWidgetId } = useDashboard(); const isDarkMode = useIsDarkMode(); const lineChartRef = useRef(); const graphRef = useRef(null); const [minTimeScale, setMinTimeScale] = useState(); const [maxTimeScale, setMaxTimeScale] = useState(); const { currentQuery } = useQueryBuilder(); const [hiddenGraph, setHiddenGraph] = useState<{ [key: string]: boolean }>(); useEffect(() => { if (toScrollWidgetId === widget.id) { graphRef.current?.scrollIntoView({ behavior: 'smooth', block: 'center', }); graphRef.current?.focus(); setToScrollWidgetId(''); } }, [toScrollWidgetId, setToScrollWidgetId, widget.id]); useEffect((): void => { const { startTime, endTime } = getTimeRange(queryResponse); setMinTimeScale(startTime); setMaxTimeScale(endTime); }, [queryResponse]); const containerDimensions = useResizeObserver(graphRef); useEffect(() => { const { graphVisibilityStates: localStoredVisibilityState, } = getLocalStorageGraphVisibilityState({ apiResponse: queryResponse.data?.payload.data.result || [], name: widget.id, }); if (setGraphVisibility) { setGraphVisibility(localStoredVisibilityState); } }, [queryResponse.data?.payload.data.result, setGraphVisibility, widget.id]); if (queryResponse.data && widget.panelTypes === PANEL_TYPES.BAR) { const sortedSeriesData = getSortedSeriesData( queryResponse.data?.payload.data.result, ); // eslint-disable-next-line no-param-reassign queryResponse.data.payload.data.result = sortedSeriesData; } const chartData = getUPlotChartData( queryResponse?.data?.payload, widget.fillSpans, widget?.stackedBarChart, hiddenGraph, ); useEffect(() => { if (widget.panelTypes === PANEL_TYPES.BAR && widget?.stackedBarChart) { const graphV = cloneDeep(graphVisibility)?.slice(1); const isSomeSelectedLegend = graphV?.some((v) => v === false); if (isSomeSelectedLegend) { const hiddenIndex = graphV?.findIndex((v) => v === true); if (!isUndefined(hiddenIndex) && hiddenIndex !== -1) { const updatedHiddenGraph = { [hiddenIndex]: true }; if (!isEqual(hiddenGraph, updatedHiddenGraph)) { setHiddenGraph(updatedHiddenGraph); } } } } }, [graphVisibility, hiddenGraph, widget.panelTypes, widget?.stackedBarChart]); const options = useMemo( () => getUPlotChartOptions({ id: widget?.id, apiResponse: queryResponse.data?.payload, dimensions: containerDimensions, isDarkMode, onDragSelect, yAxisUnit: widget?.yAxisUnit, onClickHandler: onClickHandler || _noop, thresholds: widget.thresholds, minTimeScale, maxTimeScale, softMax: widget.softMax === undefined ? null : widget.softMax, softMin: widget.softMin === undefined ? null : widget.softMin, graphsVisibilityStates: graphVisibility, setGraphsVisibilityStates: setGraphVisibility, panelType: selectedGraph || widget.panelTypes, currentQuery, stackBarChart: widget?.stackedBarChart, hiddenGraph, setHiddenGraph, }), [ widget?.id, widget?.yAxisUnit, widget.thresholds, widget.softMax, widget.softMin, widget.panelTypes, widget?.stackedBarChart, queryResponse.data?.payload, containerDimensions, isDarkMode, onDragSelect, onClickHandler, minTimeScale, maxTimeScale, graphVisibility, setGraphVisibility, selectedGraph, currentQuery, hiddenGraph, ], ); return (
{widget?.stackedBarChart && isFullViewMode && ( )} {isFullViewMode && setGraphVisibility && !widget?.stackedBarChart && ( )}
); } export default UplotPanelWrapper;