D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
plugins
/
admin
/
components
/
Badges
/
Filename :
PluginDisabledBadge.tsx
back
Copy
import React from 'react'; import { PluginErrorCode } from '@grafana/data'; import { Badge } from '@grafana/ui'; type Props = { error?: PluginErrorCode }; export function PluginDisabledBadge({ error }: Props): React.ReactElement { const tooltip = errorCodeToTooltip(error); return <Badge icon="exclamation-triangle" text="Disabled" color="red" tooltip={tooltip} />; } function errorCodeToTooltip(error?: PluginErrorCode): string | undefined { switch (error) { case PluginErrorCode.modifiedSignature: return 'Plugin disabled due to modified content'; case PluginErrorCode.invalidSignature: return 'Plugin disabled due to invalid plugin signature'; case PluginErrorCode.missingSignature: return 'Plugin disabled due to missing plugin signature'; case null: case undefined: return 'Plugin disabled'; default: return `Plugin disabled due to unknown error${error ? `: ${error}` : ''}`; } }