mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
| import { css } from '@emotion/css';
 | |
| import { useCallback } from 'react';
 | |
| 
 | |
| import { DataSourcePluginMeta, GrafanaTheme2 } from '@grafana/data';
 | |
| import { Trans } from '@grafana/i18n';
 | |
| import { reportInteraction } from '@grafana/runtime';
 | |
| import { LinkButton, useStyles2 } from '@grafana/ui';
 | |
| import { DataSourcePluginCategory } from 'app/types/datasources';
 | |
| 
 | |
| import { ROUTES } from '../../connections/constants';
 | |
| 
 | |
| 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) {
 | |
|   const moreDataSourcesLink = `${ROUTES.AddNewConnection}?cat=data-source`;
 | |
|   const styles = useStyles2(getStyles);
 | |
| 
 | |
|   const handleClick = useCallback(() => {
 | |
|     reportInteraction('connections_add_datasource_find_more_ds_plugins_clicked', {
 | |
|       targetPath: moreDataSourcesLink,
 | |
|       path: window.location.pathname,
 | |
|       creator_team: 'grafana_plugins_catalog',
 | |
|       schema_version: '1.0.0',
 | |
|     });
 | |
|   }, [moreDataSourcesLink]);
 | |
| 
 | |
|   return (
 | |
|     <>
 | |
|       {/* Categories */}
 | |
|       {categories.map(({ id, title, plugins }) => (
 | |
|         <div className={styles.category} key={id}>
 | |
|           <div className={styles.header} id={id}>
 | |
|             {title}
 | |
|           </div>
 | |
|           <DataSourceTypeCardList dataSourcePlugins={plugins} onClickDataSourceType={onClickDataSourceType} />
 | |
|         </div>
 | |
|       ))}
 | |
| 
 | |
|       {/* Find more */}
 | |
|       <div className={styles.more}>
 | |
|         <LinkButton variant="secondary" href={moreDataSourcesLink} onClick={handleClick} target="_self" rel="noopener">
 | |
|           <Trans i18nKey="datasources.data-source-categories.find-more-data-source-plugins">
 | |
|             Find more data source plugins
 | |
|           </Trans>
 | |
|         </LinkButton>
 | |
|       </div>
 | |
|     </>
 | |
|   );
 | |
| }
 | |
| 
 | |
| 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',
 | |
|   }),
 | |
| });
 |