mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
74 lines
2.0 KiB
TypeScript
74 lines
2.0 KiB
TypeScript
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
|
|
|
import { PanelPlugin } from '@grafana/data';
|
|
import { AngularComponent } from '@grafana/runtime';
|
|
|
|
export type RootPanelsState = Record<string, PanelState>;
|
|
|
|
export interface PanelState {
|
|
plugin?: PanelPlugin;
|
|
angularComponent?: AngularComponent;
|
|
instanceState?: any | null;
|
|
}
|
|
|
|
export const initialState: RootPanelsState = {};
|
|
|
|
const panelsSlice = createSlice({
|
|
name: 'panels',
|
|
initialState,
|
|
reducers: {
|
|
panelModelAndPluginReady: (state, action: PayloadAction<PanelModelAndPluginReadyPayload>) => {
|
|
state[action.payload.key] = {
|
|
plugin: action.payload.plugin,
|
|
};
|
|
},
|
|
changePanelKey: (state, action: PayloadAction<{ oldKey: string; newKey: string }>) => {
|
|
state[action.payload.newKey] = state[action.payload.oldKey];
|
|
delete state[action.payload.oldKey];
|
|
},
|
|
removePanel: (state, action: PayloadAction<{ key: string }>) => {
|
|
delete state[action.payload.key];
|
|
},
|
|
removeAllPanels: (state) => {
|
|
Object.keys(state).forEach((key) => delete state[key]);
|
|
},
|
|
setPanelInstanceState: (state, action: PayloadAction<SetPanelInstanceStatePayload>) => {
|
|
state[action.payload.key].instanceState = action.payload.value;
|
|
},
|
|
setPanelAngularComponent: (state, action: PayloadAction<SetPanelAngularComponentPayload>) => {
|
|
const panelState = state[action.payload.key];
|
|
panelState.angularComponent = action.payload.angularComponent;
|
|
},
|
|
},
|
|
});
|
|
|
|
export interface PanelModelAndPluginReadyPayload {
|
|
key: string;
|
|
plugin: PanelPlugin;
|
|
}
|
|
|
|
export interface SetPanelAngularComponentPayload {
|
|
key: string;
|
|
angularComponent: AngularComponent;
|
|
}
|
|
|
|
export interface SetPanelInstanceStatePayload {
|
|
key: string;
|
|
value: any;
|
|
}
|
|
|
|
export const {
|
|
panelModelAndPluginReady,
|
|
setPanelAngularComponent,
|
|
setPanelInstanceState,
|
|
changePanelKey,
|
|
removePanel,
|
|
removeAllPanels,
|
|
} = panelsSlice.actions;
|
|
|
|
export const panelsReducer = panelsSlice.reducer;
|
|
|
|
export default {
|
|
panels: panelsReducer,
|
|
};
|