mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-15 03:36:33 +03:00
commit
7606a88293
43
bindata.go
43
bindata.go
File diff suppressed because one or more lines are too long
@ -68,7 +68,18 @@ function resetTable() {
|
||||
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();
|
||||
|
||||
if (results.error) {
|
||||
@ -87,7 +98,11 @@ function buildTable(results) {
|
||||
var rows = "";
|
||||
|
||||
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) {
|
||||
@ -157,7 +172,7 @@ function showTableInfo() {
|
||||
});
|
||||
}
|
||||
|
||||
function showTableContent() {
|
||||
function showTableContent(sortColumn, sortOrder) {
|
||||
var name = getCurrentTable();
|
||||
|
||||
if (name.length == 0) {
|
||||
@ -165,8 +180,8 @@ function showTableContent() {
|
||||
return;
|
||||
}
|
||||
|
||||
getTableRows(name, { limit: 100 }, function(data) {
|
||||
buildTable(data);
|
||||
getTableRows(name, { limit: 100, sort_column: sortColumn, sort_order: sortOrder }, function(data) {
|
||||
buildTable(data, sortColumn, sortOrder);
|
||||
setCurrentTab("table_content");
|
||||
|
||||
$("#results").attr("data-mode", "browse");
|
||||
@ -433,6 +448,23 @@ $(document).ready(function() {
|
||||
$(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() {
|
||||
if ($(this).has("textarea").length > 0) {
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user