import cloneDeep from 'lodash/cloneDeep'; import { IntervalVariableModel } from '../../templating/variable'; import { dispatch } from '../../../store/store'; import { setOptionAsCurrent, setOptionFromUrl } from '../state/actions'; import { VariableAdapter } from '../adapters'; import { initialIntervalVariableModelState, intervalVariableReducer } from './reducer'; import { OptionsPicker } from '../pickers'; import { toVariableIdentifier } from '../state/types'; import { IntervalVariableEditor } from './IntervalVariableEditor'; import { updateAutoValue, updateIntervalVariableOptions } from './actions'; export const createIntervalVariableAdapter = (): VariableAdapter => { return { description: 'Define a timespan interval (ex 1m, 1h, 1d)', label: 'Interval', initialState: initialIntervalVariableModelState, reducer: intervalVariableReducer, picker: OptionsPicker, editor: IntervalVariableEditor, dependsOn: () => { return false; }, setValue: async (variable, option, emitChanges = false) => { await dispatch(updateAutoValue(toVariableIdentifier(variable))); await dispatch(setOptionAsCurrent(toVariableIdentifier(variable), option, emitChanges)); }, setValueFromUrl: async (variable, urlValue) => { await dispatch(updateAutoValue(toVariableIdentifier(variable))); await dispatch(setOptionFromUrl(toVariableIdentifier(variable), urlValue)); }, updateOptions: async variable => { await dispatch(updateIntervalVariableOptions(toVariableIdentifier(variable))); }, getSaveModel: variable => { const { index, uuid, initLock, global, ...rest } = cloneDeep(variable); return rest; }, getValueForUrl: variable => { return variable.current.value; }, }; };