2022-07-20 15:25:09 +08:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
|
|
import { DataSourcePluginMeta } from '@grafana/data';
|
|
|
|
|
import { LinkButton } from '@grafana/ui';
|
|
|
|
|
import { DataSourcePluginCategory } from 'app/types';
|
|
|
|
|
|
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`;
|
2023-03-07 22:16:27 +08:00
|
|
|
|
2022-07-20 15:25:09 +08:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
{/* Categories */}
|
|
|
|
|
{categories.map(({ id, title, plugins }) => (
|
|
|
|
|
<div className="add-data-source-category" key={id}>
|
|
|
|
|
<div className="add-data-source-category__header" id={id}>
|
|
|
|
|
{title}
|
|
|
|
|
</div>
|
|
|
|
|
<DataSourceTypeCardList dataSourcePlugins={plugins} onClickDataSourceType={onClickDataSourceType} />
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
|
|
|
|
|
{/* Find more */}
|
|
|
|
|
<div className="add-data-source-more">
|
2023-03-07 22:16:27 +08:00
|
|
|
<LinkButton variant="secondary" href={moreDataSourcesLink} target="_self" rel="noopener">
|
|
|
|
|
Find more data source plugins
|
2022-07-20 15:25:09 +08:00
|
|
|
</LinkButton>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|