spee.ch/react/actions/show.js

100 lines
1.7 KiB
JavaScript
Raw Normal View History

import * as actions from 'constants/show_action_types';
export function updateRequestWithChannelRequest (name, id) {
return {
type: actions.REQUEST_CHANNEL_UPDATE,
2018-02-06 20:55:46 +01:00
data: {
name,
id,
},
};
};
export function updateRequestWithAssetRequest (name, id, channelName, channelId, extension) {
return {
type: actions.REQUEST_CLAIM_UPDATE,
2018-02-06 20:55:46 +01:00
data: {
name,
modifier: {
id,
channel: {
name: channelName,
id : channelId,
},
},
extension,
},
};
};
2018-02-03 03:16:18 +01:00
export function updateRequestError (error) {
return {
type: actions.REQUEST_ERROR_UPDATE,
data: error,
};
}
2018-02-03 03:16:18 +01:00
export function updateChannelData (name, longId, shortId) {
return {
type: actions.CHANNEL_DATA_UPDATE,
2018-02-06 20:55:46 +01:00
data: {
name,
longId,
shortId,
},
2018-02-03 03:16:18 +01:00
};
};
export function updateChannelClaimsData (claims, currentPage, totalPages, totalClaims) {
return {
type: actions.CHANNEL_CLAIMS_DATA_UPDATE,
2018-02-06 20:55:46 +01:00
data: {
claims,
currentPage,
totalPages,
totalClaims,
},
2018-02-03 03:16:18 +01:00
};
};
2018-02-05 02:43:02 +01:00
export function updateAssetClaimData (data, shortId) {
2018-02-03 03:16:18 +01:00
return {
type: actions.ASSET_CLAIM_DATA_UPDATE,
2018-02-06 20:55:46 +01:00
data: {
data,
shortId,
},
2018-02-03 03:16:18 +01:00
};
};
2018-02-07 04:00:52 +01:00
export function fileRequested (name, claimId) {
return {
type: actions.FILE_REQUESTED,
data: {
name,
claimId,
},
};
};
export function updateFileAvailability (status) {
2018-02-07 04:00:52 +01:00
return {
type: actions.FILE_AVAILABILITY_UPDATE,
2018-02-07 04:00:52 +01:00
data: status,
};
};
export function updateShowAssetError (error) {
return {
type: actions.SHOW_ASSET_ERROR,
data: error,
};
};
export function updateDisplayAssetError (error) {
return {
type: actions.DISPLAY_ASSET_ERROR,
data: error,
};
};