mirror of
https://github.com/zadam/trilium.git
synced 2024-11-18 13:41:59 +08:00
29 lines
No EOL
759 B
JavaScript
29 lines
No EOL
759 B
JavaScript
import noteDetailService from "./note_detail.js";
|
|
import treeService from "./tree.js";
|
|
import server from "./server.js";
|
|
|
|
function uploadFile() {
|
|
$("#file-upload").trigger('click');
|
|
}
|
|
|
|
$("#file-upload").change(async function() {
|
|
const formData = new FormData();
|
|
formData.append('upload', this.files[0]);
|
|
|
|
const resp = await $.ajax({
|
|
url: baseApiUrl + 'notes/' + noteDetailService.getCurrentNoteId() + '/upload',
|
|
headers: server.getHeaders(),
|
|
data: formData,
|
|
type: 'POST',
|
|
contentType: false, // NEEDED, DON'T OMIT THIS
|
|
processData: false, // NEEDED, DON'T OMIT THIS
|
|
});
|
|
|
|
await treeService.reload();
|
|
|
|
await treeService.activateNode(resp.noteId);
|
|
});
|
|
|
|
export default {
|
|
uploadFile
|
|
} |