2016-08-24 03:01:20 +00:00
|
|
|
import objectID from 'bson-objectid';
|
2017-02-22 19:29:35 +00:00
|
|
|
import * as ActionTypes from '../../../constants';
|
2016-05-05 21:48:26 +00:00
|
|
|
|
2018-03-01 18:28:43 +00:00
|
|
|
const defaultSketch = `function setup() {
|
2016-06-23 22:29:55 +00:00
|
|
|
createCanvas(400, 400);
|
2018-03-01 18:28:43 +00:00
|
|
|
}
|
2016-05-09 22:28:38 +00:00
|
|
|
|
2018-03-01 18:28:43 +00:00
|
|
|
function draw() {
|
2016-06-23 22:29:55 +00:00
|
|
|
background(220);
|
2016-07-06 19:09:05 +00:00
|
|
|
}`;
|
|
|
|
|
|
|
|
const defaultHTML =
|
2016-07-12 01:54:08 +00:00
|
|
|
`<!DOCTYPE html>
|
2020-01-28 22:12:46 +00:00
|
|
|
<html lang="en">
|
2016-07-06 19:09:05 +00:00
|
|
|
<head>
|
2020-07-30 17:45:13 +00:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.js"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/addons/p5.sound.min.js"></script>
|
2016-07-12 01:54:08 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
2017-10-30 19:36:09 +00:00
|
|
|
<meta charset="utf-8" />
|
2018-02-22 21:47:25 +00:00
|
|
|
|
2016-07-06 19:09:05 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<script src="sketch.js"></script>
|
2018-03-01 18:28:43 +00:00
|
|
|
</body>
|
2016-07-06 19:09:05 +00:00
|
|
|
</html>
|
|
|
|
`;
|
|
|
|
|
2016-07-12 01:54:08 +00:00
|
|
|
const defaultCSS =
|
|
|
|
`html, body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2018-09-08 18:50:39 +00:00
|
|
|
canvas {
|
|
|
|
display: block;
|
|
|
|
}
|
2016-07-12 01:54:08 +00:00
|
|
|
`;
|
2016-07-08 18:57:22 +00:00
|
|
|
|
2016-11-16 21:29:17 +00:00
|
|
|
const initialState = () => {
|
2016-08-24 03:01:20 +00:00
|
|
|
const a = objectID().toHexString();
|
|
|
|
const b = objectID().toHexString();
|
|
|
|
const c = objectID().toHexString();
|
2016-08-24 17:09:48 +00:00
|
|
|
const r = objectID().toHexString();
|
2016-08-24 03:01:20 +00:00
|
|
|
return [
|
|
|
|
{
|
|
|
|
name: 'root',
|
2016-08-24 17:09:48 +00:00
|
|
|
id: r,
|
|
|
|
_id: r,
|
2020-08-03 18:56:31 +00:00
|
|
|
children: [b, a, c],
|
2017-02-22 19:29:35 +00:00
|
|
|
fileType: 'folder',
|
|
|
|
content: ''
|
2016-08-24 03:01:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'sketch.js',
|
|
|
|
content: defaultSketch,
|
2016-08-24 17:09:48 +00:00
|
|
|
id: a,
|
|
|
|
_id: a,
|
2016-09-14 19:57:52 +00:00
|
|
|
isSelectedFile: true,
|
2016-09-04 00:31:34 +00:00
|
|
|
fileType: 'file',
|
|
|
|
children: []
|
2016-08-24 03:01:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'index.html',
|
|
|
|
content: defaultHTML,
|
2016-08-24 17:09:48 +00:00
|
|
|
id: b,
|
2016-08-25 21:32:27 +00:00
|
|
|
_id: b,
|
2016-09-04 00:31:34 +00:00
|
|
|
fileType: 'file',
|
|
|
|
children: []
|
2016-08-24 03:01:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'style.css',
|
|
|
|
content: defaultCSS,
|
2016-08-24 17:09:48 +00:00
|
|
|
id: c,
|
2016-08-25 21:32:27 +00:00
|
|
|
_id: c,
|
2016-09-04 00:31:34 +00:00
|
|
|
fileType: 'file',
|
|
|
|
children: []
|
2016-08-24 03:01:20 +00:00
|
|
|
}];
|
2016-11-16 21:29:17 +00:00
|
|
|
};
|
2016-07-06 19:09:05 +00:00
|
|
|
|
2016-09-02 16:01:23 +00:00
|
|
|
function getAllDescendantIds(state, nodeId) {
|
|
|
|
return state.find(file => file.id === nodeId).children
|
2018-05-05 00:22:39 +00:00
|
|
|
.reduce((acc, childId) => (
|
|
|
|
[...acc, childId, ...getAllDescendantIds(state, childId)]
|
|
|
|
), []);
|
2016-09-02 16:01:23 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 22:11:27 +00:00
|
|
|
function deleteChild(state, parentId, id) {
|
|
|
|
const newState = state.map((file) => {
|
|
|
|
if (file.id === parentId) {
|
|
|
|
const newFile = Object.assign({}, file);
|
|
|
|
newFile.children = newFile.children.filter(child => child !== id);
|
|
|
|
return newFile;
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
});
|
|
|
|
return newState;
|
|
|
|
}
|
|
|
|
|
2016-09-02 16:01:23 +00:00
|
|
|
function deleteMany(state, ids) {
|
|
|
|
const newState = [...state];
|
2017-02-22 19:29:35 +00:00
|
|
|
ids.forEach((id) => {
|
2016-09-02 16:01:23 +00:00
|
|
|
let fileIndex;
|
|
|
|
newState.find((file, index) => {
|
|
|
|
if (file.id === id) {
|
|
|
|
fileIndex = index;
|
|
|
|
}
|
|
|
|
return file.id === id;
|
|
|
|
});
|
|
|
|
newState.splice(fileIndex, 1);
|
|
|
|
});
|
|
|
|
return newState;
|
|
|
|
}
|
|
|
|
|
2020-08-03 18:56:31 +00:00
|
|
|
function sortedChildrenId(state, children) {
|
|
|
|
const childrenArray = state.filter(file => children.includes(file.id));
|
|
|
|
childrenArray.sort((a, b) => (a.name > b.name ? 1 : -1));
|
|
|
|
return childrenArray.map(child => child.id);
|
|
|
|
}
|
|
|
|
|
2020-08-04 16:24:45 +00:00
|
|
|
function updateParent(state, action) {
|
2020-08-04 04:58:21 +00:00
|
|
|
return state.map((file) => {
|
|
|
|
if (file.id === action.parentId) {
|
|
|
|
const newFile = Object.assign({}, file);
|
|
|
|
newFile.children = [...newFile.children, action.id];
|
|
|
|
return newFile;
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function renameFile(state, action) {
|
|
|
|
return state.map((file) => {
|
|
|
|
if (file.id !== action.id) {
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
return Object.assign({}, file, { name: action.name });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-08-24 03:01:20 +00:00
|
|
|
const files = (state, action) => {
|
|
|
|
if (state === undefined) {
|
|
|
|
state = initialState(); // eslint-disable-line
|
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
switch (action.type) {
|
2016-07-07 17:50:52 +00:00
|
|
|
case ActionTypes.UPDATE_FILE_CONTENT:
|
2017-02-22 19:29:35 +00:00
|
|
|
return state.map((file) => {
|
2019-02-25 17:57:10 +00:00
|
|
|
if (file.id !== action.id) {
|
2016-07-06 19:09:05 +00:00
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
2016-07-07 17:50:52 +00:00
|
|
|
return Object.assign({}, file, { content: action.content });
|
2016-07-06 19:09:05 +00:00
|
|
|
});
|
2016-10-22 20:42:43 +00:00
|
|
|
case ActionTypes.SET_BLOB_URL:
|
2017-02-22 19:29:35 +00:00
|
|
|
return state.map((file) => {
|
2019-02-25 17:57:10 +00:00
|
|
|
if (file.id !== action.id) {
|
2016-10-22 20:42:43 +00:00
|
|
|
return file;
|
|
|
|
}
|
|
|
|
return Object.assign({}, file, { blobURL: action.blobURL });
|
|
|
|
});
|
2016-06-23 22:29:55 +00:00
|
|
|
case ActionTypes.NEW_PROJECT:
|
2016-07-06 21:29:07 +00:00
|
|
|
return [...action.files];
|
2016-06-29 16:52:16 +00:00
|
|
|
case ActionTypes.SET_PROJECT:
|
2016-07-06 21:29:07 +00:00
|
|
|
return [...action.files];
|
2016-08-12 16:45:26 +00:00
|
|
|
case ActionTypes.RESET_PROJECT:
|
2016-08-24 19:36:37 +00:00
|
|
|
return initialState();
|
2016-08-23 23:40:47 +00:00
|
|
|
case ActionTypes.CREATE_FILE: // eslint-disable-line
|
2018-05-05 00:22:39 +00:00
|
|
|
{
|
2020-08-04 04:58:21 +00:00
|
|
|
const newState = [
|
2020-08-04 16:24:45 +00:00
|
|
|
...updateParent(state, action),
|
2018-05-05 00:22:39 +00:00
|
|
|
{
|
|
|
|
name: action.name,
|
|
|
|
id: action.id,
|
|
|
|
_id: action._id,
|
|
|
|
content: action.content,
|
|
|
|
url: action.url,
|
|
|
|
children: action.children,
|
2020-08-04 04:58:21 +00:00
|
|
|
fileType: action.fileType || 'file'
|
|
|
|
}];
|
2020-08-03 18:56:31 +00:00
|
|
|
return newState.map((file) => {
|
|
|
|
if (file.id === action.parentId) {
|
|
|
|
file.children = sortedChildrenId(newState, file.children);
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
});
|
2018-05-05 00:22:39 +00:00
|
|
|
}
|
2016-08-03 19:11:59 +00:00
|
|
|
case ActionTypes.UPDATE_FILE_NAME:
|
2020-08-03 18:56:31 +00:00
|
|
|
{
|
2020-08-04 04:58:21 +00:00
|
|
|
const newState = renameFile(state, action);
|
2020-08-03 18:56:31 +00:00
|
|
|
return newState.map((file) => {
|
|
|
|
if (file.children.includes(action.id)) {
|
|
|
|
file.children = sortedChildrenId(newState, file.children);
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
});
|
|
|
|
}
|
2016-08-03 19:11:59 +00:00
|
|
|
case ActionTypes.DELETE_FILE:
|
2018-05-05 00:22:39 +00:00
|
|
|
{
|
|
|
|
const newState = deleteMany(state, [action.id, ...getAllDescendantIds(state, action.id)]);
|
|
|
|
return deleteChild(newState, action.parentId, action.id);
|
|
|
|
// 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-24 17:09:48 +00:00
|
|
|
case ActionTypes.SET_SELECTED_FILE:
|
2017-02-22 19:29:35 +00:00
|
|
|
return state.map((file) => {
|
2016-08-24 17:09:48 +00:00
|
|
|
if (file.id === action.selectedFile) {
|
2016-09-14 19:57:52 +00:00
|
|
|
return Object.assign({}, file, { isSelectedFile: true });
|
2016-08-24 17:09:48 +00:00
|
|
|
}
|
2016-09-14 19:57:52 +00:00
|
|
|
return Object.assign({}, file, { isSelectedFile: false });
|
2016-08-24 17:09:48 +00:00
|
|
|
});
|
2016-08-30 22:46:59 +00:00
|
|
|
case ActionTypes.SHOW_FOLDER_CHILDREN:
|
2017-02-22 19:29:35 +00:00
|
|
|
return state.map((file) => {
|
2016-08-30 22:46:59 +00:00
|
|
|
if (file.id === action.id) {
|
|
|
|
return Object.assign({}, file, { isFolderClosed: false });
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
});
|
|
|
|
case ActionTypes.HIDE_FOLDER_CHILDREN:
|
2017-02-22 19:29:35 +00:00
|
|
|
return state.map((file) => {
|
2016-08-30 22:46:59 +00:00
|
|
|
if (file.id === action.id) {
|
|
|
|
return Object.assign({}, file, { isFolderClosed: true });
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
});
|
2016-06-23 22:29:55 +00:00
|
|
|
default:
|
2020-08-04 18:16:25 +00:00
|
|
|
return state.map((file) => {
|
2020-08-04 19:02:02 +00:00
|
|
|
file.children = sortedChildrenId(state, file.children);
|
2020-08-04 18:16:25 +00:00
|
|
|
return file;
|
|
|
|
});
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
};
|
2016-05-05 21:48:26 +00:00
|
|
|
|
2017-02-22 19:29:35 +00: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));
|
|
|
|
export const getLinkedFiles = state => state.filter(file => file.url);
|
2016-07-08 18:57:22 +00:00
|
|
|
|
2016-07-06 19:09:05 +00:00
|
|
|
export default files;
|