2018-02-01 23:29:33 +01:00
|
|
|
import * as actions from 'constants/show_action_types';
|
2018-02-02 20:10:58 +01:00
|
|
|
import { CHANNEL, ASSET } from 'constants/show_request_types';
|
2018-02-07 04:00:52 +01:00
|
|
|
import { LOCAL_CHECK, ERROR } from 'constants/asset_display_states';
|
2018-02-01 23:29:33 +01:00
|
|
|
|
|
|
|
const initialState = {
|
2018-02-02 20:10:58 +01:00
|
|
|
requestType : null,
|
|
|
|
channelRequest: {
|
|
|
|
name: null,
|
|
|
|
id : null,
|
2018-02-01 23:29:33 +01:00
|
|
|
},
|
2018-02-02 20:10:58 +01:00
|
|
|
assetRequest: {
|
|
|
|
name : null,
|
|
|
|
modifier: {
|
|
|
|
id : null,
|
|
|
|
channel: {
|
|
|
|
name: null,
|
|
|
|
id : null,
|
|
|
|
},
|
2018-02-02 03:42:03 +01:00
|
|
|
},
|
2018-02-02 20:10:58 +01:00
|
|
|
extension: null,
|
2018-02-01 23:29:33 +01:00
|
|
|
},
|
2018-02-03 03:16:18 +01:00
|
|
|
showChannel: {
|
|
|
|
channelData: {
|
|
|
|
name : null,
|
|
|
|
shortId: null,
|
|
|
|
longId : null,
|
|
|
|
},
|
|
|
|
channelClaimsData: {
|
|
|
|
claims : null,
|
|
|
|
currentPage: null,
|
|
|
|
totalPages : null,
|
|
|
|
totalClaims: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
showAsset: {
|
2018-02-07 04:00:52 +01:00
|
|
|
error : null,
|
|
|
|
status : LOCAL_CHECK,
|
|
|
|
claimData: null,
|
|
|
|
shortId : null,
|
2018-02-03 03:16:18 +01:00
|
|
|
},
|
2018-02-01 23:29:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Reducers describe how the application's state changes in response to actions
|
|
|
|
*/
|
|
|
|
|
|
|
|
export default function (state = initialState, action) {
|
|
|
|
switch (action.type) {
|
2018-02-02 20:10:58 +01:00
|
|
|
case actions.REQUEST_UPDATE_CHANNEL:
|
2018-02-01 23:29:33 +01:00
|
|
|
return Object.assign({}, state, {
|
2018-02-02 20:10:58 +01:00
|
|
|
requestType : CHANNEL,
|
2018-02-06 20:55:46 +01:00
|
|
|
channelRequest: action.data,
|
2018-02-01 23:29:33 +01:00
|
|
|
});
|
2018-02-02 20:10:58 +01:00
|
|
|
case actions.REQUEST_UPDATE_CLAIM:
|
2018-02-01 23:29:33 +01:00
|
|
|
return Object.assign({}, state, {
|
2018-02-02 20:10:58 +01:00
|
|
|
requestType : ASSET,
|
2018-02-06 20:55:46 +01:00
|
|
|
assetRequest: action.data,
|
2018-02-01 23:29:33 +01:00
|
|
|
});
|
2018-02-03 03:16:18 +01:00
|
|
|
case actions.CHANNEL_DATA_UPDATE:
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
showChannel: Object.assign({}, state.showChannel, {
|
2018-02-06 20:55:46 +01:00
|
|
|
channelData: action.data,
|
2018-02-03 03:16:18 +01:00
|
|
|
}),
|
|
|
|
});
|
|
|
|
case actions.CHANNEL_CLAIMS_DATA_UPDATE:
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
showChannel: Object.assign({}, state.showChannel, {
|
2018-02-06 20:55:46 +01:00
|
|
|
channelClaimsData: action.data,
|
2018-02-03 03:16:18 +01:00
|
|
|
}),
|
|
|
|
});
|
|
|
|
case actions.ASSET_CLAIM_DATA_UPDATE:
|
|
|
|
return Object.assign({}, state, {
|
2018-02-07 04:00:52 +01:00
|
|
|
showAsset: Object.assign({}, state.showAsset, {
|
|
|
|
claimData: action.data.data,
|
|
|
|
shortId : action.data.shortId,
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
case actions.FILE_IS_AVAILABLE_UPDATE:
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
showAsset: Object.assign({}, state.showAsset, {
|
|
|
|
status: action.data,
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
case actions.SHOW_ASSET_ERROR:
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
showAsset: Object.assign({}, state.showAsset, {
|
|
|
|
error : action.data,
|
|
|
|
status: ERROR,
|
|
|
|
}),
|
2018-02-03 03:16:18 +01:00
|
|
|
});
|
2018-02-01 23:29:33 +01:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
}
|