mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Export other components as Legacy * More Select Legacy * Add namespacing to more files * Export new elements * Move Legacy Select folder * Let's not forget the scss file * Move new Select folder * Move new Select from Forms namespace * Little oopsie * Fix errors * Fix merge issues
91 lines
2.1 KiB
TypeScript
91 lines
2.1 KiB
TypeScript
// Libraries
|
|
import React, { PureComponent } from 'react';
|
|
|
|
// Components
|
|
import { LegacyForms } from '@grafana/ui';
|
|
import { SelectableValue, DataSourceSelectItem } from '@grafana/data';
|
|
const { Select } = LegacyForms;
|
|
|
|
export interface Props {
|
|
onChange: (ds: DataSourceSelectItem) => void;
|
|
datasources: DataSourceSelectItem[];
|
|
current?: DataSourceSelectItem;
|
|
hideTextValue?: boolean;
|
|
onBlur?: () => void;
|
|
autoFocus?: boolean;
|
|
openMenuOnFocus?: boolean;
|
|
showLoading?: boolean;
|
|
placeholder?: string;
|
|
}
|
|
|
|
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,
|
|
} = 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 className="gf-form-inline">
|
|
<Select
|
|
className="ds-picker"
|
|
isMulti={false}
|
|
isClearable={false}
|
|
backspaceRemovesValue={false}
|
|
onChange={this.onChange}
|
|
options={options}
|
|
autoFocus={autoFocus}
|
|
onBlur={onBlur}
|
|
openMenuOnFocus={openMenuOnFocus}
|
|
maxMenuHeight={500}
|
|
placeholder={placeholder}
|
|
noOptionsMessage={() => 'No datasources found'}
|
|
value={value}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default DataSourcePicker;
|