grafana/public/app/features/plugins/admin/components/PluginDetailsHeaderDependencies.tsx
Josh Hunt 3c6e0e8ef8
Chore: ESlint import order (#44959)
* Add and configure eslint-plugin-import

* Fix the lint:ts npm command

* Autofix + prettier all the files

* Manually fix remaining files

* Move jquery code in jest-setup to external file to safely reorder imports

* Resolve issue caused by circular dependencies within Prometheus

* Update .betterer.results

* Fix missing // @ts-ignore

* ignore iconBundle.ts

* Fix missing // @ts-ignore
2022-04-22 14:33:13 +01:00

77 lines
2.0 KiB
TypeScript

import { css } from '@emotion/css';
import React from 'react';
import { GrafanaTheme2 } from '@grafana/data';
import { useStyles2, Icon } from '@grafana/ui';
import { Version, CatalogPlugin, PluginIconName } from '../types';
type Props = {
plugin: CatalogPlugin;
latestCompatibleVersion?: Version;
className?: string;
};
export function PluginDetailsHeaderDependencies({
plugin,
latestCompatibleVersion,
className,
}: Props): React.ReactElement | null {
const styles = useStyles2(getStyles);
const pluginDependencies = plugin.details?.pluginDependencies;
const grafanaDependency = plugin.isInstalled
? plugin.details?.grafanaDependency
: latestCompatibleVersion?.grafanaDependency || plugin.details?.grafanaDependency;
const hasNoDependencyInfo = !grafanaDependency && (!pluginDependencies || !pluginDependencies.length);
if (hasNoDependencyInfo) {
return null;
}
return (
<div className={className}>
<div className={styles.dependencyTitle}>Dependencies:</div>
{/* Grafana dependency */}
{Boolean(grafanaDependency) && (
<div>
<Icon name="grafana" className={styles.icon} />
Grafana {grafanaDependency}
</div>
)}
{/* Plugin dependencies */}
{pluginDependencies && pluginDependencies.length > 0 && (
<div>
{pluginDependencies.map((p) => {
return (
<span key={p.name}>
<Icon name={PluginIconName[p.type]} className={styles.icon} />
{p.name} {p.version}
</span>
);
})}
</div>
)}
</div>
);
}
export const getStyles = (theme: GrafanaTheme2) => {
return {
dependencyTitle: css`
font-weight: ${theme.typography.fontWeightBold};
margin-right: ${theme.spacing(0.5)};
&::after {
content: '';
padding: 0;
}
`,
icon: css`
color: ${theme.colors.text.secondary};
margin-right: ${theme.spacing(0.5)};
`,
};
};