mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
35 lines
798 B
TypeScript
35 lines
798 B
TypeScript
// @ts-nocheck
|
|
import { createReducer } from '@reduxjs/toolkit';
|
|
import { persistReducer, purgeStoredState } from 'redux-persist';
|
|
import storage from 'redux-persist/lib/storage';
|
|
import { createTableStateReducers } from '@/store/tableState.reducer';
|
|
import t from '@/store/types';
|
|
|
|
export const defaultTableQuery = {
|
|
pageSize: 20,
|
|
pageIndex: 0,
|
|
filterRoles: [],
|
|
viewSlug: null,
|
|
};
|
|
|
|
const initialState = {
|
|
tableState: defaultTableQuery,
|
|
};
|
|
|
|
const STORAGE_KEY = 'bigcapital:projects';
|
|
|
|
const CONFIG = {
|
|
key: STORAGE_KEY,
|
|
whitelist: [],
|
|
storage,
|
|
};
|
|
const reducerInstance = createReducer(initialState, {
|
|
...createTableStateReducers('PROJECTS', defaultTableQuery),
|
|
|
|
[t.RESET]: () => {
|
|
purgeStoredState(CONFIG);
|
|
},
|
|
});
|
|
|
|
export default persistReducer(CONFIG, reducerInstance);
|