spee.ch/react/actions/publish.js

68 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-01-18 00:00:03 +01:00
import * as actions from 'constants/action_types';
2018-01-09 02:06:31 +01:00
// export action creators
export function selectFile (file) {
return {
2018-01-16 20:38:37 +01:00
type: actions.FILE_SELECTED,
file: file,
2018-01-09 02:06:31 +01:00
};
};
export function clearFile () {
return {
2018-01-16 20:38:37 +01:00
type: actions.FILE_CLEAR,
2018-01-09 02:06:31 +01:00
};
};
export function updateMetadata (name, value) {
return {
2018-01-16 20:38:37 +01:00
type: actions.METADATA_UPDATE,
name,
value,
};
};
2018-01-10 03:25:38 +01:00
export function updateClaim (value) {
return {
2018-01-16 20:38:37 +01:00
type: actions.CLAIM_UPDATE,
2018-01-10 03:25:38 +01:00
value,
};
};
2018-01-11 21:51:38 +01:00
export function setPublishInChannel (channel) {
2018-01-10 03:25:38 +01:00
return {
2018-01-16 20:38:37 +01:00
type: actions.SET_PUBLISH_IN_CHANNEL,
2018-01-11 21:51:38 +01:00
channel,
};
};
2018-01-12 00:37:32 +01:00
export function updatePublishStatus (status, message) {
2018-01-11 21:51:38 +01:00
return {
2018-01-16 20:38:37 +01:00
type: actions.PUBLISH_STATUS_UPDATE,
2018-01-11 21:51:38 +01:00
status,
2018-01-12 00:37:32 +01:00
message,
2018-01-10 03:25:38 +01:00
};
2018-01-11 21:51:38 +01:00
};
export function updateError (name, value) {
return {
2018-01-16 20:38:37 +01:00
type: actions.ERROR_UPDATE,
name,
value,
};
};
export function updateSelectedChannel (value) {
return {
type: actions.SELECTED_CHANNEL_UPDATE,
value,
};
};
export function toggleMetadataInputs (value) {
return {
type: actions.TOGGLE_METADATA_INPUTS,
value,
};
};