From ff8f11091a530358ef600eedf00c21e90efe62d3 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 17 Apr 2019 22:51:05 +0200 Subject: Fixed and improved frontend Co-authored-by: LarsVomMars --- src/main/resources/css/fileview.css | 3 -- src/main/resources/css/layout.css | 50 +++++++++++++++++++++++++++-- src/main/resources/js/files.js | 17 ++++++---- src/main/resources/views/index.rocker.html | 24 +++++++------- src/main/resources/views/layout.rocker.html | 5 +-- src/main/resources/views/login.rocker.html | 42 ++++++++++++++---------- src/main/resources/views/setup.rocker.html | 47 +++++++++++++++------------ 7 files changed, 123 insertions(+), 65 deletions(-) (limited to 'src/main') diff --git a/src/main/resources/css/fileview.css b/src/main/resources/css/fileview.css index 3f1a42b..9c52ac2 100644 --- a/src/main/resources/css/fileview.css +++ b/src/main/resources/css/fileview.css @@ -1,5 +1,4 @@ html, body { - max-width: 100vw; overflow: visible; } @@ -9,8 +8,6 @@ html, body { .prettyprint, .preview { position: absolute; - height: 100%; - max-width: 100vmin; border: none !important; overflow: visible; } diff --git a/src/main/resources/css/layout.css b/src/main/resources/css/layout.css index 5db8bff..cb0850e 100644 --- a/src/main/resources/css/layout.css +++ b/src/main/resources/css/layout.css @@ -1,12 +1,56 @@ -html, body { +body { + margin: 0 auto; +} + +.main { font-family: Arial, Helvetica, sans-serif; color: #424242; padding: 0; margin: 0; - min-width: 100vmin; - min-height: 100%; +} + +*:focus { + outline: none; } button { color: #424242; } + +.flex { + display: flex; + flex-flow: wrap column; + width: 100vw !important; + height: 100vh !important; + overflow: hidden; + text-align: center; + justify-content: center; + align-items: center; +} + +.flex div { + margin: 10px; +} + +.flex form input, .flex button { + background: none; + padding: 5px; + border: 1px solid #424242; + border-radius: 10px; +} + +.flex .button { + text-decoration: none; + background: none; + padding: 5px; + border: 1px solid #424242; + border-radius: 10px; +} + +.flex .button:visited { + color: #424242; +} + +.username { + color: #7f8c8d; +} diff --git a/src/main/resources/js/files.js b/src/main/resources/js/files.js index 1247ed1..024f74f 100644 --- a/src/main/resources/js/files.js +++ b/src/main/resources/js/files.js @@ -38,6 +38,7 @@ drop.addEventListener('drop', e => { setListeners(); + // TODO: Add empty directory upload support const iterateFiles = subItem => { if (subItem.isDirectory) { let directoryReader = subItem.createReader(); @@ -88,13 +89,13 @@ function setListeners() { const filename = element.getAttribute("data-path"); const extension = /(?:\.([^.]+))?$/.exec(filename)[1].toLowerCase(); - if (images.indexOf(extension) > -1) { + if (images.includes(extension)) { element.setAttribute("data-bp", filename); element.setAttribute("data-image", ""); - } else if (videos.indexOf(extension) > -1) { + } else if (videos.includes(extension)) { element.setAttribute("data-src", filename); element.setAttribute("data-video", ""); - } else if (audio.indexOf(extension) > -1) { + } else if (audio.includes(extension)) { element.setAttribute("data-src", filename); element.setAttribute("data-audio", ""); } @@ -125,7 +126,7 @@ function setListeners() { }); }); - //audio // TODO: Fix IOException and scrubbing issues with chromium based browsers + // audio // TODO: Fix IOException and scrubbing issues with chromium based browsers document.querySelectorAll("[data-audio]").forEach(element => { element.addEventListener("click", audio => { BigPicture({ @@ -149,9 +150,11 @@ function setListeners() { const request = new XMLHttpRequest(); const parent = e.target.closest("tr"); const fileName = parent.getAttribute("data-href") || parent.getAttribute("data-path"); - request.open("POST", `/delete/${path}/${fileName}`); - request.send(); - parent.remove(); + if (confirm(`Do you really want to delete: ${fileName}?`)) { + request.open("POST", `/delete/${path}/${fileName}`); + request.send(); + parent.remove(); + } else console.log("File not deleted!") }) }); diff --git a/src/main/resources/views/index.rocker.html b/src/main/resources/views/index.rocker.html index a0b4035..72ec4d2 100644 --- a/src/main/resources/views/index.rocker.html +++ b/src/main/resources/views/index.rocker.html @@ -1,19 +1,17 @@ @args (String username) @layout.template("Index", RockerContent.NONE, RockerContent.NONE) -> { -

Welcome to Kloud @username!

+
+

Welcome to Kloud @username!

-@if(username.length() > 0) { - - - -} else { - - - -} +
+ @if(username.length() > 0) { + Logout + } else { + Login + } - - - + Files +
+
} diff --git a/src/main/resources/views/layout.rocker.html b/src/main/resources/views/layout.rocker.html index f292e24..3e3fb5e 100644 --- a/src/main/resources/views/layout.rocker.html +++ b/src/main/resources/views/layout.rocker.html @@ -13,8 +13,9 @@ @title -@content - +
+ @content +
@js diff --git a/src/main/resources/views/login.rocker.html b/src/main/resources/views/login.rocker.html index 6cd28f2..feddbbc 100644 --- a/src/main/resources/views/login.rocker.html +++ b/src/main/resources/views/login.rocker.html @@ -6,24 +6,32 @@ } @layout.template("Login", RockerContent.NONE, js) -> { -
-
- - -
-
- - -
+
+

Login

- + +
+ + +
+
+ + +
- @if(message.length() > 0) { - @message - } +
+ @if(message.length() > 0) { + @message + } - @if(counter > 0) { - Please try again in @counter seconds. - } - + @if(counter > 0) { + Please try again in @counter seconds. + } +
+ +
+ +
+ +
} diff --git a/src/main/resources/views/setup.rocker.html b/src/main/resources/views/setup.rocker.html index f9c8357..595f84a 100644 --- a/src/main/resources/views/setup.rocker.html +++ b/src/main/resources/views/setup.rocker.html @@ -1,25 +1,32 @@ @args (String message) @layout.template("Setup", RockerContent.NONE, RockerContent.NONE) -> { -
-
- - -
-
- - -
-
- - -
-
- -
-
+
+

Setup

-@if (message.length() > 0) { -@message -} +
+
+ + +
+
+ + +
+
+ + +
+ +
+ @if (message.length() > 0) { + @message + } +
+ +
+ +
+
+
} -- cgit v1.2.3