diff options
author | Marvin Borner | 2019-04-15 23:15:58 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-15 23:15:58 +0200 |
commit | 6904e09a650d71925d54f12bc8da9ea80ce0565f (patch) | |
tree | ac04bc8a3ca7b03b2028d25808858cd419ab2532 /src/main/kotlin/App.kt | |
parent | 21e2156e97f339a8e8c5cb73f9bd260aa20c3dcd (diff) |
Added sorting feature of file table
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r-- | src/main/kotlin/App.kt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 6abaa4c..1d027e7 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -146,15 +146,18 @@ fun crawlFiles(ctx: Context) { .drop(usersFileHome.length + (if (ctx.splats()[0].isNotEmpty()) ctx.splats()[0].length + 2 else 1)) val filePath = "$usersFileHome${it.toString().drop(usersFileHome.length)}" files.add( + // TODO: Clean up file array responses arrayOf( if (File(filePath).isDirectory) "$fileName/" else fileName, humanReadableBytes(File(filePath).length()), // TODO: Fix file size for directories SimpleDateFormat("MM/dd/yyyy HH:mm:ss").format(File(filePath).lastModified()).toString(), - if (File(filePath).isDirectory) "true" else isHumanReadable(filePath).toString() + if (File(filePath).isDirectory) "true" else isHumanReadable(filePath).toString(), + File(filePath).length().toString(), // unformatted file size + File(filePath).lastModified().toString() // unformatted last modified date ) ) } - //files.sortWith(String.CASE_INSENSITIVE_ORDER) + //files.sortWith(String.CASE_INSENSITIVE_ORDER) // TODO: Reimplement file array sorting in backend ctx.render( "files.rocker.html", model( "files", files, |