mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Theme: Updates Alert design and licence warning hook * Updated snapshot * Updated design * Updated
30 lines
762 B
TypeScript
30 lines
762 B
TypeScript
import React, { FC } from 'react';
|
|
import { AlphaNotice } from '@grafana/ui';
|
|
import { PluginState } from '@grafana/data';
|
|
|
|
interface Props {
|
|
state?: PluginState;
|
|
}
|
|
|
|
function getPluginStateInfoText(state?: PluginState): string | null {
|
|
switch (state) {
|
|
case PluginState.alpha:
|
|
return 'Alpha Plugin: This plugin is a work in progress and updates may include breaking changes';
|
|
case PluginState.beta:
|
|
return 'Beta Plugin: There could be bugs and minor breaking changes to this plugin';
|
|
}
|
|
return null;
|
|
}
|
|
|
|
const PluginStateinfo: FC<Props> = (props) => {
|
|
const text = getPluginStateInfoText(props.state);
|
|
|
|
if (!text) {
|
|
return null;
|
|
}
|
|
|
|
return <AlphaNotice state={props.state} text={text} />;
|
|
};
|
|
|
|
export default PluginStateinfo;
|