mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
24 lines
675 B
TypeScript
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} />;
|
|
}
|