129 lines
2.5 KiB
JavaScript
129 lines
2.5 KiB
JavaScript
import * as actions from 'constants/show_action_types';
|
|
|
|
// basic request parsing
|
|
export function updateRequestError (error) {
|
|
return {
|
|
type: actions.REQUEST_ERROR_UPDATE,
|
|
data: error,
|
|
};
|
|
}
|
|
|
|
export function updateRequestWithChannelRequest (name, id) {
|
|
const requestId = `cr#${name}#${id}`;
|
|
return {
|
|
type: actions.REQUEST_CHANNEL_UPDATE,
|
|
data: { requestId, name, id },
|
|
};
|
|
};
|
|
|
|
export function updateRequestWithAssetRequest (name, id, channelName, channelId, extension) {
|
|
const requestId = `ar#${name}#${id}#${channelName}#${channelId}`;
|
|
return {
|
|
type: actions.REQUEST_CLAIM_UPDATE,
|
|
data: {
|
|
requestId,
|
|
name,
|
|
modifier: {
|
|
id,
|
|
channel: {
|
|
name: channelName,
|
|
id : channelId,
|
|
},
|
|
},
|
|
extension,
|
|
},
|
|
};
|
|
};
|
|
|
|
// request for an asset
|
|
|
|
export function newAssetRequest (id, name, modifier) {
|
|
return {
|
|
type: actions.ASSET_REQUEST_NEW,
|
|
data: { id, name, modifier },
|
|
};
|
|
};
|
|
|
|
export function addAssetRequest (id, error, name, claimId) {
|
|
return {
|
|
type: actions.ASSET_REQUEST_ADD,
|
|
data: { id, error, name, claimId },
|
|
};
|
|
};
|
|
|
|
// show an asset
|
|
|
|
export function showNewAsset (id, name, claimId) {
|
|
return {
|
|
type: actions.SHOW_ASSET_NEW,
|
|
data: { id, name, claimId },
|
|
};
|
|
};
|
|
|
|
export function updateShowAsset (id, error, name, claimId, shortId, claimData) {
|
|
return {
|
|
type: actions.SHOW_ASSET_UPDATE,
|
|
data: { id, error, name, claimId, shortId, claimData },
|
|
};
|
|
};
|
|
|
|
export function clearShowAsset () {
|
|
return {
|
|
type: actions.SHOW_ASSET_CLEAR,
|
|
};
|
|
};
|
|
|
|
// request for a channel
|
|
|
|
export function newChannelRequest (id, name, channelId) {
|
|
return {
|
|
type: actions.NEW_CHANNEL_REQUEST,
|
|
data: {id, name, channelId},
|
|
};
|
|
};
|
|
|
|
export function addChannelRequest (id, error, data) {
|
|
return {
|
|
type: actions.CHANNEL_REQUEST_ADD,
|
|
data: { id, error, data },
|
|
};
|
|
}
|
|
|
|
// show a channel
|
|
|
|
export function showNewChannel (name, longId, shortId) {
|
|
|
|
};
|
|
|
|
export function updateShowChannel (name, longId, shortId) {
|
|
|
|
};
|
|
|
|
export function clearShowChannel () {
|
|
return {
|
|
type: actions.SHOW_CHANNEL_CLEAR,
|
|
};
|
|
};
|
|
|
|
// display a file
|
|
|
|
export function fileRequested (name, claimId) {
|
|
return {
|
|
type: actions.FILE_REQUESTED,
|
|
data: { name, claimId },
|
|
};
|
|
};
|
|
|
|
export function updateFileAvailability (status) {
|
|
return {
|
|
type: actions.FILE_AVAILABILITY_UPDATE,
|
|
data: status,
|
|
};
|
|
};
|
|
|
|
export function updateDisplayAssetError (error) {
|
|
return {
|
|
type: actions.DISPLAY_ASSET_ERROR,
|
|
data: error,
|
|
};
|
|
};
|