forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
918 B
36 lines
918 B
import React from 'react';
|
|
import { css } from '@emotion/css';
|
|
import { Alert, useStyles } from '@grafana/ui';
|
|
import { GrafanaTheme } from '@grafana/data';
|
|
import { DashboardInitError, AppNotificationSeverity } from 'app/types';
|
|
import { getMessageFromError } from 'app/core/utils/errors';
|
|
|
|
export interface Props {
|
|
initError?: DashboardInitError;
|
|
}
|
|
|
|
export const DashboardFailed = ({ initError }: Props) => {
|
|
const styles = useStyles(getStyles);
|
|
if (!initError) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className={styles.dashboardLoading}>
|
|
<Alert severity={AppNotificationSeverity.Error} title={initError.message}>
|
|
{getMessageFromError(initError.error)}
|
|
</Alert>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const getStyles = (theme: GrafanaTheme) => {
|
|
return {
|
|
dashboardLoading: css`
|
|
height: 60vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
`,
|
|
};
|
|
};
|
|
|