2d0751bafe0abfe382a103730e95b78560b9e7ad
[citadel.git] / webcit-ng / static / js / upload.js
1 // Handle any tasks which require uploading files to the server (such as attachments)
2 // h/t https://www.smashingmagazine.com/2018/01/drag-drop-file-uploader-vanilla-js/ which inspired the design of this module
3 //
4 // Copyright (c) 2016-2023 by the citadel.org team
5 //
6 // This program is open source software.  Use, duplication, or
7 // disclosure are subject to the GNU General Public License v3.
8
9 var uploads_in_progress = 0;
10 var uploads = [] ;                                                              // everything the user has uploaded
11
12
13 // Remove the upload window completely (even if it's hidden)
14 function deactivate_uploads() {
15         upload_window = document.getElementById('ctdl-upload');
16         if (upload_window) {
17                 upload_window.remove();
18         }
19 }
20
21
22 // Turn the specified div into a place where we can upload.  (Note: permanently changes the drag-and-drop behavior of that div.)
23 function activate_uploads(parent_div) {
24                 document.getElementById(parent_div).innerHTML += `
25                         <div class="ctdl-upload" id="ctdl-upload">
26                                 <div id="ctdl_attachments_title" class="ctdl-compose-attachments-title">
27                                         <div><h1><i class="fa fa-paperclip" style="color:grey"></i>` + _("Attachments:") + ` <span id="num_attachments">` + uploads.length + `</span></h1></div>
28                                         <div><h1><i class="fas fa-window-close" style="color:red" onClick="show_or_hide_upload_window()"></i></h1></div>
29                                 </div>
30                                 <br>
31                                 <ul id="ctdl-upload_list">
32                                 </ul>
33                                 <br>
34                                 <div id="drop-area" class="ctdl-upload-drop-area">
35                                         <form class="ctdl-upload-form">
36                                                 <p>${_("Drop files here to upload")}</p>
37                                                 <input type="file" id="fileElem" multiple accept="*/*" onChange="handle_upload_files(this.files)">
38                                         </form>
39                                 </div>
40                         </div>
41                 `;
42
43                 // activate drag and drop
44                 let dropArea = document.getElementById(parent_div);
45                 ;['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
46                         dropArea.addEventListener(eventName, upload_prevent_defaults, false)
47                 })
48                 ;["dragenter", "dragover"].forEach(eventName => {
49                         dropArea.addEventListener(eventName, upload_highlight, false)
50                 })
51                 ;['dragleave', 'drop'].forEach(eventName => {
52                         dropArea.addEventListener(eventName, upload_unhighlight, false)
53                 })
54                 dropArea.addEventListener('drop', upload_handle_drop, false);
55 }
56
57
58 // prevent drag and drop events from propagating up through the DOM
59 function upload_prevent_defaults(e) {
60         e.preventDefault();
61         e.stopPropagation();
62 }
63
64
65 function upload_handle_drop(e) {
66         let dt = e.dataTransfer;
67         let files = dt.files;
68         handle_upload_files(files);
69 }
70
71
72 function handle_upload_files(files) {
73         ([...files]).forEach(upload_file)
74 }
75
76
77 function upload_file(file) {
78         var url = '/ctdl/p/';
79         var xhr = new XMLHttpRequest();
80         var formData = new FormData();
81         xhr.open('POST', url, true);
82       
83         xhr.addEventListener('readystatechange', function(e) {
84                 if (xhr.readyState == 4 && xhr.status == 200) {
85                         // remove the "uploading in progress" message
86                         let li = document.getElementById("ctdl_uploading_" + uploads_in_progress.toString());
87                         li.parentNode.removeChild(li);
88                         uploads_in_progress -= 1;
89
90                         // The response body will be a JSON array of completed uploads.
91                         var j_response = JSON.parse(xhr.response);
92
93                         // Add these uploads to the displayed list
94                         j_response.forEach((item) => {
95                                 let new_upl = document.createElement("li");
96                                 // item["ref"] is what we need
97                                 new_upl.innerHTML = `<i class="fa-solid fa-circle-xmark" style="color:red" onClick="alert('` + item["ref"] + `')"></i>`
98                                 + `&nbsp;`
99                                 + item["uploadfilename"] + " (" + item["contenttype"] + ", " + item["contentlength"] + " " + _("bytes") + ")";
100                                 document.getElementById("ctdl-upload_list").appendChild(new_upl);
101
102                                 // append it to the global list of uploads
103                                 uploads.push(item);
104                         });
105                         document.getElementById("num_attachments").innerHTML = uploads.length;
106                 }
107                 else if (xhr.readyState == 4 && xhr.status != 200) {
108                         // remove the "uploading in progress" message (there was an error, so just let it disappear)
109                         let li = document.getElementById("ctdl_uploading_" + uploads_in_progress.toString());
110                         li.parentNode.removeChild(li);
111                         uploads_in_progress -= 1;
112                 }
113         })
114  
115         formData.append('file', file);
116         xhr.send(formData);
117         uploads_in_progress += 1;
118
119         // Make an "uploading in progress" message appear in the uploads list!
120         progress = document.createElement("li");
121         progress.setAttribute("id", "ctdl_uploading_" + uploads_in_progress.toString());
122         progress.innerHTML = `<img src="/ctdl/s/images/dotcrawl.gif" /> ` + _("Processing dropped files...");
123         document.getElementById("ctdl-upload_list").appendChild(progress);
124 }
125
126
127 // called when the user drags a file into the upload area
128 function upload_highlight(e) {
129         let dropArea = document.getElementById("ctdl-upload");
130         dropArea.classList.add('highlight')
131
132         document.getElementById("ctdl-upload").style.display = "block";         /* also make it appear */
133 }
134
135
136 // called when the user is no longer dragging a file into the upload area
137 function upload_unhighlight(e) {
138         let dropArea = document.getElementById("ctdl-upload");
139         dropArea.classList.remove('highlight')
140 }
141
142
143 // Show or hide the attachments window in the composer
144 function show_or_hide_upload_window() {
145
146         if (document.getElementById("ctdl-upload").style.display == "block") {
147                 document.getElementById("ctdl-upload").style.display = "none";          /* turn it off */
148         }
149         else {
150                 document.getElementById("ctdl-upload").style.display = "block";         /* turn it on */
151         }
152 }
153
154
155 // Flush all uploaded files and close the window
156 function flush_uploads() {
157         upload_window = document.getElementById('ctdl-upload');
158
159         if (upload_window) {
160                 upload_window.style.display='none';
161         }
162
163         // FIXME tell the server to delete the files
164         uploads.forEach(u => {
165                 console.log(u.ref);
166         });
167         uploads=[];
168
169         deactivate_uploads();   // this makes the window get destroyed too
170 }