mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* CloudWatch: Datasource improvements * Add statistic as template variale * Add wildcard to list of values * Template variable intercept dimension key * Return row specific errors when transformation error occured * Add meta feedback * Make it possible to retrieve values without known metrics * Add curated dashboard for EC2 * Fix broken tests * Use correct dashboard name * Display alert in case multi template var is being used for some certain props in the cloudwatch query * Minor fixes after feedback * Update dashboard json * Update snapshot test * Make sure region default is intercepted in cloudwatch link * Update dashboards * Include ec2 dashboard in ds * Do not include ec2 dashboard in beta1 * Display actual region
35 lines
959 B
TypeScript
35 lines
959 B
TypeScript
import React, { Component } from 'react';
|
|
import { AppNotification } from 'app/types';
|
|
import { Alert } from '@grafana/ui';
|
|
|
|
interface Props {
|
|
appNotification: AppNotification;
|
|
onClearNotification: (id: number) => void;
|
|
}
|
|
|
|
export default class AppNotificationItem extends Component<Props> {
|
|
shouldComponentUpdate(nextProps: Props) {
|
|
return this.props.appNotification.id !== nextProps.appNotification.id;
|
|
}
|
|
|
|
componentDidMount() {
|
|
const { appNotification, onClearNotification } = this.props;
|
|
setTimeout(() => {
|
|
onClearNotification(appNotification.id);
|
|
}, appNotification.timeout);
|
|
}
|
|
|
|
render() {
|
|
const { appNotification, onClearNotification } = this.props;
|
|
|
|
return (
|
|
<Alert
|
|
severity={appNotification.severity}
|
|
title={appNotification.title}
|
|
children={appNotification.component || appNotification.text}
|
|
onRemove={() => onClearNotification(appNotification.id)}
|
|
/>
|
|
);
|
|
}
|
|
}
|