spee.ch/react/actions/index.js

63 lines
1 KiB
JavaScript
Raw Normal View History

2018-01-16 20:38:37 +01:00
import * as actions from '../constants/action_types.js';
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,
};
};
export function updateLoggedInChannel (name, shortId, longId) {
return {
2018-01-16 20:38:37 +01:00
type: actions.CHANNEL_UPDATE,
2018-01-10 03:25:38 +01:00
name,
shortId,
longId,
};
};
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,
};
};