mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Chore: Fix typescript strict null errors * Added new limit * Fixed ts issue * fixed tests * trying to fix type inference * Fixing more ts errors * Revert tsconfig option * Fix * Fixed code * More fixes * fix tests * Updated snapshot * Chore: More ts strict null fixes * More fixes in some really messed up azure config components * More fixes, current count: 441 * 419 * More fixes * Fixed invalid initial state in explore * Fixing tests * Fixed tests * Explore fix * More fixes * Progress * Sub 300 * Now at 218 * Progress * Update * Progress * Updated tests * at 159 * fixed tests * Fixed test
95 lines
2.2 KiB
TypeScript
95 lines
2.2 KiB
TypeScript
// Libraries
|
|
import React, { PureComponent } from 'react';
|
|
|
|
// Components
|
|
import { Select } from '@grafana/ui';
|
|
import { SelectableValue, DataSourceSelectItem } from '@grafana/data';
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
|
|
export interface Props {
|
|
onChange: (ds: DataSourceSelectItem) => void;
|
|
datasources: DataSourceSelectItem[];
|
|
current?: DataSourceSelectItem | null;
|
|
hideTextValue?: boolean;
|
|
onBlur?: () => void;
|
|
autoFocus?: boolean;
|
|
openMenuOnFocus?: boolean;
|
|
showLoading?: boolean;
|
|
placeholder?: string;
|
|
invalid?: boolean;
|
|
}
|
|
|
|
export class DataSourcePicker extends PureComponent<Props> {
|
|
static defaultProps: Partial<Props> = {
|
|
autoFocus: false,
|
|
openMenuOnFocus: false,
|
|
placeholder: 'Select datasource',
|
|
};
|
|
|
|
searchInput: HTMLElement;
|
|
|
|
constructor(props: Props) {
|
|
super(props);
|
|
}
|
|
|
|
onChange = (item: SelectableValue<string>) => {
|
|
const ds = this.props.datasources.find(ds => ds.name === item.value);
|
|
|
|
if (ds) {
|
|
this.props.onChange(ds);
|
|
}
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
datasources,
|
|
current,
|
|
autoFocus,
|
|
hideTextValue,
|
|
onBlur,
|
|
openMenuOnFocus,
|
|
showLoading,
|
|
placeholder,
|
|
invalid,
|
|
} = this.props;
|
|
|
|
const options = datasources.map(ds => ({
|
|
value: ds.name,
|
|
label: ds.name,
|
|
imgUrl: ds.meta.info.logos.small,
|
|
}));
|
|
|
|
const value = current && {
|
|
label: current.name.substr(0, 37),
|
|
value: current.name,
|
|
imgUrl: current.meta.info.logos.small,
|
|
loading: showLoading,
|
|
hideText: hideTextValue,
|
|
};
|
|
|
|
return (
|
|
<div aria-label={selectors.components.DataSourcePicker.container}>
|
|
<Select
|
|
className="ds-picker select-container"
|
|
isMulti={false}
|
|
isClearable={false}
|
|
backspaceRemovesValue={false}
|
|
onChange={this.onChange}
|
|
options={options}
|
|
autoFocus={autoFocus}
|
|
onBlur={onBlur}
|
|
openMenuOnFocus={openMenuOnFocus}
|
|
maxMenuHeight={500}
|
|
menuPlacement="bottom"
|
|
placeholder={placeholder}
|
|
noOptionsMessage="No datasources found"
|
|
value={value}
|
|
invalid={invalid}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default DataSourcePicker;
|