appReducer.js
1005 Bytes
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
'use strict';
import InitialState from './appInitialState';
const {
SET_PLATFORM,
SET_CHANNEL,
SET_HOST,
SET_SERVICE_HOST,
SET_SINGLE_HOST,
SET_YOHOOD_TICKETS,
SET_YOHOOD_TICKET,
} = require('../../constants/actionTypes').default;
const initialState = new InitialState;
export default function appReducer(state = initialState, action) {
if (!(state instanceof InitialState)) return initialState.merge(state);
switch (action.type) {
case SET_PLATFORM:
return state.set('platform', action.payload);
case SET_CHANNEL:
return state.set('channel', action.payload);
case SET_HOST:
return state.set('host', action.payload);
case SET_SERVICE_HOST:
return state.set('serviceHost', action.payload);
case SET_SINGLE_HOST:
return state.set('singleHost', action.payload);
case SET_YOHOOD_TICKETS:
return this.state.set('yohoodTicketsSkn',action.payload);
case SET_YOHOOD_TICKET:
return this.state.set('yohoodTicketSkn',action.payload);
}
return state;
}