mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
153 lines
5.2 KiB
TypeScript
153 lines
5.2 KiB
TypeScript
import React, { FormEvent, PureComponent } from 'react';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
|
|
import { SelectableValue } from '@grafana/data';
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { InlineFieldRow, VerticalGroup } from '@grafana/ui';
|
|
|
|
import { StoreState } from '../../../types';
|
|
import { SelectionOptionsEditor } from '../editor/SelectionOptionsEditor';
|
|
import { VariableSectionHeader } from '../editor/VariableSectionHeader';
|
|
import { VariableSelectField } from '../editor/VariableSelectField';
|
|
import { VariableTextField } from '../editor/VariableTextField';
|
|
import { initialVariableEditorState } from '../editor/reducer';
|
|
import { getDatasourceVariableEditorState } from '../editor/selectors';
|
|
import { OnPropChangeArguments, VariableEditorProps } from '../editor/types';
|
|
import { changeVariableMultiValue } from '../state/actions';
|
|
import { getVariablesState } from '../state/selectors';
|
|
import { DataSourceVariableModel, VariableWithMultiSupport } from '../types';
|
|
|
|
import { initDataSourceVariableEditor } from './actions';
|
|
|
|
const mapStateToProps = (state: StoreState, ownProps: OwnProps) => {
|
|
const {
|
|
variable: { rootStateKey },
|
|
} = ownProps;
|
|
if (!rootStateKey) {
|
|
console.error('DataSourceVariableEditor: variable has no rootStateKey');
|
|
return {
|
|
extended: getDatasourceVariableEditorState(initialVariableEditorState),
|
|
};
|
|
}
|
|
|
|
const { editor } = getVariablesState(rootStateKey, state);
|
|
return {
|
|
extended: getDatasourceVariableEditorState(editor),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = {
|
|
initDataSourceVariableEditor,
|
|
changeVariableMultiValue,
|
|
};
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
export interface OwnProps extends VariableEditorProps<DataSourceVariableModel> {}
|
|
|
|
type Props = OwnProps & ConnectedProps<typeof connector>;
|
|
|
|
export class DataSourceVariableEditorUnConnected extends PureComponent<Props> {
|
|
componentDidMount() {
|
|
const { rootStateKey } = this.props.variable;
|
|
if (!rootStateKey) {
|
|
console.error('DataSourceVariableEditor: variable has no rootStateKey');
|
|
return;
|
|
}
|
|
|
|
this.props.initDataSourceVariableEditor(rootStateKey);
|
|
}
|
|
|
|
onRegExChange = (event: FormEvent<HTMLInputElement>) => {
|
|
this.props.onPropChange({
|
|
propName: 'regex',
|
|
propValue: event.currentTarget.value,
|
|
});
|
|
};
|
|
|
|
onRegExBlur = (event: FormEvent<HTMLInputElement>) => {
|
|
this.props.onPropChange({
|
|
propName: 'regex',
|
|
propValue: event.currentTarget.value,
|
|
updateOptions: true,
|
|
});
|
|
};
|
|
|
|
onSelectionOptionsChange = async ({ propValue, propName }: OnPropChangeArguments<VariableWithMultiSupport>) => {
|
|
this.props.onPropChange({ propName, propValue, updateOptions: true });
|
|
};
|
|
|
|
getSelectedDataSourceTypeValue = (): string => {
|
|
const { extended } = this.props;
|
|
|
|
if (!extended?.dataSourceTypes.length) {
|
|
return '';
|
|
}
|
|
|
|
const foundItem = extended.dataSourceTypes.find((ds) => ds.value === this.props.variable.query);
|
|
const value = foundItem ? foundItem.value : extended.dataSourceTypes[0].value;
|
|
return value ?? '';
|
|
};
|
|
|
|
onDataSourceTypeChanged = (option: SelectableValue<string>) => {
|
|
this.props.onPropChange({ propName: 'query', propValue: option.value, updateOptions: true });
|
|
};
|
|
|
|
render() {
|
|
const { variable, extended, changeVariableMultiValue } = this.props;
|
|
|
|
const typeOptions = extended?.dataSourceTypes?.length
|
|
? extended.dataSourceTypes?.map((ds) => ({ value: ds.value ?? '', label: ds.text }))
|
|
: [];
|
|
|
|
const typeValue = typeOptions.find((o) => o.value === variable.query) ?? typeOptions[0];
|
|
|
|
return (
|
|
<VerticalGroup spacing="xs">
|
|
<VariableSectionHeader name="Data source options" />
|
|
<VerticalGroup spacing="md">
|
|
<VerticalGroup spacing="xs">
|
|
<InlineFieldRow>
|
|
<VariableSelectField
|
|
name="Type"
|
|
value={typeValue}
|
|
options={typeOptions}
|
|
onChange={this.onDataSourceTypeChanged}
|
|
labelWidth={10}
|
|
testId={selectors.pages.Dashboard.Settings.Variables.Edit.DatasourceVariable.datasourceSelect}
|
|
/>
|
|
</InlineFieldRow>
|
|
<InlineFieldRow>
|
|
<VariableTextField
|
|
value={this.props.variable.regex}
|
|
name="Instance name filter"
|
|
placeholder="/.*-(.*)-.*/"
|
|
onChange={this.onRegExChange}
|
|
onBlur={this.onRegExBlur}
|
|
labelWidth={20}
|
|
tooltip={
|
|
<div>
|
|
Regex filter for which data source instances to choose from in the variable value list. Leave empty
|
|
for all.
|
|
<br />
|
|
<br />
|
|
Example: <code>/^prod/</code>
|
|
</div>
|
|
}
|
|
/>
|
|
</InlineFieldRow>
|
|
</VerticalGroup>
|
|
|
|
<SelectionOptionsEditor
|
|
variable={variable}
|
|
onPropChange={this.onSelectionOptionsChange}
|
|
onMultiChanged={changeVariableMultiValue}
|
|
/>
|
|
</VerticalGroup>
|
|
</VerticalGroup>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const DataSourceVariableEditor = connector(DataSourceVariableEditorUnConnected);
|