mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import React, { FC } from 'react';
|
||
|
||
import { Alert } from '@grafana/ui';
|
||
import { useLocalStorage } from 'react-use';
|
||
|
||
export const LOCAL_STORAGE_KEY = 'grafana.legacyalerting.unifiedalertingpromo';
|
||
|
||
const UnifiedAlertingPromotion: FC<{}> = () => {
|
||
const [showUnifiedAlertingPromotion, setShowUnifiedAlertingPromotion] = useLocalStorage<boolean>(
|
||
LOCAL_STORAGE_KEY,
|
||
true
|
||
);
|
||
|
||
if (!showUnifiedAlertingPromotion) {
|
||
return null;
|
||
}
|
||
|
||
return (
|
||
<Alert
|
||
severity="info"
|
||
title="Try out the Grafana 8 alerting!"
|
||
onRemove={() => setShowUnifiedAlertingPromotion(false)}
|
||
>
|
||
<p>
|
||
You are using the legacy Grafana alerting.
|
||
<br />
|
||
While we have no plans of deprecating it any time soon, we invite you to give the improved Grafana 8 alerting a
|
||
try.
|
||
</p>
|
||
<p>
|
||
See{' '}
|
||
<a href="https://grafana.com/docs/grafana/latest/alerting/unified-alerting/difference-old-new/">
|
||
What’s New with Grafana 8 alerting
|
||
</a>{' '}
|
||
to learn more about what‘s new in Grafana 8 alerting or learn{' '}
|
||
<a href="https://grafana.com/docs/grafana/latest/alerting/unified-alerting/opt-in/">
|
||
how to enable the new Grafana 8 alerting feature
|
||
</a>
|
||
.
|
||
</p>
|
||
</Alert>
|
||
);
|
||
};
|
||
|
||
export { UnifiedAlertingPromotion };
|