grafana_bak/public/app/features/explore/ResponseErrorContainer.tsx
2025-04-01 10:38:02 +09:00

20 lines
608 B
TypeScript

import { LoadingState } from '@grafana/data';
import { useSelector } from 'app/types';
import { ErrorContainer } from './ErrorContainer';
interface Props {
exploreId: string;
}
export function ResponseErrorContainer(props: Props) {
const queryResponse = useSelector((state) => state.explore.panes[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} />;
}