human readable file size and bit of styling

This commit is contained in:
Mohammad Naghavi 2016-02-11 18:42:41 +01:00
parent 06d2913726
commit ba486f340d
3 changed files with 67 additions and 17 deletions

View file

@ -31,7 +31,6 @@ a {
display: inline-block; display: inline-block;
position: relative; position: relative;
padding-left: 4rem; padding-left: 4rem;
min-width: 70%;
} }
.file-list .file-name::before { .file-list .file-name::before {
@ -59,14 +58,42 @@ a {
background-image: url(../image/other.png); background-image: url(../image/other.png);
} }
.file-list .parent .file-name::before {
background-image: url(../image/parent.png);
}
.file-list .file-link { .file-list .file-link {
} }
.file-list .file-date { .file-list .file-date {
padding: .25rem .5rem;
background: #1EAEDB;
border-radius: .5rem;
font-size: 70%;
margin: 0 .5rem;
color: #fff;
}
.file-list .directory .file-date {
}
.file-list .parent .file-date {
display: none;
} }
.file-list .file-size { .file-list .file-size {
padding: .25rem .5rem;
background: #24db53;
border-radius: .5rem;
font-size: 70%;
margin: 0 .5rem;
color: #fff;
} }
.file-list .other .file-size,
.file-list .parent .file-size,
.file-list .directory .file-size {
display: none;
}

BIN
image/parent.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -22,19 +22,17 @@ $(document).ready(function () {
fileItemElement.find(".file-date").text(moment(fileDate).fromNow()); fileItemElement.find(".file-date").text(moment(fileDate).fromNow());
} }
if (fileType === "directory") { if (fileType === "parent") {
if (fileName === "..") {
// navigate to parent dir // navigate to parent dir
fileItemElement.find(".file-link").click(function () { fileItemElement.find(".file-link").click(function () {
navigateTo(directory); navigateTo(directory);
}); });
} else { } else if (fileType === "directory") {
// navigate to sub dir // navigate to sub dir
fileItemElement.find(".file-link").click(function () { fileItemElement.find(".file-link").click(function () {
navigateTo(directory + fileName + "/"); navigateTo(directory + fileName + "/");
}); });
}
} else if (fileType === "other") { } else if (fileType === "other") {
// nginx returns symlinks as type other, // nginx returns symlinks as type other,
@ -95,7 +93,7 @@ $(document).ready(function () {
fileListElement.append(renderFileElement( fileListElement.append(renderFileElement(
parentDir, parentDir,
"..", "..",
"directory" "parent"
)); ));
} }
@ -119,7 +117,10 @@ $(document).ready(function () {
success: function (filesData) { success: function (filesData) {
filesData.map(function (fileData) { filesData.map(function (fileData) {
return fileData.mtime = new Date(fileData.mtime); fileData.mtime = new Date(fileData.mtime);
fileData.size = fileData.size ? fileSize(fileData.size) : null;
return fileData;
}); });
renderFileList(filesData, path); renderFileList(filesData, path);
@ -146,6 +147,28 @@ $(document).ready(function () {
}); });
} }
function sizeOf(bytes) {
if (bytes == 0) {
return "0.00 B";
}
var e = Math.floor(Math.log(bytes) / Math.log(1024));
return (bytes / Math.pow(1024, e)).toFixed(2) + ' ' + ' KMGTP'.charAt(e) + 'B';
}
function fileSize(bytes) {
var exp = Math.log(bytes) / Math.log(1024) | 0;
var value = bytes / Math.pow(1024, exp);
if (exp == 0) {
return value.toFixed(0) + ' bytes';
} else {
var result = value.toFixed(2);
return result + ' ' + 'KMGTPEZY'[exp - 1] + 'B';
}
}
var isNavigating = false; var isNavigating = false;
function navigateToUrlLocation() { function navigateToUrlLocation() {