From 663ca2f73d88072f35dc33a6b85a3742a8f62e64 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 18 Apr 2019 00:16:42 +0200 Subject: Added icons defining the type of the file Co-authored-by: LarsVomMars --- src/main/kotlin/FileController.kt | 1 + src/main/resources/css/files.css | 12 ++++++++---- src/main/resources/js/files.js | 12 +++++++----- src/main/resources/views/files.rocker.html | 17 +++++++++++++++-- 4 files changed, 31 insertions(+), 11 deletions(-) (limited to 'src/main') diff --git a/src/main/kotlin/FileController.kt b/src/main/kotlin/FileController.kt index cb2b0f7..e8526cf 100644 --- a/src/main/kotlin/FileController.kt +++ b/src/main/kotlin/FileController.kt @@ -33,6 +33,7 @@ class FileController { humanReadableBytes(fileSize), SimpleDateFormat("MM/dd/yyyy HH:mm:ss").format(file.lastModified()).toString(), if (file.isDirectory) "true" else isHumanReadable(file).toString(), + file.isDirectory.toString(), fileSize.toString(), // unformatted file size file.lastModified().toString() // unformatted last modified date ) diff --git a/src/main/resources/css/files.css b/src/main/resources/css/files.css index c7302bf..bcc97b9 100644 --- a/src/main/resources/css/files.css +++ b/src/main/resources/css/files.css @@ -37,25 +37,29 @@ tr td, tr th { } colgroup col:nth-child(1) { - width: 40%; + width: 5%; } colgroup col:nth-child(2) { - width: 15%; + width: 35%; } colgroup col:nth-child(3) { - width: 25%; + width: 15%; } colgroup col:nth-child(4) { - width: 10%; + width: 25%; } colgroup col:nth-child(5) { width: 10%; } +colgroup col:nth-child(6) { + width: 10%; +} + .drop { padding: 8px; min-height: calc(100vh - 16px); diff --git a/src/main/resources/js/files.js b/src/main/resources/js/files.js index 024f74f..523df0d 100644 --- a/src/main/resources/js/files.js +++ b/src/main/resources/js/files.js @@ -30,11 +30,13 @@ drop.addEventListener('drop', e => { const row = document.getElementById("table").insertRow(-1); row.setAttribute("data-href", file.name); - 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 = ""; - row.insertCell(4).innerHTML = ""; + // TODO: Differentiate between file and directory upload in frontend + row.insertCell(0).innerHTML = ""; + row.insertCell(1).innerHTML = file.name; + row.insertCell(2).innerHTML = bytesToSize(file.size); + row.insertCell(3).innerHTML = `${date.getMonth() + 1}/${date.getDate()}/${date.getFullYear()} ${date.getHours()}:${date.getMinutes()}:${date.getSeconds()}`; + row.insertCell(4).innerHTML = ""; + row.insertCell(5).innerHTML = ""; setListeners(); diff --git a/src/main/resources/views/files.rocker.html b/src/main/resources/views/files.rocker.html index 0e42891..a31f6bb 100644 --- a/src/main/resources/views/files.rocker.html +++ b/src/main/resources/views/files.rocker.html @@ -28,10 +28,12 @@ + + Name Size Last modified @@ -39,6 +41,7 @@ Delete + ../ @@ -54,9 +57,19 @@ } else { } + + + @if (fileArray[4] == "true") { + + } else if (fileArray[3] == "false") { + + } else { + + } + @fileArray[0] - @fileArray[1] - @fileArray[2] + @fileArray[1] + @fileArray[2] -- cgit v1.2.3