aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/js
diff options
context:
space:
mode:
authorMarvin Borner2019-04-15 14:46:54 +0200
committerMarvin Borner2019-04-15 14:46:54 +0200
commit481426f28b548ba64097895d0604585e6f722480 (patch)
tree4212f99a34e547b1df02e6007e08b34fc66e7f6d /src/main/resources/js
parenta0f7bd6052fa28dd789de4239bf07ff227574963 (diff)
Added file delete buttons
Diffstat (limited to 'src/main/resources/js')
-rw-r--r--src/main/resources/js/files.js119
1 files changed, 70 insertions, 49 deletions
diff --git a/src/main/resources/js/files.js b/src/main/resources/js/files.js
index c762da9..450a2a6 100644
--- a/src/main/resources/js/files.js
+++ b/src/main/resources/js/files.js
@@ -33,8 +33,9 @@ drop.addEventListener('drop', e => {
row.insertCell(0).innerHTML = file.name;
row.insertCell(1).innerHTML = bytesToSize(file.size);
row.insertCell(2).innerHTML = `${date.getMonth() + 1}/${date.getDate()}/${date.getFullYear()} ${date.getHours()}:${date.getMinutes()}:${date.getSeconds()}`;
+ row.insertCell(3).innerHTML = "<td><button class='delete'>&times;</button></td>";
- //setListeners();
+ setListeners();
formData.append("file", file);
request.open("POST", "/upload/" + path);
@@ -52,64 +53,84 @@ drop.addEventListener('drop', e => {
/**
* Set up listeners
*/
-document.querySelectorAll("[data-path]").forEach(element => {
- const images = ["jpg", "jpeg", "png", "gif", "bmp", "webp", "svg", "tiff"];
- const videos = ["mp4", "m4v", "mov", "webm", "avi", "wmv", "mpg", "mpv", "mpeg"];
- const audio = ["mp3", "m4a", "wav", "ogg"];
-
- const filename = element.getAttribute("data-path");
- const extension = /(?:\.([^.]+))?$/.exec(filename)[1].toLowerCase();
-
- if (images.indexOf(extension) > -1) {
- element.setAttribute("data-bp", filename);
- element.setAttribute("data-image", "");
- } else if (videos.indexOf(extension) > -1) {
- element.setAttribute("data-src", filename);
- element.setAttribute("data-video", "");
- } else if (audio.indexOf(extension) > -1) {
- element.setAttribute("data-src", filename);
- element.setAttribute("data-audio", "");
- }
-
- element.addEventListener("click", () => {
- if (images.indexOf(extension) === -1 && videos.indexOf(extension) === -1 && audio.indexOf(extension) === -1)
- window.location = filename; // download binary files
+function setListeners() {
+ document.querySelectorAll("[data-path]").forEach(element => {
+ const images = ["jpg", "jpeg", "png", "gif", "bmp", "webp", "svg", "tiff"];
+ const videos = ["mp4", "m4v", "mov", "webm", "avi", "wmv", "mpg", "mpv", "mpeg", "ogv"];
+ const audio = ["mp3", "m4a", "wav", "ogg"];
+
+ const filename = element.getAttribute("data-path");
+ const extension = /(?:\.([^.]+))?$/.exec(filename)[1].toLowerCase();
+
+ if (images.indexOf(extension) > -1) {
+ element.setAttribute("data-bp", filename);
+ element.setAttribute("data-image", "");
+ } else if (videos.indexOf(extension) > -1) {
+ element.setAttribute("data-src", filename);
+ element.setAttribute("data-video", "");
+ } else if (audio.indexOf(extension) > -1) {
+ element.setAttribute("data-src", filename);
+ element.setAttribute("data-audio", "");
+ }
+
+ element.addEventListener("click", () => {
+ if (images.indexOf(extension) === -1 && videos.indexOf(extension) === -1 && audio.indexOf(extension) === -1)
+ window.location = filename; // download binary files
+ });
});
-});
// images
-document.querySelectorAll("[data-image]").forEach(element => {
- element.addEventListener("click", image => {
- BigPicture({
- el: image.currentTarget,
- gallery: document.querySelectorAll("[data-image]")
- })
+ document.querySelectorAll("[data-image]").forEach(element => {
+ element.addEventListener("click", image => {
+ BigPicture({
+ el: image.currentTarget,
+ gallery: document.querySelectorAll("[data-image]")
+ })
+ });
});
-});
// videos // TODO: Fix timeout exception and scrubbing issues with chromium based browsers
-document.querySelectorAll("[data-video]").forEach(element => {
- element.addEventListener("click", video => {
- BigPicture({
- el: video.currentTarget,
- vidSrc: video.currentTarget.getAttribute("data-src")
- })
+ document.querySelectorAll("[data-video]").forEach(element => {
+ element.addEventListener("click", video => {
+ BigPicture({
+ el: video.currentTarget,
+ vidSrc: video.currentTarget.getAttribute("data-src")
+ })
+ });
});
-});
//audio // TODO: Fix IOException and scrubbing issues with chromium based browsers
-document.querySelectorAll("[data-audio]").forEach(element => {
- element.addEventListener("click", audio => {
- BigPicture({
- el: audio.currentTarget,
- audio: audio.currentTarget.getAttribute("data-src")
+ document.querySelectorAll("[data-audio]").forEach(element => {
+ element.addEventListener("click", audio => {
+ BigPicture({
+ el: audio.currentTarget,
+ audio: audio.currentTarget.getAttribute("data-src")
+ });
});
});
-});
// normal files
-document.querySelectorAll("[data-href]").forEach(element => {
- element.addEventListener("click", () => {
- window.location = element.getAttribute("data-href");
- })
-});
+ document.querySelectorAll("[data-href]").forEach(element => {
+ element.addEventListener("click", () => {
+ window.location = element.getAttribute("data-href");
+ })
+ });
+
+// deletion button
+ document.querySelectorAll(".delete").forEach(element => {
+ // TODO: remove eventListener which opens file
+ // -> IDEA: use functions instead of anonymous callbacks
+
+ element.addEventListener("click", e => {
+ e.stopPropagation();
+ const request = new XMLHttpRequest();
+ const parent = e.target.parentElement.parentElement;
+ const fileName = parent.getAttribute("data-href") || parent.getAttribute("data-path");
+ request.open("POST", `/delete/${path}/${fileName}`);
+ request.send();
+ parent.remove();
+ })
+ });
+}
+
+setListeners();