ISO-Share/js/main.js

212 lines
5.9 KiB
JavaScript
Raw Normal View History

2016-02-11 14:39:20 +00:00
/**
* Created by mohamnag on 11/02/16.
*/
$(document).ready(function () {
2016-02-12 14:57:58 +00:00
var filesBaseUrl = "/files";
2016-02-11 14:39:20 +00:00
var fileListElement = $("#file-list");
var fileItemElementTemplate = fileListElement.find("li").detach();
function renderFileElement(directory, fileName, fileType, fileSize, fileDate) {
var fileItemElement = fileItemElementTemplate.clone();
fileItemElement.addClass(fileType);
fileItemElement.find(".file-name").text(fileName);
if (fileDate) {
fileItemElement.find(".file-date").text(moment(fileDate).fromNow());
}
if (fileType === "parent") {
// navigate to parent dir
fileItemElement.find(".file-link").click(function () {
navigateTo(directory);
});
2016-02-11 14:39:20 +00:00
} else if (fileType === "directory") {
// navigate to sub dir
fileItemElement.find(".file-link").click(function () {
navigateTo(directory + fileName + "/");
});
2016-02-11 14:39:20 +00:00
} else if (fileType === "other") {
// nginx returns symlinks as type other,
// lets try to follow the links
fileItemElement.find(".file-link").click(function () {
navigateTo(directory + fileName + "/");
});
} else {
// just file dl
fileItemElement.find(".file-link")
2016-02-11 17:10:05 +00:00
.attr("href", filesBaseUrl + directory + fileName)
2016-02-11 14:39:20 +00:00
.attr("target", "_blank");
}
if (fileSize) {
fileItemElement.find(".file-size").text(fileSize);
}
return fileItemElement;
}
function getParentDir(path) {
if (path.length <= 1) {
return null;
}
var lastSlashPos = path.lastIndexOf("/", path.length - 2);
var parentDir = lastSlashPos >= 0 ? path.substr(0, lastSlashPos + 1) : null;
return parentDir;
}
2016-02-11 16:37:40 +00:00
function renderFileList(filesData, path) {
var sortBy = $('input[name=sort]:checked').val();
if (sortBy === "date") {
console.log("sort by date");
filesData.sort(function (fileA, fileB) {
return fileB.mtime.getTime() - fileA.mtime.getTime();
});
} else if (sortBy === "name") {
console.log("sort by name");
filesData.sort(function (fileA, fileB) {
return fileA.name.toLowerCase().localeCompare(fileB.name.toLowerCase());
});
} else if (sortBy === "size") {
console.log("sort by size");
filesData.sort(function (fileA, fileB) {
var sizeA = fileA.rawSize ? fileA.rawSize : Number.MIN_VALUE;
var sizeB = fileB.rawSize ? fileB.rawSize : Number.MIN_VALUE;
return sizeA - sizeB;
});
2016-02-11 16:37:40 +00:00
}
fileListElement.empty();
var parentDir = getParentDir(path);
if (parentDir) {
fileListElement.append(renderFileElement(
parentDir,
"..",
"parent"
2016-02-11 16:37:40 +00:00
));
}
filesData.forEach(function (fileData) {
fileListElement.append(renderFileElement(
path,
fileData.name,
fileData.type,
fileData.size,
fileData.mtime
));
});
}
2016-02-11 14:39:20 +00:00
function navigateTo(path) {
console.log("navigateTo", path);
2016-02-11 17:10:05 +00:00
isNavigating = true;
2016-02-11 14:39:20 +00:00
$.ajax({
url: filesBaseUrl + path,
dataType: "json",
2016-02-11 14:39:20 +00:00
success: function (filesData) {
// fix sizes and dates
2016-02-11 14:59:19 +00:00
filesData.map(function (fileData) {
fileData.mtime = new Date(fileData.mtime);
if (fileData.hasOwnProperty("size")) {
fileData.rawSize = fileData.size;
fileData.size = fileSize(fileData.size);
}
return fileData;
2016-02-11 14:59:19 +00:00
});
2016-02-11 16:37:40 +00:00
renderFileList(filesData, path);
2016-02-11 14:39:20 +00:00
2016-02-11 16:37:40 +00:00
$('input[name=sort]')
.unbind("change")
.on("change", function () {
renderFileList(filesData, path);
});
2016-02-11 17:10:05 +00:00
console.log("replaceState", path);
history.replaceState(null, path, '#' + path);
isNavigating = false;
},
error: function (jqxhr, textStatus, errorThrown) {
console.log(jqxhr, textStatus, errorThrown);
if(textStatus === "timeout") {
alert("Request to server timed out, retry later!");
} else if(textStatus === "abort") {
alert("Connection to server has been aborted, retry later!");
} else if(textStatus === "parsererror") {
alert("Invalid response from server!");
} else if(jqxhr.status === 404) {
alert("Server cant find this file/directory!");
2016-02-11 17:10:05 +00:00
} else {
// also if(textStatus === "error")
alert("Something went wrong in communication to server, retry later!");
2016-02-11 17:10:05 +00:00
}
history.back();
2016-02-11 14:39:20 +00:00
}
});
}
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';
}
}
2016-02-11 17:10:05 +00:00
var isNavigating = false;
function navigateToUrlLocation() {
var requestedPath = window.location.hash;
var startPath = requestedPath ? requestedPath.substr(1) : "/";
navigateTo(startPath);
}
window.onpopstate = function () {
if (!isNavigating) {
navigateToUrlLocation();
}
};
2016-02-11 14:39:20 +00:00
2016-02-11 17:10:05 +00:00
navigateToUrlLocation();
2016-02-11 14:39:20 +00:00
});