Add sort functionality, within content tab
This commit is contained in:
parent
c82205ce4f
commit
691106326f
@ -68,7 +68,18 @@ function resetTable() {
|
|||||||
removeClass("no-crop");
|
removeClass("no-crop");
|
||||||
}
|
}
|
||||||
|
|
||||||
function buildTable(results) {
|
function sortArrow(direction) {
|
||||||
|
switch (direction) {
|
||||||
|
case "ASC":
|
||||||
|
return "▲";
|
||||||
|
case "DESC":
|
||||||
|
return "▼";
|
||||||
|
default:
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildTable(results, sortColumn, sortOrder) {
|
||||||
resetTable();
|
resetTable();
|
||||||
|
|
||||||
if (results.error) {
|
if (results.error) {
|
||||||
@ -87,7 +98,11 @@ function buildTable(results) {
|
|||||||
var rows = "";
|
var rows = "";
|
||||||
|
|
||||||
results.columns.forEach(function(col) {
|
results.columns.forEach(function(col) {
|
||||||
cols += "<th data='" + col + "'>" + col + "</th>";
|
if (col === sortColumn) {
|
||||||
|
cols += "<th data='" + col + "'" + "data-sort-order=" + sortOrder + ">" + col + " " + sortArrow(sortOrder) + "</th>";
|
||||||
|
} else {
|
||||||
|
cols += "<th data='" + col + "'>" + col + "</th>";
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
results.rows.forEach(function(row) {
|
results.rows.forEach(function(row) {
|
||||||
@ -157,7 +172,7 @@ function showTableInfo() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function showTableContent() {
|
function showTableContent(sortColumn, sortOrder) {
|
||||||
var name = getCurrentTable();
|
var name = getCurrentTable();
|
||||||
|
|
||||||
if (name.length == 0) {
|
if (name.length == 0) {
|
||||||
@ -165,8 +180,8 @@ function showTableContent() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
getTableRows(name, { limit: 100 }, function(data) {
|
getTableRows(name, { limit: 100, sort_column: sortColumn, sort_order: sortOrder }, function(data) {
|
||||||
buildTable(data);
|
buildTable(data, sortColumn, sortOrder);
|
||||||
setCurrentTab("table_content");
|
setCurrentTab("table_content");
|
||||||
|
|
||||||
$("#results").attr("data-mode", "browse");
|
$("#results").attr("data-mode", "browse");
|
||||||
@ -433,6 +448,23 @@ $(document).ready(function() {
|
|||||||
$(this).addClass("selected");
|
$(this).addClass("selected");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$("#results").on("click", "th", function(e) {
|
||||||
|
var sortColumn = this.attributes['data'].value;
|
||||||
|
var contentTab = $('#table_content').hasClass('selected');
|
||||||
|
|
||||||
|
if (!contentTab) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.dataset.sortOrder === "ASC") {
|
||||||
|
this.dataset.sortOrder = "DESC"
|
||||||
|
} else {
|
||||||
|
this.dataset.sortOrder = "ASC"
|
||||||
|
}
|
||||||
|
|
||||||
|
showTableContent(sortColumn, this.dataset.sortOrder);
|
||||||
|
});
|
||||||
|
|
||||||
$("#results").on("dblclick", "td > div", function() {
|
$("#results").on("dblclick", "td > div", function() {
|
||||||
if ($(this).has("textarea").length > 0) {
|
if ($(this).has("textarea").length > 0) {
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user