mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Refactor: Adds getNextAvailableId * Refactor: Hides DependencyGraph button if there are no dependencies * Refactor: Changes the new button * Refactor: Removes usages of NEW_VARIABLE_ID * Refactor: Reverts the new button
52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
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[] => {
|
|
const filter = (variable: VariableModel) => {
|
|
return variable.type !== 'system';
|
|
};
|
|
|
|
return getFilteredVariables(filter, state);
|
|
};
|
|
|
|
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 const getNewVariabelIndex = (state: StoreState = getState()): number => {
|
|
return Object.values(state.templating.variables).length;
|
|
};
|