2016-06-23 22:29:55 +00:00
|
|
|
import { browserHistory } from 'react-router';
|
|
|
|
import axios from 'axios';
|
2017-02-17 19:53:48 +00:00
|
|
|
import objectID from 'bson-objectid';
|
2017-03-23 18:50:47 +00:00
|
|
|
import each from 'async/each';
|
2018-02-20 19:44:07 +00:00
|
|
|
import { isEqual } from 'lodash';
|
2017-02-22 19:29:35 +00:00
|
|
|
import * as ActionTypes from '../../../constants';
|
2016-09-07 23:00:52 +00:00
|
|
|
import { showToast, setToastText } from './toast';
|
2017-01-13 22:17:31 +00:00
|
|
|
import { setUnsavedChanges,
|
|
|
|
justOpenedProject,
|
|
|
|
resetJustOpenedProject,
|
2017-01-24 20:29:25 +00:00
|
|
|
showErrorModal } from './ide';
|
2017-04-20 18:05:15 +00:00
|
|
|
import { clearState, saveState } from '../../../persistState';
|
2017-05-03 15:46:12 +00:00
|
|
|
import { redirectToProtocol, protocols } from '../../../components/forceProtocol';
|
2016-06-20 17:29:32 +00:00
|
|
|
|
2017-03-16 04:34:14 +00:00
|
|
|
const ROOT_URL = process.env.API_URL;
|
2016-06-20 17:29:32 +00:00
|
|
|
|
2017-03-02 19:38:29 +00:00
|
|
|
export function setProject(project) {
|
2017-05-03 15:46:12 +00:00
|
|
|
const targetProtocol = project.serveSecure === true ?
|
|
|
|
protocols.https :
|
|
|
|
protocols.http;
|
|
|
|
|
|
|
|
// This will not reload if on same protocol
|
|
|
|
redirectToProtocol(targetProtocol);
|
|
|
|
|
2017-03-02 19:38:29 +00:00
|
|
|
return {
|
|
|
|
type: ActionTypes.SET_PROJECT,
|
|
|
|
project,
|
|
|
|
files: project.files,
|
|
|
|
owner: project.user
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function setProjectName(name) {
|
|
|
|
return {
|
|
|
|
type: ActionTypes.SET_PROJECT_NAME,
|
|
|
|
name
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-06-20 17:29:32 +00:00
|
|
|
export function getProject(id) {
|
2016-11-09 17:52:14 +00:00
|
|
|
return (dispatch, getState) => {
|
2016-10-27 23:45:09 +00:00
|
|
|
dispatch(justOpenedProject());
|
2016-06-23 22:29:55 +00:00
|
|
|
axios.get(`${ROOT_URL}/projects/${id}`, { withCredentials: true })
|
2017-02-22 19:29:35 +00:00
|
|
|
.then((response) => {
|
2017-03-02 19:38:29 +00:00
|
|
|
dispatch(setProject(response.data));
|
2016-09-20 22:27:10 +00:00
|
|
|
dispatch(setUnsavedChanges(false));
|
2016-06-23 22:29:55 +00:00
|
|
|
})
|
|
|
|
.catch(response => dispatch({
|
|
|
|
type: ActionTypes.ERROR,
|
|
|
|
error: response.data
|
|
|
|
}));
|
|
|
|
};
|
2016-06-20 17:29:32 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 18:05:15 +00:00
|
|
|
export function persistState() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.PERSIST_STATE,
|
|
|
|
});
|
|
|
|
const state = getState();
|
|
|
|
saveState(state);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function clearPersistedState() {
|
|
|
|
return (dispatch) => {
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.CLEAR_PERSISTED_STATE,
|
|
|
|
});
|
|
|
|
clearState();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-10-19 16:36:40 +00:00
|
|
|
export function saveProject(autosave = false) {
|
2016-06-23 22:29:55 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const state = getState();
|
2016-08-12 17:31:34 +00:00
|
|
|
if (state.user.id && state.project.owner && state.project.owner.id !== state.user.id) {
|
2017-05-03 15:46:12 +00:00
|
|
|
return Promise.reject();
|
2016-08-12 17:31:34 +00:00
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
const formParams = Object.assign({}, state.project);
|
2016-07-08 18:57:22 +00:00
|
|
|
formParams.files = [...state.files];
|
2016-06-28 23:35:56 +00:00
|
|
|
if (state.project.id) {
|
2017-05-03 15:46:12 +00:00
|
|
|
return axios.put(`${ROOT_URL}/projects/${state.project.id}`, formParams, { withCredentials: true })
|
2017-03-02 19:38:29 +00:00
|
|
|
.then((response) => {
|
2018-02-20 19:44:07 +00:00
|
|
|
const currentState = getState();
|
|
|
|
const savedProject = Object.assign({}, response.data);
|
|
|
|
if (!isEqual(currentState.files, response.data.files)) {
|
|
|
|
savedProject.files = currentState.files;
|
|
|
|
dispatch(setUnsavedChanges(true));
|
|
|
|
} else {
|
|
|
|
dispatch(setUnsavedChanges(false));
|
|
|
|
}
|
|
|
|
dispatch(setProject(savedProject));
|
2016-06-23 22:29:55 +00:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.PROJECT_SAVE_SUCCESS
|
2016-06-28 23:35:56 +00:00
|
|
|
});
|
2016-09-08 02:20:42 +00:00
|
|
|
if (!autosave) {
|
2016-10-27 23:45:09 +00:00
|
|
|
if (state.ide.justOpenedProject && state.preferences.autosave) {
|
|
|
|
dispatch(showToast(5500));
|
|
|
|
dispatch(setToastText('Project saved.'));
|
|
|
|
setTimeout(() => dispatch(setToastText('Autosave enabled.')), 1500);
|
|
|
|
dispatch(resetJustOpenedProject());
|
|
|
|
} else {
|
|
|
|
dispatch(showToast(1500));
|
|
|
|
dispatch(setToastText('Project saved.'));
|
|
|
|
}
|
2016-09-08 02:20:42 +00:00
|
|
|
}
|
2016-06-28 23:35:56 +00:00
|
|
|
})
|
2017-01-13 22:17:31 +00:00
|
|
|
.catch((response) => {
|
|
|
|
if (response.status === 403) {
|
2017-01-24 20:29:25 +00:00
|
|
|
dispatch(showErrorModal('staleSession'));
|
|
|
|
} else if (response.status === 409) {
|
|
|
|
dispatch(showErrorModal('staleProject'));
|
2017-01-13 22:17:31 +00:00
|
|
|
} else {
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.PROJECT_SAVE_FAIL,
|
|
|
|
error: response.data
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2017-05-03 15:46:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return axios.post(`${ROOT_URL}/projects`, formParams, { withCredentials: true })
|
|
|
|
.then((response) => {
|
|
|
|
dispatch(setUnsavedChanges(false));
|
|
|
|
dispatch(setProject(response.data));
|
|
|
|
browserHistory.push(`/${response.data.user.username}/sketches/${response.data.id}`);
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.NEW_PROJECT,
|
|
|
|
project: response.data,
|
|
|
|
owner: response.data.user,
|
|
|
|
files: response.data.files
|
|
|
|
});
|
|
|
|
if (!autosave) {
|
|
|
|
if (state.preferences.autosave) {
|
|
|
|
dispatch(showToast(5500));
|
|
|
|
dispatch(setToastText('Project saved.'));
|
|
|
|
setTimeout(() => dispatch(setToastText('Autosave enabled.')), 1500);
|
|
|
|
dispatch(resetJustOpenedProject());
|
2017-01-13 22:32:06 +00:00
|
|
|
} else {
|
2017-05-03 15:46:12 +00:00
|
|
|
dispatch(showToast(1500));
|
|
|
|
dispatch(setToastText('Project saved.'));
|
2017-01-13 22:32:06 +00:00
|
|
|
}
|
2017-05-03 15:46:12 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch((response) => {
|
|
|
|
if (response.status === 403) {
|
|
|
|
dispatch(showErrorModal('staleSession'));
|
|
|
|
} else {
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.PROJECT_SAVE_FAIL,
|
|
|
|
error: response.data
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2016-06-23 22:29:55 +00:00
|
|
|
};
|
2016-06-20 17:29:32 +00:00
|
|
|
}
|
|
|
|
|
2016-09-08 02:20:42 +00:00
|
|
|
export function autosaveProject() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
saveProject(true)(dispatch, getState);
|
|
|
|
};
|
|
|
|
}
|
2016-06-20 17:29:32 +00:00
|
|
|
|
|
|
|
export function createProject() {
|
2016-06-23 22:29:55 +00:00
|
|
|
return (dispatch) => {
|
|
|
|
axios.post(`${ROOT_URL}/projects`, {}, { withCredentials: true })
|
2017-02-22 19:29:35 +00:00
|
|
|
.then((response) => {
|
2016-12-01 22:12:34 +00:00
|
|
|
browserHistory.push(`/${response.data.user.username}/sketches/${response.data.id}`);
|
2016-06-23 22:29:55 +00:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.NEW_PROJECT,
|
2017-01-24 20:29:25 +00:00
|
|
|
project: response.data,
|
2016-07-15 15:54:47 +00:00
|
|
|
owner: response.data.user,
|
2016-07-06 21:29:07 +00:00
|
|
|
files: response.data.files
|
2016-06-23 22:29:55 +00:00
|
|
|
});
|
2016-09-20 22:27:10 +00:00
|
|
|
dispatch(setUnsavedChanges(false));
|
2016-06-23 22:29:55 +00:00
|
|
|
})
|
|
|
|
.catch(response => dispatch({
|
|
|
|
type: ActionTypes.PROJECT_SAVE_FAIL,
|
|
|
|
error: response.data
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
}
|
2016-07-15 17:11:50 +00:00
|
|
|
|
2016-11-02 18:08:53 +00:00
|
|
|
export function exportProjectAsZip(projectId) {
|
|
|
|
const win = window.open(`${ROOT_URL}/projects/${projectId}/zip`, '_blank');
|
|
|
|
win.focus();
|
2016-07-15 17:11:50 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 23:49:42 +00:00
|
|
|
export function resetProject() {
|
2016-08-12 16:45:26 +00:00
|
|
|
return {
|
|
|
|
type: ActionTypes.RESET_PROJECT
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-11-10 23:49:42 +00:00
|
|
|
export function newProject() {
|
2017-01-05 20:27:57 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
browserHistory.push('/');
|
|
|
|
}, 0);
|
2016-11-10 23:49:42 +00:00
|
|
|
return resetProject();
|
|
|
|
}
|
|
|
|
|
2017-02-17 19:53:48 +00:00
|
|
|
function generateNewIdsForChildren(file, files) {
|
|
|
|
const newChildren = [];
|
|
|
|
file.children.forEach((childId) => {
|
|
|
|
const child = files.find(childFile => childFile.id === childId);
|
|
|
|
const newId = objectID().toHexString();
|
|
|
|
child.id = newId;
|
|
|
|
child._id = newId;
|
|
|
|
newChildren.push(newId);
|
|
|
|
generateNewIdsForChildren(child, files);
|
|
|
|
});
|
|
|
|
file.children = newChildren; // eslint-disable-line
|
|
|
|
}
|
|
|
|
|
2016-07-15 17:36:33 +00:00
|
|
|
export function cloneProject() {
|
|
|
|
return (dispatch, getState) => {
|
2017-01-17 18:20:42 +00:00
|
|
|
dispatch(setUnsavedChanges(false));
|
2016-07-15 17:36:33 +00:00
|
|
|
const state = getState();
|
2017-03-06 19:13:39 +00:00
|
|
|
const newFiles = state.files.map((file) => { // eslint-disable-line
|
|
|
|
return { ...file };
|
|
|
|
});
|
|
|
|
|
2017-03-23 18:50:47 +00:00
|
|
|
// generate new IDS for all files
|
2017-02-17 19:53:48 +00:00
|
|
|
const rootFile = newFiles.find(file => file.name === 'root');
|
|
|
|
const newRootFileId = objectID().toHexString();
|
|
|
|
rootFile.id = newRootFileId;
|
|
|
|
rootFile._id = newRootFileId;
|
|
|
|
generateNewIdsForChildren(rootFile, newFiles);
|
2017-03-23 18:50:47 +00:00
|
|
|
|
|
|
|
// duplicate all files hosted on S3
|
2017-03-23 18:23:54 +00:00
|
|
|
each(newFiles, (file, callback) => {
|
2017-03-23 20:01:01 +00:00
|
|
|
if (file.url && file.url.includes('amazonaws')) {
|
2017-03-23 18:23:54 +00:00
|
|
|
const formParams = {
|
|
|
|
url: file.url
|
|
|
|
};
|
2017-03-23 18:50:47 +00:00
|
|
|
axios.post(`${ROOT_URL}/S3/copy`, formParams, { withCredentials: true })
|
2017-03-23 18:23:54 +00:00
|
|
|
.then((response) => {
|
|
|
|
file.url = response.data.url;
|
|
|
|
callback(null);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
callback(null);
|
|
|
|
}
|
|
|
|
}, (err) => {
|
|
|
|
// if not errors in duplicating the files on S3, then duplicate it
|
|
|
|
const formParams = Object.assign({}, { name: `${state.project.name} copy` }, { files: newFiles });
|
|
|
|
axios.post(`${ROOT_URL}/projects`, formParams, { withCredentials: true })
|
|
|
|
.then((response) => {
|
|
|
|
browserHistory.push(`/${response.data.user.username}/sketches/${response.data.id}`);
|
|
|
|
console.log(response.data);
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.NEW_PROJECT,
|
|
|
|
project: response.data,
|
|
|
|
owner: response.data.user,
|
|
|
|
files: response.data.files
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(response => dispatch({
|
|
|
|
type: ActionTypes.PROJECT_SAVE_FAIL,
|
|
|
|
error: response.data
|
|
|
|
}));
|
|
|
|
});
|
2016-07-15 17:36:33 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-05-03 15:46:12 +00:00
|
|
|
export function setServeSecure(serveSecure, { redirect = true } = {}) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.SET_SERVE_SECURE,
|
|
|
|
serveSecure
|
|
|
|
});
|
|
|
|
|
|
|
|
if (redirect === true) {
|
|
|
|
dispatch(saveProject(false /* autosave */))
|
2018-05-05 00:22:39 +00:00
|
|
|
.then(() => redirectToProtocol(serveSecure === true ? protocols.https : protocols.http));
|
2017-05-03 15:46:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-08-15 16:42:13 +00:00
|
|
|
export function showEditProjectName() {
|
|
|
|
return {
|
|
|
|
type: ActionTypes.SHOW_EDIT_PROJECT_NAME
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hideEditProjectName() {
|
|
|
|
return {
|
|
|
|
type: ActionTypes.HIDE_EDIT_PROJECT_NAME
|
|
|
|
};
|
|
|
|
}
|