mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Explore: fixes toolbars datasource selector and date picker responsiveness * Explore: updates grafana UI time picker component - adds a class on long date * Explore: updates styles for responsive long date without split * Explore: adds styles for responsive time picker with long date during split * Explore: updates long datetime detector to isDateTime, renames isAbsolute to hasAbsolute * Explore: updates datasource responsiveness * Explore: moves time picker styles * Explore: updates datasource picker and select component responsiveness * Explore: updates data source picker * Explore: updates explore toolbar to use container width * Explore: updates styles for datasource picker * Explore: updates Grafana UI elements - select and single value with an ability to hide text * Explore: updates time picker styles * Explore: updates datasource select and date picker * Explore: updates toolbar elements margin * Explore: updates toolbar elements split breakpoints * Explore: updates datasource picker label length with substrings * Explore: updates the datasource picker label length * Explore: removes refresh picker hide media query * Explore: updates refresh picker style query to use xs breakpoint
76 lines
1.9 KiB
TypeScript
76 lines
1.9 KiB
TypeScript
// Libraries
|
|
import React, { PureComponent } from 'react';
|
|
|
|
// Components
|
|
import { Select } from '@grafana/ui';
|
|
import { SelectableValue, DataSourceSelectItem } from '@grafana/data';
|
|
|
|
export interface Props {
|
|
onChange: (ds: DataSourceSelectItem) => void;
|
|
datasources: DataSourceSelectItem[];
|
|
current: DataSourceSelectItem;
|
|
hideTextValue?: boolean;
|
|
onBlur?: () => void;
|
|
autoFocus?: boolean;
|
|
openMenuOnFocus?: boolean;
|
|
showLoading?: boolean;
|
|
}
|
|
|
|
export class DataSourcePicker extends PureComponent<Props> {
|
|
static defaultProps: Partial<Props> = {
|
|
autoFocus: false,
|
|
openMenuOnFocus: false,
|
|
};
|
|
|
|
searchInput: HTMLElement;
|
|
|
|
constructor(props: Props) {
|
|
super(props);
|
|
}
|
|
|
|
onChange = (item: SelectableValue<string>) => {
|
|
const ds = this.props.datasources.find(ds => ds.name === item.value);
|
|
this.props.onChange(ds);
|
|
};
|
|
|
|
render() {
|
|
const { datasources, current, autoFocus, hideTextValue, onBlur, openMenuOnFocus, showLoading } = 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="Select datasource"
|
|
noOptionsMessage={() => 'No datasources found'}
|
|
value={value}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default DataSourcePicker;
|