Skip to content
Snippets Groups Projects
Commit e6bde7a5 authored by Efthymia Bika's avatar Efthymia Bika
Browse files

Render timeview contents when there is no error

parent 05db1e34
No related branches found
No related tags found
No related merge requests found
......@@ -34,49 +34,51 @@ function show_contents_by_date(error, stdout, stderr) {
toggle_error(error, stderr);
$("#time-contents").empty();
var ul = $("<ul></ul>")
.attr("class", "no-bullet")
.attr("id", "timeview-contents-list");
var contents = JSON.parse(stdout);
$.each(contents, function(i, el) {
var f = "open_folder('" + escape_illegal_chars(el.name) + "')";
var restore_f = "show_rest_icon('" + i + "')";
var title = (el.name.length > 30) ? el.name : "";
var el_link = $("<a></a>")
.attr("href", "#")
.attr("title", title)
.attr("onclick", restore_f);
if(el.type == 'dir') {
el_link.attr("ondblclick", f);
}
var locale_date = new Date(el.timestamp).toLocaleString();
var filename = (el.name.length > 30) ?
el.name.substring(0,7) + "..." +
el.name.substring(el.name.length-7, el.name.length) :
el.name;
var li = $("<li>&nbsp;<span>" + filename +
"&nbsp;</span><span class='right'>"
+ locale_date + "</span></li>")
.attr("id", el.name);
var icon_class = (el.type == 'dir')
? "fa fa-folder yellow-folder left" :
"fa fa-file-text-o green-file left";
var icon = $("<i></i>")
.attr("class", icon_class);
var rest_icon = $("<i></i>")
.attr("id", "rest_icon_" + i)
.attr("title", "Restore")
.attr("class", "hide")
.attr("onclick", "go_to_restore_single('" +
escape_illegal_chars(el.name) + "')");
li.append(icon);
li.append(rest_icon);
el_link.append(li);
ul.append(el_link);
});
if(!error) {
var ul = $("<ul></ul>")
.attr("class", "no-bullet")
.attr("id", "timeview-contents-list");
var contents = JSON.parse(stdout);
$.each(contents, function(i, el) {
var f = "open_folder('" + escape_illegal_chars(el.name) + "')";
var restore_f = "show_rest_icon('" + i + "')";
var title = (el.name.length > 30) ? el.name : "";
var el_link = $("<a></a>")
.attr("href", "#")
.attr("title", title)
.attr("onclick", restore_f);
if(el.type == 'dir') {
el_link.attr("ondblclick", f);
}
var locale_date = new Date(el.timestamp).toLocaleString();
var filename = (el.name.length > 30) ?
el.name.substring(0,7) + "..." +
el.name.substring(el.name.length-7, el.name.length) :
el.name;
var li = $("<li>&nbsp;<span>" + filename +
"&nbsp;</span><span class='right'>"
+ locale_date + "</span></li>")
.attr("id", el.name);
var icon_class = (el.type == 'dir')
? "fa fa-folder yellow-folder left" :
"fa fa-file-text-o green-file left";
var icon = $("<i></i>")
.attr("class", icon_class);
var rest_icon = $("<i></i>")
.attr("id", "rest_icon_" + i)
.attr("title", "Restore")
.attr("class", "hide")
.attr("onclick", "go_to_restore_single('" +
escape_illegal_chars(el.name) + "')");
li.append(icon);
li.append(rest_icon);
el_link.append(li);
ul.append(el_link);
});
$("#time-contents").append(ul);
$("#time-contents").append(ul);
}
$("#loader").hide();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment