2024-06-21 17:03:57 +08:00
|
|
|
import { css } from '@emotion/css';
|
2024-10-25 00:03:17 +08:00
|
|
|
import { useCallback } from 'react';
|
2022-07-20 15:25:09 +08:00
|
|
|
|
2024-06-21 17:03:57 +08:00
|
|
|
import { DataSourcePluginMeta, GrafanaTheme2 } from '@grafana/data';
|
2025-05-15 15:17:14 +08:00
|
|
|
import { Trans } from '@grafana/i18n';
|
2024-10-25 00:03:17 +08:00
|
|
|
import { reportInteraction } from '@grafana/runtime';
|
2024-06-21 17:03:57 +08:00
|
|
|
import { LinkButton, useStyles2 } from '@grafana/ui';
|
2025-07-09 12:15:33 +08:00
|
|
|
import { DataSourcePluginCategory } from 'app/types/datasources';
|
2022-07-20 15:25:09 +08:00
|
|
|
|
2023-03-07 22:16:27 +08:00
|
|
|
import { ROUTES } from '../../connections/constants';
|
|
|
|
|
|
2022-07-20 15:25:09 +08:00
|
|
|
import { DataSourceTypeCardList } from './DataSourceTypeCardList';
|
|
|
|
|
|
|
|
|
|
export type Props = {
|
|
|
|
|
// The list of data-source plugin categories to display
|
|
|
|
|
categories: DataSourcePluginCategory[];
|
|
|
|
|
|
|
|
|
|
// Called when a data-source plugin is clicked on in the list
|
|
|
|
|
onClickDataSourceType: (dataSource: DataSourcePluginMeta) => void;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export function DataSourceCategories({ categories, onClickDataSourceType }: Props) {
|
2023-07-24 16:54:52 +08:00
|
|
|
const moreDataSourcesLink = `${ROUTES.AddNewConnection}?cat=data-source`;
|
2024-06-21 17:03:57 +08:00
|
|
|
const styles = useStyles2(getStyles);
|
2023-03-07 22:16:27 +08:00
|
|
|
|
2024-10-25 00:03:17 +08:00
|
|
|
const handleClick = useCallback(() => {
|
|
|
|
|
reportInteraction('connections_add_datasource_find_more_ds_plugins_clicked', {
|
|
|
|
|
targetPath: moreDataSourcesLink,
|
2025-05-12 17:38:26 +08:00
|
|
|
path: window.location.pathname,
|
2024-10-25 00:03:17 +08:00
|
|
|
creator_team: 'grafana_plugins_catalog',
|
|
|
|
|
schema_version: '1.0.0',
|
|
|
|
|
});
|
|
|
|
|
}, [moreDataSourcesLink]);
|
|
|
|
|
|
2022-07-20 15:25:09 +08:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
{/* Categories */}
|
|
|
|
|
{categories.map(({ id, title, plugins }) => (
|
2024-06-21 17:03:57 +08:00
|
|
|
<div className={styles.category} key={id}>
|
|
|
|
|
<div className={styles.header} id={id}>
|
2022-07-20 15:25:09 +08:00
|
|
|
{title}
|
|
|
|
|
</div>
|
|
|
|
|
<DataSourceTypeCardList dataSourcePlugins={plugins} onClickDataSourceType={onClickDataSourceType} />
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
|
|
|
|
|
{/* Find more */}
|
2024-06-21 17:03:57 +08:00
|
|
|
<div className={styles.more}>
|
2024-10-25 00:03:17 +08:00
|
|
|
<LinkButton variant="secondary" href={moreDataSourcesLink} onClick={handleClick} target="_self" rel="noopener">
|
2025-03-27 18:12:25 +08:00
|
|
|
<Trans i18nKey="datasources.data-source-categories.find-more-data-source-plugins">
|
|
|
|
|
Find more data source plugins
|
|
|
|
|
</Trans>
|
2022-07-20 15:25:09 +08:00
|
|
|
</LinkButton>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
2024-06-21 17:03:57 +08:00
|
|
|
|
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
|
|
|
category: css({
|
|
|
|
|
marginBottom: theme.spacing(2),
|
|
|
|
|
}),
|
|
|
|
|
header: css({
|
|
|
|
|
fontSize: theme.typography.h5.fontSize,
|
|
|
|
|
marginBottom: theme.spacing(1),
|
|
|
|
|
}),
|
|
|
|
|
more: css({
|
|
|
|
|
margin: theme.spacing(4),
|
|
|
|
|
textAlign: 'center',
|
|
|
|
|
}),
|
|
|
|
|
});
|