2023-10-08 23:21:17 +05:30
|
|
|
import { PANEL_TYPES } from 'constants/queryBuilder';
|
|
|
|
|
import { useGetQueryRange } from 'hooks/queryBuilder/useGetQueryRange';
|
|
|
|
|
import { useStepInterval } from 'hooks/queryBuilder/useStepInterval';
|
|
|
|
|
import { getDashboardVariables } from 'lib/dashbaordVariables/getDashboardVariables';
|
|
|
|
|
import getChartData from 'lib/getChartData';
|
|
|
|
|
import isEmpty from 'lodash-es/isEmpty';
|
|
|
|
|
import { useDashboard } from 'providers/Dashboard/Dashboard';
|
|
|
|
|
import { memo, useMemo, useState } from 'react';
|
|
|
|
|
import { useInView } from 'react-intersection-observer';
|
|
|
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
|
|
|
import { UpdateTimeInterval } from 'store/actions';
|
|
|
|
|
import { AppState } from 'store/reducers';
|
|
|
|
|
import { GlobalReducer } from 'types/reducer/globalTime';
|
|
|
|
|
|
|
|
|
|
import EmptyWidget from '../EmptyWidget';
|
|
|
|
|
import { MenuItemKeys } from '../WidgetHeader/contants';
|
|
|
|
|
import { GridCardGraphProps } from './types';
|
|
|
|
|
import WidgetGraphComponent from './WidgetGraphComponent';
|
|
|
|
|
|
|
|
|
|
function GridCardGraph({
|
|
|
|
|
widget,
|
|
|
|
|
name,
|
|
|
|
|
onClickHandler,
|
|
|
|
|
headerMenuList = [MenuItemKeys.View],
|
|
|
|
|
isQueryEnabled,
|
|
|
|
|
threshold,
|
|
|
|
|
}: GridCardGraphProps): JSX.Element {
|
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
const [errorMessage, setErrorMessage] = useState<string>();
|
|
|
|
|
|
|
|
|
|
const onDragSelect = (start: number, end: number): void => {
|
|
|
|
|
const startTimestamp = Math.trunc(start);
|
|
|
|
|
const endTimestamp = Math.trunc(end);
|
|
|
|
|
|
|
|
|
|
if (startTimestamp !== endTimestamp) {
|
|
|
|
|
dispatch(UpdateTimeInterval('custom', [startTimestamp, endTimestamp]));
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const { ref: graphRef, inView: isGraphVisible } = useInView({
|
|
|
|
|
threshold: 0,
|
|
|
|
|
triggerOnce: true,
|
|
|
|
|
initialInView: false,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const { selectedDashboard } = useDashboard();
|
|
|
|
|
|
|
|
|
|
const { minTime, maxTime, selectedTime: globalSelectedInterval } = useSelector<
|
|
|
|
|
AppState,
|
|
|
|
|
GlobalReducer
|
|
|
|
|
>((state) => state.globalTime);
|
|
|
|
|
|
|
|
|
|
const updatedQuery = useStepInterval(widget?.query);
|
|
|
|
|
|
|
|
|
|
const isEmptyWidget =
|
|
|
|
|
widget?.id === PANEL_TYPES.EMPTY_WIDGET || isEmpty(widget);
|
|
|
|
|
|
|
|
|
|
const queryResponse = useGetQueryRange(
|
|
|
|
|
{
|
|
|
|
|
selectedTime: widget?.timePreferance,
|
|
|
|
|
graphType: widget?.panelTypes,
|
|
|
|
|
query: updatedQuery,
|
|
|
|
|
globalSelectedInterval,
|
|
|
|
|
variables: getDashboardVariables(selectedDashboard?.data.variables),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
queryKey: [
|
|
|
|
|
maxTime,
|
|
|
|
|
minTime,
|
|
|
|
|
globalSelectedInterval,
|
|
|
|
|
selectedDashboard?.data?.variables,
|
2023-10-12 17:27:51 +05:30
|
|
|
widget?.query,
|
|
|
|
|
widget?.panelTypes,
|
|
|
|
|
widget.timePreferance,
|
2023-10-08 23:21:17 +05:30
|
|
|
],
|
|
|
|
|
keepPreviousData: true,
|
|
|
|
|
enabled: isGraphVisible && !isEmptyWidget && isQueryEnabled,
|
|
|
|
|
refetchOnMount: false,
|
|
|
|
|
onError: (error) => {
|
|
|
|
|
setErrorMessage(error.message);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const chartData = useMemo(
|
|
|
|
|
() =>
|
|
|
|
|
getChartData({
|
|
|
|
|
queryData: [
|
|
|
|
|
{
|
|
|
|
|
queryData: queryResponse?.data?.payload?.data?.result || [],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
createDataset: undefined,
|
2023-10-20 14:14:37 +05:30
|
|
|
isWarningLimit: widget.panelTypes === PANEL_TYPES.TIME_SERIES,
|
2023-10-08 23:21:17 +05:30
|
|
|
}),
|
2023-10-20 14:14:37 +05:30
|
|
|
[queryResponse, widget?.panelTypes],
|
2023-10-08 23:21:17 +05:30
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const isEmptyLayout = widget?.id === PANEL_TYPES.EMPTY_WIDGET;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<span ref={graphRef}>
|
|
|
|
|
<WidgetGraphComponent
|
|
|
|
|
widget={widget}
|
|
|
|
|
queryResponse={queryResponse}
|
|
|
|
|
errorMessage={errorMessage}
|
|
|
|
|
data={chartData.data}
|
|
|
|
|
isWarning={chartData.isWarning}
|
|
|
|
|
name={name}
|
|
|
|
|
onDragSelect={onDragSelect}
|
|
|
|
|
threshold={threshold}
|
|
|
|
|
headerMenuList={headerMenuList}
|
|
|
|
|
onClickHandler={onClickHandler}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
{isEmptyLayout && <EmptyWidget />}
|
|
|
|
|
</span>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GridCardGraph.defaultProps = {
|
|
|
|
|
onDragSelect: undefined,
|
|
|
|
|
onClickHandler: undefined,
|
|
|
|
|
isQueryEnabled: true,
|
|
|
|
|
threshold: undefined,
|
|
|
|
|
headerMenuList: [MenuItemKeys.View],
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default memo(GridCardGraph);
|