The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
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.
 
 
 
 
 
 
grafana/public/app/features/dashboard/components/PanelEditor/state/reducers.ts

98 lines
2.9 KiB

import { createSlice, PayloadAction } from '@reduxjs/toolkit';
import { PanelModel } from '../../../state/PanelModel';
import { DefaultTimeRange, LoadingState, PanelData } from '@grafana/data';
import { DisplayMode } from '../types';
import store from '../../../../../core/store';
export const PANEL_EDITOR_UI_STATE_STORAGE_KEY = 'grafana.dashboard.editor.ui';
export const DEFAULT_PANEL_EDITOR_UI_STATE: PanelEditorUIState = {
isPanelOptionsVisible: true,
rightPaneSize: 400,
topPaneSize: '45%',
mode: DisplayMode.Fill,
};
export interface PanelEditorUIState {
/* Visualization options pane visibility */
isPanelOptionsVisible: boolean;
/* Pixels or percentage */
rightPaneSize: number | string;
/* Pixels or percentage */
topPaneSize: number | string;
/* Visualization size mode */
mode: DisplayMode;
}
export interface PanelEditorState {
/* These are functions as they are mutaded later on and redux toolkit will Object.freeze state so
* we need to store these using functions instead */
getSourcePanel: () => PanelModel;
getPanel: () => PanelModel;
getData: () => PanelData;
initDone: boolean;
shouldDiscardChanges: boolean;
isOpen: boolean;
ui: PanelEditorUIState;
}
export const initialState = (): PanelEditorState => {
return {
getPanel: () => new PanelModel({}),
getSourcePanel: () => new PanelModel({}),
getData: () => ({
state: LoadingState.NotStarted,
series: [],
timeRange: DefaultTimeRange,
}),
initDone: false,
shouldDiscardChanges: false,
isOpen: false,
ui: {
...DEFAULT_PANEL_EDITOR_UI_STATE,
...store.getObject(PANEL_EDITOR_UI_STATE_STORAGE_KEY, DEFAULT_PANEL_EDITOR_UI_STATE),
},
};
};
interface InitEditorPayload {
panel: PanelModel;
sourcePanel: PanelModel;
}
const pluginsSlice = createSlice({
name: 'panelEditor',
initialState: initialState(),
reducers: {
updateEditorInitState: (state, action: PayloadAction<InitEditorPayload>) => {
state.getPanel = () => action.payload.panel;
state.getSourcePanel = () => action.payload.sourcePanel;
state.initDone = true;
state.isOpen = true;
state.shouldDiscardChanges = false;
},
setEditorPanelData: (state, action: PayloadAction<PanelData>) => {
state.getData = () => action.payload;
},
setDiscardChanges: (state, action: PayloadAction<boolean>) => {
state.shouldDiscardChanges = action.payload;
},
setPanelEditorUIState: (state, action: PayloadAction<Partial<PanelEditorUIState>>) => {
state.ui = { ...state.ui, ...action.payload };
},
closeCompleted: state => {
state.isOpen = false;
state.initDone = false;
},
},
});
export const {
updateEditorInitState,
setEditorPanelData,
setDiscardChanges,
closeCompleted,
setPanelEditorUIState,
} = pluginsSlice.actions;
export const panelEditorReducer = pluginsSlice.reducer;