p5.js-web-editor/client/modules/IDE/reducers/project.js

33 lines
678 B
JavaScript
Raw Normal View History

2016-06-22 21:58:23 +02:00
import * as ActionTypes from '../../../constants';
const initialState = {
2016-06-24 00:29:55 +02:00
name: 'Hello p5.js'
};
const project = (state = initialState, action) => {
2016-06-24 00:29:55 +02:00
switch (action.type) {
case ActionTypes.SET_PROJECT_NAME:
return {
name: action.name
};
case ActionTypes.NEW_PROJECT:
return {
id: action.id,
name: action.name
};
case ActionTypes.SET_PROJECT:
return {
id: action.project.id,
name: action.project.name,
file: {
name: action.project.file.name,
content: action.project.file.content
}
};
default:
return state;
}
};
2016-06-24 00:29:55 +02:00
export default project;