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

222 lines
5.9 KiB
JavaScript
Raw Normal View History

2016-06-22 21:58:23 +02:00
import * as ActionTypes from '../../../constants';
import objectID from 'bson-objectid';
2016-05-05 23:48:26 +02:00
const defaultSketch = `function setup() {
2016-06-24 00:29:55 +02:00
createCanvas(400, 400);
2016-05-10 00:28:38 +02:00
}
function draw() {
2016-06-24 00:29:55 +02:00
background(220);
}`;
const defaultHTML =
2016-07-12 03:54:08 +02:00
`<!DOCTYPE html>
<html>
<head>
2016-07-12 17:13:09 +02:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.2/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.2/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.2/addons/p5.sound.min.js"></script>
2016-07-12 03:54:08 +02:00
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<script src="sketch.js"></script>
</body>
</html>
`;
2016-07-12 03:54:08 +02:00
const defaultCSS =
`html, body {
overflow: hidden;
margin: 0;
padding: 0;
}
`;
2016-07-08 20:57:22 +02:00
function initialState() {
const a = objectID().toHexString();
const b = objectID().toHexString();
const c = objectID().toHexString();
2016-08-24 19:09:48 +02:00
const r = objectID().toHexString();
return [
{
name: 'root',
2016-08-24 19:09:48 +02:00
id: r,
_id: r,
children: [a, b, c],
2016-08-30 05:23:10 +02:00
fileType: 'folder'
},
{
name: 'sketch.js',
content: defaultSketch,
2016-08-24 19:09:48 +02:00
id: a,
_id: a,
isSelected: true,
2016-08-30 05:23:10 +02:00
fileType: 'file'
},
{
name: 'index.html',
content: defaultHTML,
2016-08-24 19:09:48 +02:00
id: b,
_id: b,
2016-08-30 05:23:10 +02:00
fileType: 'file'
},
{
name: 'style.css',
content: defaultCSS,
2016-08-24 19:09:48 +02:00
id: c,
_id: c,
2016-08-30 05:23:10 +02:00
fileType: 'file'
}];
}
function getAllDescendantIds(state, nodeId) {
return state.find(file => file.id === nodeId).children
.reduce((acc, childId) => (
[...acc, childId, ...getAllDescendantIds(state, childId)]
), []);
}
function deleteMany(state, ids) {
const newState = [...state];
ids.forEach(id => {
let fileIndex;
newState.find((file, index) => {
if (file.id === id) {
fileIndex = index;
}
return file.id === id;
});
newState.splice(fileIndex, 1);
});
return newState;
}
const files = (state, action) => {
if (state === undefined) {
state = initialState(); // eslint-disable-line
}
2016-06-24 00:29:55 +02:00
switch (action.type) {
case ActionTypes.UPDATE_FILE_CONTENT:
return state.map(file => {
if (file.name !== action.name) {
return file;
}
return Object.assign({}, file, { content: action.content });
});
2016-07-20 00:26:46 +02:00
case ActionTypes.SET_BLOB_URL:
return state.map(file => {
if (file.name !== action.name) {
return file;
}
return Object.assign({}, file, { blobURL: action.blobURL });
});
2016-06-24 00:29:55 +02:00
case ActionTypes.NEW_PROJECT:
return [...action.files];
2016-06-29 18:52:16 +02:00
case ActionTypes.SET_PROJECT:
return [...action.files];
case ActionTypes.RESET_PROJECT:
2016-08-24 21:36:37 +02:00
return initialState();
2016-08-24 01:40:47 +02:00
case ActionTypes.CREATE_FILE: // eslint-disable-line
2016-08-24 22:06:28 +02:00
{
const newState = state.map((file) => {
if (file.id === action.parentId) {
const newFile = Object.assign({}, file);
newFile.children = [...newFile.children, action.id];
return newFile;
}
return file;
});
2016-08-30 05:23:10 +02:00
return [...newState,
{ name: action.name,
id: action.id,
_id: action._id,
content: action.content,
url: action.url,
2016-08-30 20:39:37 +02:00
children: action.children,
2016-08-30 05:23:10 +02:00
fileType: action.fileType || 'file' }];
2016-08-24 22:06:28 +02:00
}
2016-08-03 21:11:59 +02:00
case ActionTypes.SHOW_FILE_OPTIONS:
return state.map(file => {
if (file.id !== action.id) {
return file;
}
return Object.assign({}, file, { isOptionsOpen: true });
});
case ActionTypes.HIDE_FILE_OPTIONS:
return state.map(file => {
if (file.id !== action.id) {
return file;
}
return Object.assign({}, file, { isOptionsOpen: false });
});
case ActionTypes.UPDATE_FILE_NAME:
return state.map(file => {
if (file.id !== action.id) {
return file;
}
return Object.assign({}, file, { name: action.name });
});
case ActionTypes.DELETE_FILE:
2016-08-24 22:06:28 +02:00
{
const newState = state.map((file) => {
if (file.id === action.parentId) {
const newChildren = file.children.filter(child => child !== action.id);
return { ...file, children: newChildren };
}
return file;
});
return newState.filter(file => file.id !== action.id);
}
2016-08-03 23:10:03 +02:00
case ActionTypes.SHOW_EDIT_FILE_NAME:
return state.map(file => {
if (file.id !== action.id) {
return file;
}
return Object.assign({}, file, { isEditingName: true });
});
case ActionTypes.HIDE_EDIT_FILE_NAME:
return state.map(file => {
if (file.id !== action.id) {
return file;
}
return Object.assign({}, file, { isEditingName: false });
});
2016-08-24 19:09:48 +02:00
case ActionTypes.SET_SELECTED_FILE:
return state.map(file => {
if (file.id === action.selectedFile) {
return Object.assign({}, file, { isSelected: true });
}
return Object.assign({}, file, { isSelected: false });
});
case ActionTypes.SHOW_FOLDER_CHILDREN:
return state.map(file => {
if (file.id === action.id) {
return Object.assign({}, file, { isFolderClosed: false });
}
return file;
});
case ActionTypes.HIDE_FOLDER_CHILDREN:
return state.map(file => {
if (file.id === action.id) {
return Object.assign({}, file, { isFolderClosed: true });
}
return file;
});
2016-06-24 00:29:55 +02:00
default:
return state;
}
};
2016-05-05 23:48:26 +02:00
2016-08-25 18:39:36 +02:00
export const getHTMLFile = (state) => state.filter(file => file.name.match(/.*\.html$/i))[0];
export const getJSFiles = (state) => state.filter(file => file.name.match(/.*\.js$/i));
export const getCSSFiles = (state) => state.filter(file => file.name.match(/.*\.css$/i));
2016-07-20 03:36:21 +02:00
export const getLinkedFiles = (state) => state.filter(file => file.url);
2016-07-08 20:57:22 +02:00
export default files;