55 lines
1.2 KiB
JavaScript
55 lines
1.2 KiB
JavaScript
import * as actions from 'constants/show_action_types';
|
|
import { CHANNEL, ASSET } from 'constants/show_request_types';
|
|
|
|
const initialState = {
|
|
requestType : null,
|
|
channelRequest: {
|
|
name: null,
|
|
id : null,
|
|
},
|
|
assetRequest: {
|
|
name : null,
|
|
modifier: {
|
|
id : null,
|
|
channel: {
|
|
name: null,
|
|
id : null,
|
|
},
|
|
},
|
|
extension: null,
|
|
},
|
|
};
|
|
|
|
/*
|
|
Reducers describe how the application's state changes in response to actions
|
|
*/
|
|
|
|
export default function (state = initialState, action) {
|
|
switch (action.type) {
|
|
case actions.REQUEST_UPDATE_CHANNEL:
|
|
return Object.assign({}, state, {
|
|
requestType : CHANNEL,
|
|
channelRequest: {
|
|
name: action.name,
|
|
id : action.id,
|
|
},
|
|
});
|
|
case actions.REQUEST_UPDATE_CLAIM:
|
|
return Object.assign({}, state, {
|
|
requestType : ASSET,
|
|
assetRequest: {
|
|
name : action.name,
|
|
modifier: {
|
|
id : action.id,
|
|
channel: {
|
|
name: action.channelName,
|
|
id : action.channelId,
|
|
},
|
|
},
|
|
extension: action.extension,
|
|
},
|
|
});
|
|
default:
|
|
return state;
|
|
}
|
|
}
|