2019-10-14 16:31:58 +08:00
|
|
|
import infoService from "./info.js";
|
|
|
|
import treeService from "./tree.js";
|
|
|
|
import server from "./server.js";
|
|
|
|
import ws from "./ws.js";
|
|
|
|
import utils from "./utils.js";
|
|
|
|
|
|
|
|
export async function uploadFiles(parentNoteId, files, options) {
|
|
|
|
if (files.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const importId = utils.randomString(10);
|
|
|
|
let noteId;
|
|
|
|
let counter = 0;
|
|
|
|
|
|
|
|
for (const file of files) {
|
|
|
|
counter++;
|
|
|
|
|
|
|
|
const formData = new FormData();
|
|
|
|
formData.append('upload', file);
|
|
|
|
formData.append('importId', importId);
|
|
|
|
formData.append('last', counter === files.length ? "true" : "false");
|
|
|
|
|
|
|
|
for (const key in options) {
|
|
|
|
formData.append(key, options[key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
({noteId} = await $.ajax({
|
|
|
|
url: baseApiUrl + 'notes/' + parentNoteId + '/import',
|
|
|
|
headers: server.getHeaders(),
|
|
|
|
data: formData,
|
|
|
|
dataType: 'json',
|
|
|
|
type: 'POST',
|
|
|
|
timeout: 60 * 60 * 1000,
|
|
|
|
contentType: false, // NEEDED, DON'T REMOVE THIS
|
|
|
|
processData: false, // NEEDED, DON'T REMOVE THIS
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ws.subscribeToMessages(async message => {
|
2019-10-18 02:44:51 +08:00
|
|
|
const toast = {
|
|
|
|
id: "import",
|
|
|
|
title: "Import",
|
|
|
|
icon: "plus"
|
|
|
|
};
|
|
|
|
|
2019-10-14 16:31:58 +08:00
|
|
|
if (message.type === 'import-error') {
|
2019-10-18 02:44:51 +08:00
|
|
|
infoService.closePersistent(toast.id);
|
2019-10-14 16:31:58 +08:00
|
|
|
infoService.showError(message.message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.type === 'import-progress-count') {
|
2019-10-18 02:44:51 +08:00
|
|
|
toast.message = "Import in progress: " + message.progressCount;
|
|
|
|
|
|
|
|
infoService.showPersistent(toast);
|
2019-10-14 16:31:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (message.type === 'import-succeeded') {
|
2019-10-18 02:44:51 +08:00
|
|
|
toast.message = "Import finished successfully.";
|
|
|
|
toast.closeAfter = 5000;
|
|
|
|
|
|
|
|
infoService.showPersistent(toast);
|
2019-10-14 16:31:58 +08:00
|
|
|
|
|
|
|
await treeService.reloadNote(message.parentNoteId);
|
|
|
|
|
|
|
|
if (message.importedNoteId) {
|
|
|
|
const node = await treeService.activateNote(message.importedNoteId);
|
|
|
|
|
|
|
|
node.setExpanded(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default {
|
|
|
|
uploadFiles
|
|
|
|
}
|