mirror of
https://github.com/grafana/grafana.git
synced 2025-09-20 02:18:56 +08:00
60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React, { useMemo } from 'react';
|
|
|
|
import { GrafanaTheme2, SelectableValue } from '@grafana/data';
|
|
import { Field, Select, useStyles2 } from '@grafana/ui';
|
|
|
|
import { AlertManagerDataSource, GRAFANA_RULES_SOURCE_NAME } from '../utils/datasource';
|
|
|
|
interface Props {
|
|
onChange: (alertManagerSourceName: string) => void;
|
|
current?: string;
|
|
disabled?: boolean;
|
|
dataSources: AlertManagerDataSource[];
|
|
}
|
|
|
|
function getAlertManagerLabel(alertManager: AlertManagerDataSource) {
|
|
return alertManager.name === GRAFANA_RULES_SOURCE_NAME ? 'Grafana' : alertManager.name.slice(0, 37);
|
|
}
|
|
|
|
export const AlertManagerPicker = ({ onChange, current, dataSources, disabled = false }: Props) => {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
const options: Array<SelectableValue<string>> = useMemo(() => {
|
|
return dataSources.map((ds) => ({
|
|
label: getAlertManagerLabel(ds),
|
|
value: ds.name,
|
|
imgUrl: ds.imgUrl,
|
|
meta: ds.meta,
|
|
}));
|
|
}, [dataSources]);
|
|
|
|
return (
|
|
<Field
|
|
className={styles.field}
|
|
label={disabled ? 'Alertmanager' : 'Choose Alertmanager'}
|
|
disabled={disabled || options.length === 1}
|
|
data-testid="alertmanager-picker"
|
|
>
|
|
<Select
|
|
aria-label={disabled ? 'Alertmanager' : 'Choose Alertmanager'}
|
|
width={29}
|
|
className="ds-picker select-container"
|
|
backspaceRemovesValue={false}
|
|
onChange={(value) => value.value && onChange(value.value)}
|
|
options={options}
|
|
maxMenuHeight={500}
|
|
noOptionsMessage="No datasources found"
|
|
value={current}
|
|
getOptionLabel={(o) => o.label}
|
|
/>
|
|
</Field>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
field: css`
|
|
margin-bottom: ${theme.spacing(4)};
|
|
`,
|
|
});
|