2016-08-24 18:22:10 +00:00
|
|
|
import objectID from 'bson-objectid';
|
2016-10-22 20:42:43 +00:00
|
|
|
import blobUtil from 'blob-util';
|
2016-11-30 00:18:11 +00:00
|
|
|
import { reset } from 'redux-form';
|
2020-06-08 10:29:24 +00:00
|
|
|
import apiClient from '../../../utils/apiClient';
|
2017-02-22 19:29:35 +00:00
|
|
|
import * as ActionTypes from '../../../constants';
|
2020-03-24 22:07:58 +00:00
|
|
|
import { setUnsavedChanges, closeNewFolderModal, closeNewFileModal } from './ide';
|
2019-04-24 17:32:23 +00:00
|
|
|
import { setProjectSavedTime } from './project';
|
2016-07-13 22:53:56 +00:00
|
|
|
|
2016-06-22 19:58:23 +00:00
|
|
|
|
2016-07-21 02:52:09 +00:00
|
|
|
function appendToFilename(filename, string) {
|
|
|
|
const dotIndex = filename.lastIndexOf('.');
|
|
|
|
if (dotIndex === -1) return filename + string;
|
|
|
|
return filename.substring(0, dotIndex) + string + filename.substring(dotIndex);
|
|
|
|
}
|
|
|
|
|
2016-09-03 18:52:51 +00:00
|
|
|
function createUniqueName(name, parentId, files) {
|
|
|
|
const siblingFiles = files.find(file => file.id === parentId)
|
|
|
|
.children.map(childFileId => files.find(file => file.id === childFileId));
|
2016-07-21 02:52:09 +00:00
|
|
|
let testName = name;
|
|
|
|
let index = 1;
|
2017-02-22 19:29:35 +00:00
|
|
|
let existingName = siblingFiles.find(file => name === file.name);
|
2016-07-21 02:52:09 +00:00
|
|
|
|
|
|
|
while (existingName) {
|
|
|
|
testName = appendToFilename(name, `-${index}`);
|
2017-02-22 19:29:35 +00:00
|
|
|
index += 1;
|
2016-09-03 18:52:51 +00:00
|
|
|
existingName = siblingFiles.find((file) => testName === file.name); // eslint-disable-line
|
2016-07-21 02:52:09 +00:00
|
|
|
}
|
|
|
|
return testName;
|
|
|
|
}
|
|
|
|
|
2019-02-25 17:57:10 +00:00
|
|
|
export function updateFileContent(id, content) {
|
2016-06-23 22:29:55 +00:00
|
|
|
return {
|
2016-07-07 17:50:52 +00:00
|
|
|
type: ActionTypes.UPDATE_FILE_CONTENT,
|
2019-02-25 17:57:10 +00:00
|
|
|
id,
|
2016-06-23 22:29:55 +00:00
|
|
|
content
|
|
|
|
};
|
|
|
|
}
|
2016-07-13 20:13:28 +00:00
|
|
|
|
2016-07-13 22:53:56 +00:00
|
|
|
export function createFile(formProps) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const state = getState();
|
2019-10-08 20:39:47 +00:00
|
|
|
const { parentId } = state.ide;
|
2016-07-13 22:53:56 +00:00
|
|
|
if (state.project.id) {
|
|
|
|
const postParams = {
|
2016-09-03 18:52:51 +00:00
|
|
|
name: createUniqueName(formProps.name, parentId, state.files),
|
2016-08-25 15:25:22 +00:00
|
|
|
url: formProps.url,
|
2016-08-25 21:32:27 +00:00
|
|
|
content: formProps.content || '',
|
2016-09-02 22:11:27 +00:00
|
|
|
parentId,
|
|
|
|
children: []
|
2016-07-13 22:53:56 +00:00
|
|
|
};
|
2020-06-08 10:29:24 +00:00
|
|
|
apiClient.post(`/projects/${state.project.id}/files`, postParams)
|
2017-02-22 19:29:35 +00:00
|
|
|
.then((response) => {
|
2016-07-13 22:53:56 +00:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.CREATE_FILE,
|
2019-04-24 17:32:23 +00:00
|
|
|
...response.data.updatedFile,
|
2016-08-30 18:39:37 +00:00
|
|
|
parentId
|
2016-07-13 22:53:56 +00:00
|
|
|
});
|
2019-04-24 17:32:23 +00:00
|
|
|
dispatch(setProjectSavedTime(response.data.project.updatedAt));
|
2020-03-24 22:07:58 +00:00
|
|
|
dispatch(closeNewFileModal());
|
2016-11-30 00:18:11 +00:00
|
|
|
dispatch(reset('new-file'));
|
|
|
|
// dispatch({
|
|
|
|
// type: ActionTypes.HIDE_MODAL
|
|
|
|
// });
|
2016-10-24 20:42:15 +00:00
|
|
|
dispatch(setUnsavedChanges(true));
|
2016-07-13 22:53:56 +00:00
|
|
|
})
|
2020-04-25 14:48:39 +00:00
|
|
|
.catch((error) => {
|
|
|
|
const { response } = error;
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.ERROR,
|
|
|
|
error: response.data
|
|
|
|
});
|
|
|
|
});
|
2016-07-13 22:53:56 +00:00
|
|
|
} else {
|
2016-08-24 18:22:10 +00:00
|
|
|
const id = objectID().toHexString();
|
2016-07-13 22:53:56 +00:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.CREATE_FILE,
|
2016-09-03 18:52:51 +00:00
|
|
|
name: createUniqueName(formProps.name, parentId, state.files),
|
2016-08-24 18:22:10 +00:00
|
|
|
id,
|
|
|
|
_id: id,
|
2016-08-25 04:18:28 +00:00
|
|
|
url: formProps.url,
|
2016-08-25 21:32:27 +00:00
|
|
|
content: formProps.content || '',
|
2016-09-02 22:11:27 +00:00
|
|
|
parentId,
|
|
|
|
children: []
|
2016-07-13 22:53:56 +00:00
|
|
|
});
|
2016-11-30 00:18:11 +00:00
|
|
|
dispatch(reset('new-file'));
|
|
|
|
// dispatch({
|
|
|
|
// type: ActionTypes.HIDE_MODAL
|
|
|
|
// });
|
2016-10-24 20:42:15 +00:00
|
|
|
dispatch(setUnsavedChanges(true));
|
2020-03-24 22:07:58 +00:00
|
|
|
dispatch(closeNewFileModal());
|
2016-07-13 22:53:56 +00:00
|
|
|
}
|
2016-07-13 20:13:28 +00:00
|
|
|
};
|
|
|
|
}
|
2016-08-03 19:11:59 +00:00
|
|
|
|
2016-08-30 03:23:10 +00:00
|
|
|
export function createFolder(formProps) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const state = getState();
|
2019-10-08 20:39:47 +00:00
|
|
|
const { parentId } = state.ide;
|
2016-08-30 03:23:10 +00:00
|
|
|
if (state.project.id) {
|
|
|
|
const postParams = {
|
2016-09-03 18:52:51 +00:00
|
|
|
name: createUniqueName(formProps.name, parentId, state.files),
|
2016-08-30 03:23:10 +00:00
|
|
|
content: '',
|
2016-08-30 18:39:37 +00:00
|
|
|
children: [],
|
|
|
|
parentId,
|
2016-08-30 03:23:10 +00:00
|
|
|
fileType: 'folder'
|
|
|
|
};
|
2020-06-08 10:29:24 +00:00
|
|
|
apiClient.post(`/projects/${state.project.id}/files`, postParams)
|
2017-02-22 19:29:35 +00:00
|
|
|
.then((response) => {
|
2016-08-30 03:23:10 +00:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.CREATE_FILE,
|
2019-04-24 17:32:23 +00:00
|
|
|
...response.data.updatedFile,
|
2016-08-30 18:39:37 +00:00
|
|
|
parentId
|
2016-08-30 03:23:10 +00:00
|
|
|
});
|
2019-04-24 17:32:23 +00:00
|
|
|
dispatch(setProjectSavedTime(response.data.project.updatedAt));
|
2020-03-24 22:07:58 +00:00
|
|
|
dispatch(closeNewFolderModal());
|
2016-08-30 03:23:10 +00:00
|
|
|
})
|
2020-04-25 14:48:39 +00:00
|
|
|
.catch((error) => {
|
|
|
|
const { response } = error;
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.ERROR,
|
|
|
|
error: response.data
|
|
|
|
});
|
|
|
|
});
|
2016-08-30 03:23:10 +00:00
|
|
|
} else {
|
|
|
|
const id = objectID().toHexString();
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.CREATE_FILE,
|
2016-09-03 18:52:51 +00:00
|
|
|
name: createUniqueName(formProps.name, parentId, state.files),
|
2016-08-30 03:23:10 +00:00
|
|
|
id,
|
|
|
|
_id: id,
|
|
|
|
content: '',
|
|
|
|
// TODO pass parent id from File Tree
|
2016-08-30 18:39:37 +00:00
|
|
|
parentId,
|
|
|
|
fileType: 'folder',
|
|
|
|
children: []
|
2016-08-30 03:23:10 +00:00
|
|
|
});
|
2020-03-24 22:07:58 +00:00
|
|
|
dispatch(closeNewFolderModal());
|
2016-08-30 03:23:10 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-04-10 16:42:33 +00:00
|
|
|
export function updateFileName(id, name) {
|
2020-04-07 23:04:00 +00:00
|
|
|
return (dispatch) => {
|
2020-04-10 16:42:33 +00:00
|
|
|
dispatch(setUnsavedChanges(true));
|
2020-04-07 23:04:00 +00:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.UPDATE_FILE_NAME,
|
|
|
|
id,
|
|
|
|
name
|
|
|
|
});
|
2016-08-03 19:11:59 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-08-24 20:06:28 +00:00
|
|
|
export function deleteFile(id, parentId) {
|
2016-08-24 21:59:15 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const state = getState();
|
2016-08-24 22:52:08 +00:00
|
|
|
if (state.project.id) {
|
|
|
|
const deleteConfig = {
|
|
|
|
params: {
|
2016-08-24 21:59:15 +00:00
|
|
|
parentId
|
2016-08-24 22:52:08 +00:00
|
|
|
}
|
|
|
|
};
|
2020-06-08 10:29:24 +00:00
|
|
|
apiClient.delete(`/projects/${state.project.id}/files/${id}`, deleteConfig)
|
2020-08-05 20:43:32 +00:00
|
|
|
.then((response) => {
|
|
|
|
dispatch(setProjectSavedTime(response.data.project.updatedAt));
|
2016-08-24 22:52:08 +00:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.DELETE_FILE,
|
|
|
|
id,
|
|
|
|
parentId
|
|
|
|
});
|
|
|
|
})
|
2020-04-25 14:48:39 +00:00
|
|
|
.catch((error) => {
|
|
|
|
const { response } = error;
|
2016-08-24 22:52:08 +00:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.ERROR,
|
|
|
|
error: response.data
|
|
|
|
});
|
2016-08-24 21:59:15 +00:00
|
|
|
});
|
2016-08-24 22:52:08 +00:00
|
|
|
} else {
|
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.DELETE_FILE,
|
|
|
|
id,
|
|
|
|
parentId
|
|
|
|
});
|
|
|
|
}
|
2016-08-03 19:11:59 +00:00
|
|
|
};
|
|
|
|
}
|
2016-08-30 22:46:59 +00:00
|
|
|
|
|
|
|
export function showFolderChildren(id) {
|
|
|
|
return {
|
|
|
|
type: ActionTypes.SHOW_FOLDER_CHILDREN,
|
|
|
|
id
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hideFolderChildren(id) {
|
|
|
|
return {
|
|
|
|
type: ActionTypes.HIDE_FOLDER_CHILDREN,
|
|
|
|
id
|
|
|
|
};
|
|
|
|
}
|
2016-10-22 20:42:43 +00:00
|
|
|
|
|
|
|
export function setBlobUrl(file, blobURL) {
|
|
|
|
return {
|
|
|
|
type: ActionTypes.SET_BLOB_URL,
|
2019-02-25 17:57:10 +00:00
|
|
|
id: file.id,
|
2016-10-22 20:42:43 +00:00
|
|
|
blobURL
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getBlobUrl(file) {
|
|
|
|
if (file.blobUrl) {
|
|
|
|
blobUtil.revokeObjectURL(file.blobUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
const fileBlob = blobUtil.createBlob([file.content], { type: 'text/plain' });
|
|
|
|
const blobURL = blobUtil.createObjectURL(fileBlob);
|
|
|
|
return blobURL;
|
|
|
|
}
|