import React, { useState } from 'react'; import { css, cx } from '@emotion/css'; import { satisfies } from 'semver'; import { config } from '@grafana/runtime'; import { Button, HorizontalGroup, Icon, LinkButton, useStyles2 } from '@grafana/ui'; import { AppEvents, GrafanaTheme2 } from '@grafana/data'; import appEvents from 'app/core/app_events'; import { CatalogPluginDetails } from '../types'; import { api } from '../api'; import { isGrafanaAdmin } from '../helpers'; interface Props { plugin: CatalogPluginDetails; } export const InstallControls = ({ plugin }: Props) => { const [loading, setLoading] = useState(false); const [isInstalled, setIsInstalled] = useState(plugin.isInstalled || false); const [shouldUpdate, setShouldUpdate] = useState(plugin.hasUpdate || false); const [hasInstalledPanel, setHasInstalledPanel] = useState(false); const isExternallyManaged = config.pluginAdminExternalManageEnabled; const externalManageLink = getExternalManageLink(plugin); const styles = useStyles2(getStyles); if (!plugin) { return null; } const onInstall = async () => { setLoading(true); try { await api.installPlugin(plugin.id, plugin.version); appEvents.emit(AppEvents.alertSuccess, [`Installed ${plugin.name}`]); setLoading(false); setIsInstalled(true); setHasInstalledPanel(plugin.type === 'panel'); } catch (error) { setLoading(false); } }; const onUninstall = async () => { setLoading(true); try { await api.uninstallPlugin(plugin.id); appEvents.emit(AppEvents.alertSuccess, [`Uninstalled ${plugin.name}`]); setLoading(false); setIsInstalled(false); } catch (error) { setLoading(false); } }; const onUpdate = async () => { setLoading(true); try { await api.installPlugin(plugin.id, plugin.version); appEvents.emit(AppEvents.alertSuccess, [`Updated ${plugin.name}`]); setLoading(false); setShouldUpdate(false); } catch (error) { setLoading(false); } }; const grafanaDependency = plugin.grafanaDependency; const unsupportedGrafanaVersion = grafanaDependency ? !satisfies(config.buildInfo.version, grafanaDependency, { // needed for when running against master includePrerelease: true, }) : false; const isDevelopmentBuild = Boolean(plugin.isDev); const isEnterprise = plugin.isEnterprise; const isCore = plugin.isCore; const hasPermission = isGrafanaAdmin(); if (isCore) { return null; } if (isEnterprise && !config.licenseInfo?.hasValidLicense) { return (
Marketplace doesn't support installing Enterprise plugins yet. Stay tuned!
); } if (isDevelopmentBuild) { return (
This is a development build of the plugin and can't be uninstalled.
); } if (isInstalled) { return ( {shouldUpdate && (isExternallyManaged ? ( {'Update via grafana.com'} ) : ( ))} {isExternallyManaged ? ( {'Uninstall via grafana.com'} ) : ( <> {hasInstalledPanel && (
Please refresh your browser window before using this plugin.
)} {!hasPermission &&
You need admin privileges to manage this plugin.
} )}
); } if (unsupportedGrafanaVersion) { return (
 This plugin doesn't support your version of Grafana.
); } return ( {isExternallyManaged ? ( {'Install via grafana.com'} ) : ( <> {!hasPermission &&
You need admin privileges to install this plugin.
} )}
); }; function getExternalManageLink(plugin: CatalogPluginDetails): string { return `https://grafana.com/grafana/plugins/${plugin.id}`; } export const getStyles = (theme: GrafanaTheme2) => { return { message: css` color: ${theme.colors.text.secondary}; `, messageMargin: css` margin-left: ${theme.spacing()}; `, }; };