28 lines
639 B
JavaScript
28 lines
639 B
JavaScript
import * as ActionTypes from '../../../constants';
|
|
|
|
const initialState = {
|
|
name: 'Hello p5.js'
|
|
};
|
|
|
|
const project = (state = initialState, action) => {
|
|
switch (action.type) {
|
|
case ActionTypes.SET_PROJECT_NAME:
|
|
return Object.assign({}, { ...state }, { name: action.name });
|
|
case ActionTypes.NEW_PROJECT:
|
|
return {
|
|
id: action.id,
|
|
name: action.name,
|
|
owner: action.owner
|
|
};
|
|
case ActionTypes.SET_PROJECT:
|
|
return {
|
|
id: action.project.id,
|
|
name: action.project.name,
|
|
owner: action.owner
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
};
|
|
|
|
export default project;
|