1
|
|
|
import { combineReducers } from 'redux'; |
2
|
|
|
import serversReducer from '../servers/reducers/server'; |
3
|
|
|
import selectedServerReducer from '../servers/reducers/selectedServer'; |
4
|
|
|
import shortUrlsListReducer from '../short-urls/reducers/shortUrlsList'; |
5
|
|
|
import shortUrlsListParamsReducer from '../short-urls/reducers/shortUrlsListParams'; |
6
|
|
|
import shortUrlCreationReducer from '../short-urls/reducers/shortUrlCreation'; |
7
|
|
|
import shortUrlDeletionReducer from '../short-urls/reducers/shortUrlDeletion'; |
8
|
|
|
import shortUrlTagsReducer from '../short-urls/reducers/shortUrlTags'; |
9
|
|
|
import shortUrlVisitsReducer from '../visits/reducers/shortUrlVisits'; |
10
|
|
|
import shortUrlDetailReducer from '../visits/reducers/shortUrlDetail'; |
11
|
|
|
import tagsListReducer from '../tags/reducers/tagsList'; |
12
|
|
|
import tagDeleteReducer from '../tags/reducers/tagDelete'; |
13
|
4 |
|
import tagEditReducer from '../tags/reducers/tagEdit'; |
14
|
|
|
|
15
|
|
|
export default combineReducers({ |
16
|
|
|
servers: serversReducer, |
17
|
|
|
selectedServer: selectedServerReducer, |
18
|
|
|
shortUrlsList: shortUrlsListReducer, |
19
|
|
|
shortUrlsListParams: shortUrlsListParamsReducer, |
20
|
|
|
shortUrlCreationResult: shortUrlCreationReducer, |
21
|
|
|
shortUrlDeletion: shortUrlDeletionReducer, |
22
|
|
|
shortUrlTags: shortUrlTagsReducer, |
23
|
|
|
shortUrlVisits: shortUrlVisitsReducer, |
24
|
|
|
shortUrlDetail: shortUrlDetailReducer, |
25
|
|
|
tagsList: tagsListReducer, |
26
|
|
|
tagDelete: tagDeleteReducer, |
27
|
|
|
tagEdit: tagEditReducer, |
28
|
|
|
}); |
29
|
|
|
|