|
1 | | -import reducers from './reducers'; |
2 | | -import reducerRegistry from './reducerRegistry'; |
3 | | - |
4 | | -// TODO #70: Separate all reducers into their respective modules, register from there |
5 | | -Object.entries(reducers).map(([name, reducer]) => |
6 | | - reducerRegistry.register(name, reducer) |
7 | | -); |
8 | | - |
9 | | -export { |
10 | | - getActiveTool, |
11 | | - getClosedPanelsForDashboard, |
12 | | - getColumnSelectionValidatorForDashboard, |
13 | | - getColumnsForDashboard, |
14 | | - getCommandHistoryStorage, |
15 | | - getConsoleCreatorSettingsForDashboard, |
16 | | - getControllerConfiguration, |
17 | | - getDashboardClosedPanels, |
18 | | - getDashboardColumnSelectionValidators, |
19 | | - getDashboardColumns, |
20 | | - getDashboardConsoleCreatorSettings, |
21 | | - getDashboardInputFilters, |
22 | | - getDashboardIsolatedLinkerPanelIds, |
23 | | - getDashboardLinks, |
24 | | - getDashboardOpenedPanelMaps, |
25 | | - getDashboardPanelTableMaps, |
26 | | - getDefaultDateTimeFormat, |
27 | | - getDisableMoveConfirmation, |
28 | | - getDraftManager, |
29 | | - getFormatter, |
30 | | - getInputFiltersForDashboard, |
31 | | - getIsLoggedIn, |
32 | | - getIsolatedLinkerPanelIdForDashboard, |
33 | | - getLinksForDashboard, |
34 | | - getOpenedPanelMapForDashboard, |
35 | | - getServerConfigValues, |
36 | | - getSettings, |
37 | | - getShowSystemBadge, |
38 | | - getShowTSeparator, |
39 | | - getShowTimeZone, |
40 | | - getStorage, |
41 | | - getTableMapForDashboard, |
42 | | - getTimeZone, |
43 | | - getUser, |
44 | | - getUserGroups, |
45 | | - getUserName, |
46 | | - getWorkspace, |
47 | | - getWorkspaceStorage, |
48 | | -} from './selectors'; |
49 | | -export { |
50 | | - addDashboardLinks, |
51 | | - deleteDashboardLinks, |
52 | | - saveSettings, |
53 | | - saveWorkspace, |
54 | | - setActiveTool, |
55 | | - setCommandHistoryStorage, |
56 | | - setControllerConfiguration, |
57 | | - setDashboardClosedPanels, |
58 | | - setDashboardColumnSelectionValidator, |
59 | | - setDashboardColumns, |
60 | | - setDashboardConsoleCreatorSettings, |
61 | | - setDashboardInputFilters, |
62 | | - setDashboardIsolatedLinkerPanelId, |
63 | | - setDashboardLinks, |
64 | | - setDashboardOpenedPanelMap, |
65 | | - setDashboardPanelTableMap, |
66 | | - setDraftManager, |
67 | | - setIsLoggedIn, |
68 | | - setServerConfigValues, |
69 | | - setUser, |
70 | | - setWorkspace, |
71 | | - setWorkspaceStorage, |
72 | | - updateWorkspaceData, |
73 | | -} from './actions'; |
| 1 | +export * from './selectors'; |
| 2 | +export * from './actions'; |
74 | 3 | export { default as reducers } from './reducers'; |
75 | 4 | export { default as reducerRegistry } from './reducerRegistry'; |
76 | 5 | export { default as store } from './store'; |
0 commit comments