mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
77 lines
2.4 KiB
TypeScript
77 lines
2.4 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
|
|
import { DataSourceInstanceSettings, getDataSourceRef } from '@grafana/data';
|
|
import { DataSourcePicker } from '@grafana/runtime';
|
|
import { Alert, Field } from '@grafana/ui';
|
|
import { StoreState } from 'app/types';
|
|
|
|
import { VariableLegend } from '../editor/VariableLegend';
|
|
import { initialVariableEditorState } from '../editor/reducer';
|
|
import { getAdhocVariableEditorState } from '../editor/selectors';
|
|
import { VariableEditorProps } from '../editor/types';
|
|
import { getVariablesState } from '../state/selectors';
|
|
import { AdHocVariableModel } from '../types';
|
|
import { toKeyedVariableIdentifier } from '../utils';
|
|
|
|
import { changeVariableDatasource } from './actions';
|
|
|
|
const mapStateToProps = (state: StoreState, ownProps: OwnProps) => {
|
|
const { rootStateKey } = ownProps.variable;
|
|
|
|
if (!rootStateKey) {
|
|
console.error('AdHocVariableEditor: variable has no rootStateKey');
|
|
return {
|
|
extended: getAdhocVariableEditorState(initialVariableEditorState),
|
|
};
|
|
}
|
|
|
|
const { editor } = getVariablesState(rootStateKey, state);
|
|
|
|
return {
|
|
extended: getAdhocVariableEditorState(editor),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = {
|
|
changeVariableDatasource,
|
|
};
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
export interface OwnProps extends VariableEditorProps<AdHocVariableModel> {}
|
|
|
|
type Props = OwnProps & ConnectedProps<typeof connector>;
|
|
|
|
export class AdHocVariableEditorUnConnected extends PureComponent<Props> {
|
|
componentDidMount() {
|
|
const { rootStateKey } = this.props.variable;
|
|
if (!rootStateKey) {
|
|
console.error('AdHocVariableEditor: variable has no rootStateKey');
|
|
return;
|
|
}
|
|
}
|
|
|
|
onDatasourceChanged = (ds: DataSourceInstanceSettings) => {
|
|
this.props.changeVariableDatasource(toKeyedVariableIdentifier(this.props.variable), getDataSourceRef(ds));
|
|
};
|
|
|
|
render() {
|
|
const { variable, extended } = this.props;
|
|
const infoText = extended?.infoText ?? null;
|
|
|
|
return (
|
|
<>
|
|
<VariableLegend>Ad-hoc options</VariableLegend>
|
|
<Field label="Data source" htmlFor="data-source-picker">
|
|
<DataSourcePicker current={variable.datasource} onChange={this.onDatasourceChanged} width={30} noDefault />
|
|
</Field>
|
|
|
|
{infoText ? <Alert title={infoText} severity="info" /> : null}
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const AdHocVariableEditor = connector(AdHocVariableEditorUnConnected);
|