forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.0 KiB
60 lines
2.0 KiB
import { StoreState } from '../../../types';
|
|
import { VariableModel } from '../types';
|
|
import { getState } from '../../../store/store';
|
|
import memoizeOne from 'memoize-one';
|
|
|
|
export const getVariable = <T extends VariableModel = VariableModel>(
|
|
id: string,
|
|
state: StoreState = getState(),
|
|
throwWhenMissing = true
|
|
): T => {
|
|
if (!state.templating.variables[id]) {
|
|
if (throwWhenMissing) {
|
|
throw new Error(`Couldn't find variable with id:${id}`);
|
|
}
|
|
return (undefined as unknown) as T;
|
|
}
|
|
|
|
return state.templating.variables[id] as T;
|
|
};
|
|
|
|
export const getFilteredVariables = (filter: (model: VariableModel) => boolean, state: StoreState = getState()) => {
|
|
return Object.values(state.templating.variables)
|
|
.filter(filter)
|
|
.sort((s1, s2) => s1.index - s2.index);
|
|
};
|
|
|
|
export const getVariableWithName = (name: string, state: StoreState = getState()) => {
|
|
return getVariable(name, state, false);
|
|
};
|
|
|
|
export const getVariables = (state: StoreState = getState()): VariableModel[] => {
|
|
return getFilteredVariables(defaultVariablesFilter, state);
|
|
};
|
|
|
|
export function defaultVariablesFilter(variable: VariableModel): boolean {
|
|
return variable.type !== 'system';
|
|
}
|
|
|
|
export const getSubMenuVariables = memoizeOne((variables: Record<string, VariableModel>): VariableModel[] => {
|
|
return getVariables(getState());
|
|
});
|
|
|
|
export const getEditorVariables = (state: StoreState): VariableModel[] => {
|
|
return getVariables(state);
|
|
};
|
|
|
|
export type GetVariables = typeof getVariables;
|
|
|
|
export function getNewVariableIndex(state: StoreState = getState()): number {
|
|
return getNextVariableIndex(Object.values(state.templating.variables));
|
|
}
|
|
|
|
export function getNextVariableIndex(variables: VariableModel[]): number {
|
|
const sorted = variables.filter(defaultVariablesFilter).sort((v1, v2) => v1.index - v2.index);
|
|
return sorted.length > 0 ? sorted[sorted.length - 1].index + 1 : 0;
|
|
}
|
|
|
|
export function getVariablesIsDirty(state: StoreState = getState()): boolean {
|
|
return state.templating.transaction.isDirty;
|
|
}
|
|
|