mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 20:54:22 -06:00
058ac6becf
* Chore: Bumps immer and redux/toolkit * WIP: transpile errors * Chore: bumps redux and react redux * Chore: removes unused dispatch * make alerting compile with updated redux toolkit * Test: Fixes broken test * Chore: fixes strict errors Co-authored-by: Domas <domasx2@gmail.com>
73 lines
2.2 KiB
TypeScript
73 lines
2.2 KiB
TypeScript
import { configureStore as reduxConfigureStore } from '@reduxjs/toolkit';
|
|
import { setStore } from './store';
|
|
import { StoreState } from 'app/types/store';
|
|
import { addReducer, createRootReducer } from '../core/reducers/root';
|
|
import { buildInitialState } from '../core/reducers/navModel';
|
|
import { ThunkMiddlewareFor } from '@reduxjs/toolkit/src/getDefaultMiddleware';
|
|
import { AnyAction } from 'redux';
|
|
|
|
export function addRootReducer(reducers: any) {
|
|
// this is ok now because we add reducers before configureStore is called
|
|
// in the future if we want to add reducers during runtime
|
|
// we'll have to solve this in a more dynamic way
|
|
addReducer(reducers);
|
|
}
|
|
|
|
export function configureStore(initialState?: Partial<StoreState>) {
|
|
const store = reduxConfigureStore<
|
|
StoreState,
|
|
AnyAction,
|
|
ReadonlyArray<ThunkMiddlewareFor<StoreState, { thunk: true }>>
|
|
>({
|
|
reducer: createRootReducer(),
|
|
middleware: (getDefaultMiddleware) =>
|
|
getDefaultMiddleware({ thunk: true, serializableCheck: false, immutableCheck: false }),
|
|
devTools: process.env.NODE_ENV !== 'production',
|
|
preloadedState: {
|
|
navIndex: buildInitialState(),
|
|
...initialState,
|
|
},
|
|
});
|
|
|
|
setStore(store);
|
|
return store;
|
|
}
|
|
|
|
/*
|
|
function getActionsToIgnoreSerializableCheckOn() {
|
|
return [
|
|
'dashboard/setPanelAngularComponent',
|
|
'dashboard/panelModelAndPluginReady',
|
|
'dashboard/dashboardInitCompleted',
|
|
'plugins/panelPluginLoaded',
|
|
'explore/initializeExplore',
|
|
'explore/changeRange',
|
|
'explore/updateDatasourceInstance',
|
|
'explore/queryStoreSubscription',
|
|
'explore/queryStreamUpdated',
|
|
];
|
|
}
|
|
|
|
function getPathsToIgnoreMutationAndSerializableCheckOn() {
|
|
return [
|
|
'plugins.panels',
|
|
'dashboard.panels',
|
|
'dashboard.getModel',
|
|
'payload.plugin',
|
|
'panelEditorNew.getPanel',
|
|
'panelEditorNew.getSourcePanel',
|
|
'panelEditorNew.getData',
|
|
'explore.left.queryResponse',
|
|
'explore.right.queryResponse',
|
|
'explore.left.datasourceInstance',
|
|
'explore.right.datasourceInstance',
|
|
'explore.left.range',
|
|
'explore.left.eventBridge',
|
|
'explore.right.eventBridge',
|
|
'explore.right.range',
|
|
'explore.left.querySubscription',
|
|
'explore.right.querySubscription',
|
|
];
|
|
}
|
|
*/
|