2016-06-22 19:58:23 +00:00
|
|
|
import * as ActionTypes from '../../../constants';
|
2016-06-23 22:29:55 +00:00
|
|
|
import { browserHistory } from 'react-router';
|
|
|
|
import axios from 'axios';
|
2016-09-07 23:00:52 +00:00
|
|
|
import { showToast, setToastText } from './toast';
|
2016-11-09 17:52:14 +00:00
|
|
|
import { setUnsavedChanges, justOpenedProject, resetJustOpenedProject, setProjectSavedTime, resetProjectSavedTime } from './ide';
|
|
|
|
import moment from 'moment';
|
2016-06-20 17:29:32 +00:00
|
|
|
|
|
|
|
const ROOT_URL = location.href.indexOf('localhost') > 0 ? 'http://localhost:8000/api' : '/api';
|
|
|
|
|
|
|
|
export function getProject(id) {
|
2016-11-09 17:52:14 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const state = getState();
|
2016-10-27 23:45:09 +00:00
|
|
|
dispatch(justOpenedProject());
|
2016-11-09 17:52:14 +00:00
|
|
|
if (state.ide.justOpenedProject) {
|
|
|
|
dispatch(resetProjectSavedTime());
|
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
axios.get(`${ROOT_URL}/projects/${id}`, { withCredentials: true })
|
|
|
|
.then(response => {
|
2016-08-17 22:13:17 +00:00
|
|
|
// browserHistory.push(`/projects/${id}`);
|
2016-06-23 22:29:55 +00:00
|
|
|
dispatch({
|
2016-06-28 23:35:56 +00:00
|
|
|
type: ActionTypes.SET_PROJECT,
|
2016-06-29 16:52:16 +00:00
|
|
|
project: response.data,
|
2016-07-08 18:57:22 +00:00
|
|
|
files: response.data.files,
|
2016-07-15 15:54:47 +00:00
|
|
|
owner: response.data.user
|
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.ERROR,
|
|
|
|
error: response.data
|
|
|
|
}));
|
|
|
|
};
|
2016-06-20 17:29:32 +00:00
|
|
|
}
|
|
|
|
|
2016-08-15 16:42:13 +00:00
|
|
|
export function setProjectName(name) {
|
2016-06-23 22:29:55 +00:00
|
|
|
return {
|
|
|
|
type: ActionTypes.SET_PROJECT_NAME,
|
|
|
|
name
|
|
|
|
};
|
2016-06-20 17:29:32 +00:00
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
return;
|
|
|
|
}
|
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) {
|
|
|
|
axios.put(`${ROOT_URL}/projects/${state.project.id}`, formParams, { withCredentials: true })
|
2016-06-23 22:29:55 +00:00
|
|
|
.then(() => {
|
2016-09-20 22:27:10 +00:00
|
|
|
dispatch(setUnsavedChanges(false));
|
2016-11-09 17:52:14 +00:00
|
|
|
dispatch(setProjectSavedTime(moment().format()));
|
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
|
|
|
})
|
|
|
|
.catch((response) => dispatch({
|
|
|
|
type: ActionTypes.PROJECT_SAVE_FAIL,
|
|
|
|
error: response.data
|
|
|
|
}));
|
2016-06-23 22:29:55 +00:00
|
|
|
} else {
|
|
|
|
axios.post(`${ROOT_URL}/projects`, formParams, { withCredentials: true })
|
|
|
|
.then(response => {
|
2016-09-20 22:27:10 +00:00
|
|
|
dispatch(setUnsavedChanges(false));
|
2016-11-09 17:52:14 +00:00
|
|
|
dispatch(setProjectSavedTime(moment().format()));
|
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,
|
|
|
|
name: response.data.name,
|
|
|
|
id: response.data.id,
|
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-08 02:20:42 +00:00
|
|
|
if (!autosave) {
|
2016-10-27 23:45:09 +00:00
|
|
|
if (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-07 23:12:01 +00:00
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
})
|
|
|
|
.catch(response => dispatch({
|
|
|
|
type: ActionTypes.PROJECT_SAVE_FAIL,
|
|
|
|
error: response.data
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
};
|
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 })
|
|
|
|
.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,
|
|
|
|
name: response.data.name,
|
|
|
|
id: response.data.id,
|
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() {
|
|
|
|
browserHistory.push('/');
|
|
|
|
return resetProject();
|
|
|
|
}
|
|
|
|
|
2016-07-15 17:36:33 +00:00
|
|
|
export function cloneProject() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const state = getState();
|
2016-11-02 21:35:47 +00:00
|
|
|
const formParams = Object.assign({}, { name: `${state.project.name} copy` }, { files: state.files });
|
2016-07-15 17:36:33 +00:00
|
|
|
axios.post(`${ROOT_URL}/projects`, formParams, { withCredentials: true })
|
|
|
|
.then(response => {
|
2016-12-01 22:12:34 +00:00
|
|
|
browserHistory.push(`/${response.data.user.username}/sketches/${response.data.id}`);
|
2016-07-15 17:36:33 +00:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.NEW_PROJECT,
|
|
|
|
name: response.data.name,
|
|
|
|
id: response.data.id,
|
|
|
|
owner: response.data.user,
|
|
|
|
selectedFile: response.data.selectedFile,
|
|
|
|
files: response.data.files
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(response => dispatch({
|
|
|
|
type: ActionTypes.PROJECT_SAVE_FAIL,
|
|
|
|
error: response.data
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|