File size: 1,862 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Note: We are using legacy "createStore"
import { composeWithDevToolsDevelopmentOnly } from '@redux-devtools/extension'
import { combineReducers, legacy_createStore as createStore } from 'redux'

import type { Assets, BrandingOptions, VersionProps } from '../../adminjs-options.interface.js'
import {
  assetsReducer,
  brandingReducer,
  dashboardReducer,
  drawerReducer,
  filterDrawerReducer,
  localesReducer,
  modalReducer,
  noticesReducer,
  pagesReducer,
  pathsReducer,
  resourcesReducer,
  routerReducer,
  sessionReducer,
  themeReducer,
  versionsReducer,
  type DashboardInState,
  type DrawerInState,
  type FilterDrawerInState,
  type LolcaleInState,
  type ModalInState,
  type NoticesInState,
  type PagesInState,
  type PathsInState,
  type ResourcesInState,
  type RouterInState,
  type SessionInState,
  type ThemeInState,
} from './reducers/index.js'

export type ReduxState = {
  assets: Assets
  branding: BrandingOptions
  dashboard: DashboardInState
  drawer: DrawerInState
  filterDrawer: FilterDrawerInState
  locale: LolcaleInState
  modal: ModalInState
  notices: NoticesInState
  pages: PagesInState
  paths: PathsInState
  resources: ResourcesInState
  router: RouterInState
  session: SessionInState
  theme?: ThemeInState
  versions: VersionProps
}

const reducer = combineReducers<ReduxState>({
  assets: assetsReducer,
  branding: brandingReducer,
  dashboard: dashboardReducer,
  drawer: drawerReducer,
  filterDrawer: filterDrawerReducer,
  locale: localesReducer,
  modal: modalReducer,
  notices: noticesReducer,
  pages: pagesReducer,
  paths: pathsReducer,
  resources: resourcesReducer,
  router: routerReducer,
  session: sessionReducer,
  theme: themeReducer,
  versions: versionsReducer,
})

export default (initialState = {}) => createStore(
  reducer,
  initialState,
  composeWithDevToolsDevelopmentOnly(),
)