mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
Plugins: update beta notice style (#16928)
This commit is contained in:
parent
b24358aaba
commit
b08cf1e7ac
@ -1,18 +1,29 @@
|
||||
import React, { FC, useContext } from 'react';
|
||||
import { css } from 'emotion';
|
||||
import { PluginState, Tooltip, ThemeContext } from '@grafana/ui';
|
||||
import { PopperContent } from '@grafana/ui/src/components/Tooltip/PopperController';
|
||||
|
||||
interface Props {
|
||||
state?: PluginState;
|
||||
}
|
||||
|
||||
function getPluginStateInfoText(state?: PluginState): string | null {
|
||||
function getPluginStateInfoText(state?: PluginState): PopperContent<any> | null {
|
||||
switch (state) {
|
||||
case PluginState.alpha:
|
||||
return 'Plugin in alpha state. Means work in progress and updates may include breaking changes.';
|
||||
return (
|
||||
<div>
|
||||
<h5>Alpha Plugin</h5>
|
||||
<p>This plugin is a work in progress and updates may include breaking changes.</p>
|
||||
</div>
|
||||
);
|
||||
|
||||
case PluginState.beta:
|
||||
return 'Plugin in beta state. Means there could be bugs and minor breaking changes.';
|
||||
return (
|
||||
<div>
|
||||
<h5>Beta Plugin</h5>
|
||||
<p>There could be bugs and minor breaking changes to this plugin.</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@ -34,10 +45,11 @@ const PluginStateinfo: FC<Props> = props => {
|
||||
font-size: 13px;
|
||||
padding: 4px 8px;
|
||||
margin-left: 16px;
|
||||
cursor: help;
|
||||
`;
|
||||
|
||||
return (
|
||||
<Tooltip content={text}>
|
||||
<Tooltip content={text} theme={'info'} placement={'top'}>
|
||||
<div className={styles}>
|
||||
<i className="fa fa-warning" /> {props.state}
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user