1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
var FORM_ASYNC = true;
const upload_form = document.getElementById("upload_form");
const the_file = document.getElementById("the_file");
const filename_input = document.getElementById("filename");
const upload_btn = document.getElementById("upload_btn");
const the_path = document.getElementById("the_path");
const current_directory = document.getElementById("current_directory");
const upload_parent_directory = document.getElementById("upload_parent_directory");
the_file.onchange = on_file_added;
var pwd = [];
var context_menu = null;
var dragging = null;
var dragging_fileview;
var dragging_placeholder = null;
var dragging_offset_x = 0, dragging_offset_y = 0;
class FileView {
constructor(filename, visuals, mimetype, is_directory) {
this.filename = filename;
this.visuals = visuals;
this.mimetype = mimetype;
this.is_directory = is_directory;
}
}
class PendingUpload {
constructor(fileview) {
this.fileview = fileview;
}
}
var files = [];
function on_file_added(_e) {
if (the_file.files.length >= 1) {
filename_input.value = the_file.files[0].name;
upload_parent_directory.value = get_path();
if (!FORM_ASYNC) {
upload_form.submit();
return;
}
// Send the form asynchronously through the fetch api
fetch(upload_form.action, {
method: upload_form.method,
body: new FormData(upload_form)
}).then((resp) => {
if (resp.status == 200) {
load_dir();
} else {
alert("Upload failed");
}
}, () => {
alert("Upload failed")
});
}
else {
alert("No files selected");
}
}
function load_dir() {
while (the_path.children.length > 1)
the_path.removeChild(the_path.lastChild);
for (let i = 0; i < pwd.length; i++) {
var d = pwd[i];
var separator_div = document.createElement('div');
separator_div.classList.add('separator');
the_path.appendChild(separator_div);
separator_div.innerText = "ยป";
var entry = document.createElement('button');
entry.classList.add('pathentry');
entry.innerText = d;
the_path.appendChild(entry);
entry.onclick = () => {
pwd.length = i + 1;
load_dir();
}
}
var data = new FormData();
data.append('path', get_path());
var xhr = new XMLHttpRequest();
xhr.open('POST', '/php/readdir.php', true);
xhr.onload = function () {
for (const f of files)
f.visuals.remove();
files = [];
var json = JSON.parse(xhr.responseText);
if (!json)
return;
for (const f of json) {
var view = new FileView(f.name, null, f.mimetype, f.is_directory && f.is_directory != "0");
files.push(view);
}
files.sort((a, b) => {
if (a.is_directory && !b.is_directory)
return -1;
if (!a.is_directory && b.is_directory)
return 1;
return a.filename.localeCompare(b.filename);
});
for (const f of files) {
add_file_visuals(f);
}
};
xhr.send(data);
}
function delete_file(filename) {
var file_full_path = get_path() + "/" + filename;
var data = new FormData();
data.append('path', file_full_path);
var xhr = new XMLHttpRequest();
xhr.open('POST', '/php/delete.php', true);
xhr.onload = function () {
load_dir();
};
xhr.send(data);
}
function rename_file(filename) {
var file_full_path = get_path() + filename;
var new_name = prompt(`Rename ${filename} to`, filename);
if (!new_name)
return;
var data = new FormData();
data.append('path', file_full_path);
data.append('new_name', new_name);
var xhr = new XMLHttpRequest();
xhr.open('POST', '/php/rename.php', true);
xhr.onload = function () {
load_dir();
};
xhr.send(data);
}
function new_folder() {
var dirname = prompt(`Directory name`, "New Folder");
if (!dirname)
return;
var data = new FormData();
data.append('parent_directory', get_path());
data.append('dirname', dirname);
var xhr = new XMLHttpRequest();
xhr.open('POST', '/php/mkdir.php', true);
xhr.onload = function () {
load_dir();
};
xhr.send(data);
}
function begin_drag(e, fileview) {
if (dragging)
end_drag();
dragging_placeholder = document.createElement('div');
fileview.visuals.parentNode.insertBefore(dragging_placeholder, fileview.visuals);
dragging = fileview.visuals;
dragging_fileview = fileview;
dragging.classList.add("dragged");
var elemRect = dragging.getBoundingClientRect();
dragging_offset_x = elemRect.width - (elemRect.left - e.clientX);
dragging_offset_y = elemRect.top - e.clientY;
dragging.style.position = "absolute";
dragging.style.width = elemRect.width + "px";
dragging.style.height = elemRect.height + "px";
document.body.appendChild(dragging);
dragging.style.left = (e.clientX - dragging_offset_x) + "px";
dragging.style.top = (e.clientY + dragging_offset_y) + "px";
}
function end_drag(e) {
dragging_placeholder.parentNode.insertBefore(dragging, dragging_placeholder);
dragging_placeholder.remove();
dragging.style.removeProperty("position");
dragging.style.removeProperty("width");
dragging.style.removeProperty("height");
dragging.style.removeProperty("left");
dragging.style.removeProperty("top");
dragging.classList.remove("dragged");
dragging = null;
}
function drop_handler(dst, src) {
alert(`Dropped ${dst.filename} on ${src.filename}`);
}
function add_file_visuals(fileview) {
var visuals = document.createElement('div');
fileview.visuals = visuals;
var img = document.createElement('img');
var filename = document.createElement('div');
if (fileview.is_directory) {
img.src="/mimeicons/directory.png";
visuals.onclick = () => {
pwd.push(fileview.filename);
load_dir();
}
} else {
img.src=`/mimeicons/${fileview.mimetype.replace("/", "-")}.png`;
}
visuals.oncontextmenu = (e) => {
if (!dragging) {
context(e, [
['Open', () => {
if (fileview.is_directory) { pwd.push(fileview.filename);
load_dir();
} else {
alert('not implemented');
}
}],
['Rename', () => { rename_file(fileview.filename); }],
['Share', () => {alert('not implemented')}],
['Delete', () => { delete_file(fileview.filename); }],
]);
}
e.preventDefault();
e.stopPropagation();
}
visuals.ondragstart = (e) => {
begin_drag(e, fileview);
e.preventDefault();
};
visuals.onmouseup = (e) => {
if (dragging) {
drop_handler(dragging_fileview, fileview);
end_drag();
}
e.preventDefault();
};
visuals.classList.add('file');
filename.classList.add('filename');
filename.innerText = fileview.filename;
if (fileview.mimetype == "pending")
visuals.classList.add('pending');
visuals.appendChild(img);
visuals.appendChild(filename);
current_directory.appendChild(visuals);
}
function begin_upload() {
the_file.click();
}
function context(e, entries) {
if (context_menu)
context_menu.remove();
context_menu = document.createElement('ul');
context_menu.classList.add('context');
context_menu.style.left = e.clientX + "px";
context_menu.style.top = e.clientY + "px";
for (const e of entries) {
const li = document.createElement('li');
li.innerText = e[0];
li.onclick = e[1];
context_menu.appendChild(li);
}
document.body.appendChild(context_menu);
}
function get_path() {
var path = "/";
for (const d of pwd)
path += d + "/";
if (path.length > 1)
path = path.substring(0, path.length - 1);
return path;
}
document.body.onclick = () => {
if (context_menu)
context_menu.remove();
}
document.body.onmousemove = (e) => {
if (dragging) {
dragging.style.left = (e.clientX - dragging_offset_x) + "px";
dragging.style.top = (e.clientY + dragging_offset_y) + "px";
}
}
document.body.onmouseup = (e) => {
if (dragging)
end_drag();
}
document.body.oncontextmenu = (e) => {
if (dragging) {
end_drag();
e.preventDefault();
}
if (context_menu)
context_menu.remove();
}
load_dir();
|