spee.ch/react/reducers/index.js

74 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-01-10 03:25:38 +01:00
import {
2018-01-11 21:51:38 +01:00
CHANNEL_UPDATE, CLAIM_UPDATE, FILE_CLEAR, FILE_SELECTED, METADATA_UPDATE, PUBLISH_STATUS_UPDATE,
2018-01-10 03:25:38 +01:00
SET_PUBLISH_IN_CHANNEL,
} from '../actions';
2018-01-09 02:06:31 +01:00
const initialState = {
2018-01-10 03:25:38 +01:00
loggedInChannel: {
name : null,
shortId: null,
longId : null,
},
2018-01-10 20:26:01 +01:00
publishInChannel: false,
2018-01-12 00:37:32 +01:00
status : {
status : null,
message: null,
},
error : null,
file : null,
claim : '',
metadata: {
title : '',
thumbnail : '',
description: '',
license : '',
2018-01-10 22:10:08 +01:00
nsfw : false,
},
2018-01-09 02:06:31 +01:00
};
/*
Reducers describe how the application's state changes in response to actions
*/
export default function (state = initialState, action) {
switch (action.type) {
case FILE_SELECTED:
return Object.assign({}, state, {
file: action.file,
2018-01-09 02:06:31 +01:00
});
case FILE_CLEAR:
return initialState;
case METADATA_UPDATE:
return Object.assign({}, state, {
2018-01-10 22:10:08 +01:00
metadata: Object.assign({}, state.metadata, {
[action.name]: action.value,
2018-01-10 22:10:08 +01:00
}),
2018-01-10 03:25:38 +01:00
});
case CLAIM_UPDATE:
return Object.assign({}, state, {
claim: action.value,
});
case CHANNEL_UPDATE:
return Object.assign({}, state, {
loggedInChannel: {
name : action.name,
shortId: action.shortId,
longId : action.longId,
},
});
case SET_PUBLISH_IN_CHANNEL:
return Object.assign({}, state, {
2018-01-11 21:51:38 +01:00
publishInChannel: action.channel,
2018-01-10 03:25:38 +01:00
});
2018-01-11 21:51:38 +01:00
case PUBLISH_STATUS_UPDATE:
return Object.assign({}, state, {
2018-01-12 00:37:32 +01:00
status: Object.assign({}, state.metadata, {
status : action.status,
message: action.message,
}),
});
2018-01-09 02:06:31 +01:00
default:
return state;
}
}