aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/reducers/index.js
blob: 936f68a12fc3e7124b4107935ef7b597a67ad006 (plain)
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
import { combineReducers } from 'redux';

import { navigation } from './navigation';
import { searchInterestedParties } from './search-interested-parties';
import { reducer as environmentPanel } from './environment-panel.reducer';
import { reducer as i18n } from './i18n.reducer';
import { reducer as graphTooltipWindow } from './graph-tooltip-window.reducer';
import { reducer as vedgeInfoWindow } from './vedge-info-window.reducer';
import { reducer as mainApp } from './main-app.reducer';

const calipsoApp = combineReducers({
  api: combineReducers({
    navigation,
    searchInterestedParties,
    i18n
  }),
  components: combineReducers({
    mainApp: mainApp,
    environmentPanel,
    graphTooltipWindow,
    vedgeInfoWindow
  })
});

export default calipsoApp;