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/browse-dashboards/state/slice.ts

37 lines
920 B

import { createSlice } from '@reduxjs/toolkit';
import { BrowseDashboardsState } from '../types';
import { fetchChildren } from './actions';
import * as allReducers from './reducers';
const { extraReducerFetchChildrenFulfilled, ...baseReducers } = allReducers;
const initialState: BrowseDashboardsState = {
rootItems: [],
childrenByParentUID: {},
openFolders: {},
selectedItems: {
dashboard: {},
folder: {},
panel: {},
},
};
const browseDashboardsSlice = createSlice({
name: 'browseDashboards',
initialState,
reducers: baseReducers,
extraReducers: (builder) => {
builder.addCase(fetchChildren.fulfilled, extraReducerFetchChildrenFulfilled);
},
});
export const browseDashboardsReducer = browseDashboardsSlice.reducer;
export const { setFolderOpenState, setItemSelectionState } = browseDashboardsSlice.actions;
export default {
browseDashboards: browseDashboardsReducer,
};