grafana/public/app/features/explore/ResponseErrorContainer.tsx
kay delaney 64bbb7a7ce
Chore: Update and enforce usage of typed react-redux hooks (#55349)
* Chore: Update and enforce usage of typed react-redux hooks
2022-09-19 10:49:35 +01:00

24 lines
675 B
TypeScript

import React from 'react';
import { LoadingState } from '@grafana/data';
import { useSelector } from 'app/types';
import { ExploreId } from '../../types';
import { ErrorContainer } from './ErrorContainer';
interface Props {
exploreId: ExploreId;
}
export function ResponseErrorContainer(props: Props) {
const queryResponse = useSelector((state) => state.explore[props.exploreId]?.queryResponse);
const queryError = queryResponse?.state === LoadingState.Error ? queryResponse?.error : undefined;
// Errors with ref ids are shown below the corresponding query
if (queryError?.refId) {
return null;
}
return <ErrorContainer queryError={queryError} />;
}