mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 04:22:13 +08:00

* i18n: removes useTranslate hook * chore: fix duplicate imports * chore: fix import sorting and hook dependencies
52 lines
2.0 KiB
TypeScript
52 lines
2.0 KiB
TypeScript
import { cloneDeep } from 'lodash';
|
|
|
|
import { IntervalVariableModel } from '@grafana/data';
|
|
import { t } from '@grafana/i18n';
|
|
|
|
import { dispatch } from '../../../store/store';
|
|
import { VariableAdapter } from '../adapters';
|
|
import { optionPickerFactory } from '../pickers';
|
|
import { setOptionAsCurrent, setOptionFromUrl } from '../state/actions';
|
|
import { toKeyedVariableIdentifier } from '../utils';
|
|
|
|
import { IntervalVariableEditor } from './IntervalVariableEditor';
|
|
import { updateAutoValue, updateIntervalVariableOptions } from './actions';
|
|
import { initialIntervalVariableModelState, intervalVariableReducer } from './reducer';
|
|
|
|
export const createIntervalVariableAdapter = (): VariableAdapter<IntervalVariableModel> => {
|
|
return {
|
|
id: 'interval',
|
|
description: t(
|
|
'variables.create-interval-variable-adapter.description.define-timespan-interval',
|
|
'Define a timespan interval (for example: {{timeIntervals}})',
|
|
{ timeIntervals: '1m, 1h, 1d' }
|
|
),
|
|
name: 'Interval',
|
|
initialState: initialIntervalVariableModelState,
|
|
reducer: intervalVariableReducer,
|
|
picker: optionPickerFactory<IntervalVariableModel>(),
|
|
editor: IntervalVariableEditor,
|
|
dependsOn: () => {
|
|
return false;
|
|
},
|
|
setValue: async (variable, option, emitChanges = false) => {
|
|
await dispatch(updateAutoValue(toKeyedVariableIdentifier(variable)));
|
|
await dispatch(setOptionAsCurrent(toKeyedVariableIdentifier(variable), option, emitChanges));
|
|
},
|
|
setValueFromUrl: async (variable, urlValue) => {
|
|
await dispatch(updateAutoValue(toKeyedVariableIdentifier(variable)));
|
|
await dispatch(setOptionFromUrl(toKeyedVariableIdentifier(variable), urlValue));
|
|
},
|
|
updateOptions: async (variable) => {
|
|
await dispatch(updateIntervalVariableOptions(toKeyedVariableIdentifier(variable)));
|
|
},
|
|
getSaveModel: (variable) => {
|
|
const { index, id, state, global, rootStateKey, ...rest } = cloneDeep(variable);
|
|
return rest;
|
|
},
|
|
getValueForUrl: (variable) => {
|
|
return variable.current.value;
|
|
},
|
|
};
|
|
};
|