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

189 lines
4.6 KiB
JavaScript
Raw Normal View History

2016-06-22 21:58:23 +02:00
import * as ActionTypes from '../../../constants';
import axios from 'axios';
2016-07-20 06:51:27 +02:00
import blobUtil from 'blob-util';
2016-07-21 20:18:38 +02:00
import xhr from 'xhr';
import fileType from 'file-type';
2016-08-24 20:22:10 +02:00
import objectID from 'bson-objectid';
const ROOT_URL = location.href.indexOf('localhost') > 0 ? 'http://localhost:8000/api' : '/api';
2016-06-22 21:58:23 +02:00
function appendToFilename(filename, string) {
const dotIndex = filename.lastIndexOf('.');
if (dotIndex === -1) return filename + string;
return filename.substring(0, dotIndex) + string + filename.substring(dotIndex);
}
function createUniqueName(name, files) {
let testName = name;
let index = 1;
let existingName = files.find((file) => name === file.name);
while (existingName) {
testName = appendToFilename(name, `-${index}`);
index++;
existingName = files.find((file) => testName === file.name); // eslint-disable-line
}
return testName;
}
export function updateFileContent(name, content) {
2016-06-24 00:29:55 +02:00
return {
type: ActionTypes.UPDATE_FILE_CONTENT,
2016-06-24 00:29:55 +02:00
name,
content
};
}
2016-07-20 06:51:27 +02:00
export function getBlobUrl(file) {
return (dispatch) => {
2016-07-21 20:18:38 +02:00
xhr({
uri: file.url,
responseType: 'arraybuffer',
useXDR: true
}, (err, body, res) => {
if (err) throw err;
const typeOfFile = fileType(new Uint8Array(res));
blobUtil.arrayBufferToBlob(res, typeOfFile.mime)
.then(blobUtil.createObjectURL)
.then(objectURL => {
dispatch({
type: ActionTypes.SET_BLOB_URL,
name: file.name,
blobURL: objectURL
});
2016-07-20 06:51:27 +02:00
});
});
2016-07-21 20:18:38 +02:00
// blobUtil.imgSrcToBlob(file.url, undefined, { crossOrigin: 'Anonymous' })
// .then(blobUtil.createObjectURL)
// .then(objectURL => {
// dispatch({
// type: ActionTypes.SET_BLOB_URL,
// name: file.name,
// blobURL: objectURL
// });
// });
2016-07-20 06:51:27 +02:00
};
}
export function createFile(formProps) {
return (dispatch, getState) => {
const state = getState();
2016-08-24 20:22:10 +02:00
const rootFile = state.files.filter(file => file.name === 'root')[0];
if (state.project.id) {
const postParams = {
name: createUniqueName(formProps.name, state.files),
2016-08-25 17:25:22 +02:00
url: formProps.url,
content: formProps.content || '',
2016-08-24 01:40:47 +02:00
// TODO pass parent id to API, once there are folders
2016-08-24 20:22:10 +02:00
parentId: rootFile.id
};
axios.post(`${ROOT_URL}/projects/${state.project.id}/files`, postParams, { withCredentials: true })
.then(response => {
2016-07-20 06:51:27 +02:00
if (response.data.url) {
getBlobUrl(response.data)(dispatch);
}
dispatch({
type: ActionTypes.CREATE_FILE,
2016-08-24 23:29:44 +02:00
...response.data,
parentId: rootFile.id
});
dispatch({
type: ActionTypes.HIDE_MODAL
});
})
.catch(response => dispatch({
type: ActionTypes.ERROR,
error: response.data
}));
} else {
2016-07-20 06:51:27 +02:00
if (formProps.url) {
getBlobUrl(formProps)(dispatch);
}
2016-08-24 20:22:10 +02:00
const id = objectID().toHexString();
dispatch({
type: ActionTypes.CREATE_FILE,
name: createUniqueName(formProps.name, state.files),
2016-08-24 20:22:10 +02:00
id,
_id: id,
2016-08-25 06:18:28 +02:00
url: formProps.url,
content: formProps.content || '',
2016-08-24 01:40:47 +02:00
// TODO pass parent id from File Tree
2016-08-24 20:22:10 +02:00
parentId: rootFile.id
});
dispatch({
type: ActionTypes.HIDE_MODAL
});
}
};
}
2016-08-03 21:11:59 +02:00
export function showFileOptions(fileId) {
return {
type: ActionTypes.SHOW_FILE_OPTIONS,
id: fileId
};
}
export function hideFileOptions(fileId) {
return {
type: ActionTypes.HIDE_FILE_OPTIONS,
id: fileId
};
}
2016-08-03 23:10:03 +02:00
export function showEditFileName(id) {
return {
type: ActionTypes.SHOW_EDIT_FILE_NAME,
id
};
}
export function hideEditFileName(id) {
return {
type: ActionTypes.HIDE_EDIT_FILE_NAME,
id
};
}
2016-08-03 21:11:59 +02:00
export function updateFileName(id, name) {
return {
type: ActionTypes.UPDATE_FILE_NAME,
id,
name
};
}
2016-08-24 22:06:28 +02:00
export function deleteFile(id, parentId) {
2016-08-24 23:59:15 +02:00
return (dispatch, getState) => {
const state = getState();
2016-08-25 00:52:08 +02:00
if (state.project.id) {
const deleteConfig = {
params: {
2016-08-24 23:59:15 +02:00
parentId
2016-08-25 00:52:08 +02:00
}
};
axios.delete(`${ROOT_URL}/projects/${state.project.id}/files/${id}`, deleteConfig, { withCredentials: true })
.then(() => {
dispatch({
type: ActionTypes.DELETE_FILE,
id,
parentId
});
})
.catch(response => {
dispatch({
type: ActionTypes.ERROR,
error: response.data
});
2016-08-24 23:59:15 +02:00
});
2016-08-25 00:52:08 +02:00
} else {
dispatch({
type: ActionTypes.DELETE_FILE,
id,
parentId
});
}
2016-08-03 21:11:59 +02:00
};
}