mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-15 11:52:12 +03:00
294 lines
6.8 KiB
JavaScript
294 lines
6.8 KiB
JavaScript
function apiCall(method, path, params, cb) {
|
|
$.ajax({
|
|
url: path,
|
|
method: method,
|
|
cache: false,
|
|
data: params,
|
|
success: function(data) {
|
|
cb(data);
|
|
},
|
|
error: function(xhr, status, data) {
|
|
cb(jQuery.parseJSON(xhr.responseText));
|
|
}
|
|
});
|
|
}
|
|
|
|
function getTables(cb) { apiCall("get", "/tables", {}, cb); }
|
|
function getTableStructure(table, cb) { apiCall("get", "/tables/" + table, {}, cb); }
|
|
function getTableIndexes(table, cb) { apiCall("get", "/tables/" + table + "/indexes", {}, cb); }
|
|
function getHistory(cb) { apiCall("get", "/history", {}, cb); }
|
|
|
|
function executeQuery(query, cb) {
|
|
apiCall("post", "/query", { query: query }, cb);
|
|
}
|
|
|
|
function explainQuery(query, cb) {
|
|
apiCall("post", "/explain", { query: query }, cb);
|
|
}
|
|
|
|
function loadTables() {
|
|
getTables(function(data) {
|
|
data.forEach(function(item) {
|
|
$("<li>" + item + "</li>").appendTo("#tables");
|
|
});
|
|
});
|
|
}
|
|
|
|
function escapeHtml(str) {
|
|
if (str != null || str != undefined) {
|
|
return jQuery("<div/>").text(str).html();
|
|
}
|
|
|
|
return "<span class='null'>null</span>";
|
|
}
|
|
|
|
function resetTable() {
|
|
$("#results").
|
|
attr("data-mode", "").
|
|
text("").
|
|
removeClass("empty");
|
|
}
|
|
|
|
function buildTable(results) {
|
|
resetTable();
|
|
|
|
if (results.error) {
|
|
$("<tr><td>ERROR: " + results.error + "</tr></tr>").appendTo("#results");
|
|
$("#results").addClass("empty");
|
|
return;
|
|
}
|
|
|
|
if (!results.rows) {
|
|
$("<tr><td>No records found</tr></tr>").appendTo("#results");
|
|
$("#results").addClass("empty");
|
|
return;
|
|
}
|
|
|
|
var cols = "";
|
|
var rows = ""
|
|
|
|
results.columns.forEach(function(col) {
|
|
cols += "<th data='" + col + "'>" + col + "</th>";
|
|
});
|
|
|
|
results.rows.forEach(function(row) {
|
|
var r = "";
|
|
for (i in row) { r += "<td><div>" + escapeHtml(row[i]) + "</div></td>"; }
|
|
rows += "<tr>" + r + "</tr>";
|
|
});
|
|
|
|
$("<thead>" + cols + "</thead><tbody>" + rows + "</tobdy>").appendTo("#results");
|
|
}
|
|
|
|
function setCurrentTab(id) {
|
|
$("#nav ul li.selected").removeClass("selected");
|
|
$("#" + id).addClass("selected");
|
|
}
|
|
|
|
function showQueryHistory() {
|
|
getHistory(function(data) {
|
|
var rows = [];
|
|
|
|
for(i in data) {
|
|
rows.unshift([parseInt(i) + 1, data[i]]);
|
|
}
|
|
|
|
buildTable({ columns: ["id", "query"], rows: rows });
|
|
|
|
setCurrentTab("table_history");
|
|
$("#input").hide();
|
|
$("#output").addClass("full");
|
|
});
|
|
}
|
|
|
|
function showTableIndexes() {
|
|
var name = $("#tables li.selected").text();
|
|
|
|
if (name.length == 0) {
|
|
alert("Please select a table!");
|
|
return;
|
|
}
|
|
|
|
getTableIndexes(name, function(data) {
|
|
setCurrentTab("table_indexes");
|
|
buildTable(data);
|
|
|
|
$("#input").hide();
|
|
$("#output").addClass("full");
|
|
});
|
|
}
|
|
|
|
function showTableInfo() {
|
|
var name = $("#tables li.selected").text();
|
|
|
|
if (name.length == 0) {
|
|
alert("Please select a table!");
|
|
return;
|
|
}
|
|
|
|
apiCall("get", "/tables/" + name + "/info", {}, function(data) {
|
|
buildTable(data);
|
|
setCurrentTab("table_info");
|
|
$("#input").hide();
|
|
$("#output").addClass("full");
|
|
});
|
|
}
|
|
|
|
function showTableContent() {
|
|
var name = $("#tables li.selected").text();
|
|
|
|
if (name.length == 0) {
|
|
alert("Please select a table!");
|
|
return;
|
|
}
|
|
|
|
var query = "SELECT * FROM " + name + " LIMIT 100;";
|
|
|
|
executeQuery(query, function(data) {
|
|
buildTable(data);
|
|
setCurrentTab("table_content");
|
|
|
|
$("#results").attr("data-mode", "browse");
|
|
$("#input").hide();
|
|
$("#output").addClass("full");
|
|
});
|
|
}
|
|
|
|
function showTableStructure() {
|
|
var name = $("#tables li.selected").text();
|
|
|
|
if (name.length == 0) {
|
|
alert("Please select a table!");
|
|
return;
|
|
}
|
|
|
|
getTableStructure(name, function(data) {
|
|
setCurrentTab("table_structure");
|
|
buildTable(data);
|
|
});
|
|
}
|
|
|
|
function runQuery() {
|
|
setCurrentTab("table_query");
|
|
|
|
$("#run").attr("disabled", "disabled");
|
|
$("#explain").attr("disabled", "disabled");
|
|
$("#csv").attr("disabled", "disabled");
|
|
$("#query_progress").show();
|
|
|
|
var query = $.trim(editor.getValue());
|
|
|
|
if (query.length == 0) {
|
|
$("#run").removeAttr("disabled");
|
|
$("#explain").removeAttr("disabled");
|
|
$("#csv").removeAttr("disabled");
|
|
$("#query_progress").hide();
|
|
return;
|
|
}
|
|
|
|
executeQuery(query, function(data) {
|
|
buildTable(data);
|
|
|
|
$("#run").removeAttr("disabled");
|
|
$("#explain").removeAttr("disabled");
|
|
$("#csv").removeAttr("disabled");
|
|
$("#query_progress").hide();
|
|
$("#input").show();
|
|
$("#output").removeClass("full");
|
|
});
|
|
}
|
|
|
|
function runExplain() {
|
|
setCurrentTab("table_query");
|
|
|
|
$("#run").attr("disabled", "disabled");
|
|
$("#explain").attr("disabled", "disabled");
|
|
$("#csv").attr("disabled", "disabled");
|
|
$("#query_progress").show();
|
|
|
|
var query = $.trim(editor.getValue());
|
|
|
|
if (query.length == 0) {
|
|
$("#run").removeAttr("disabled");
|
|
$("#explain").removeAttr("disabled");
|
|
$("#csv").removeAttr("disabled");
|
|
$("#query_progress").hide();
|
|
return;
|
|
}
|
|
|
|
explainQuery(query, function(data) {
|
|
buildTable(data);
|
|
|
|
$("#run").removeAttr("disabled");
|
|
$("#explain").removeAttr("disabled");
|
|
$("#csv").removeAttr("disabled");
|
|
$("#query_progress").hide();
|
|
$("#input").show();
|
|
$("#output").removeClass("full");
|
|
});
|
|
}
|
|
|
|
function exportToCSV() {
|
|
setCurrentTab("table_query");
|
|
|
|
$("#run").attr("disabled", "disabled");
|
|
$("#explain").attr("disabled", "disabled");
|
|
$("#csv").attr("disabled", "disabled");
|
|
$("#query_progress").show();
|
|
|
|
var query = $.trim(editor.getValue());
|
|
|
|
if (query.length == 0) {
|
|
$("#run").removeAttr("disabled");
|
|
$("#explain").removeAttr("disabled");
|
|
$("#csv").removeAttr("disabled");
|
|
$("#query_progress").hide();
|
|
return;
|
|
}
|
|
}
|
|
|
|
var editor;
|
|
|
|
$(document).ready(function() {
|
|
editor = ace.edit("custom_query");
|
|
editor.getSession().setMode("ace/mode/pgsql");
|
|
editor.getSession().setTabSize(2);
|
|
editor.getSession().setUseSoftTabs(true);
|
|
|
|
$("#table_content").on("click", function() { showTableContent(); });
|
|
$("#table_structure").on("click", function() { showTableStructure(); });
|
|
$("#table_info").on("click", function() { showTableInfo(); });
|
|
$("#table_indexes").on("click", function() { showTableIndexes(); });
|
|
$("#table_history").on("click", function() { showQueryHistory(); });
|
|
|
|
$("#table_query").on("click", function() {
|
|
setCurrentTab("table_query");
|
|
$("#input").show();
|
|
$("#output").removeClass("full");
|
|
});
|
|
|
|
$("#run").on("click", function() {
|
|
runQuery();
|
|
});
|
|
|
|
$("#explain").on("click", function() {
|
|
runExplain();
|
|
});
|
|
|
|
$("#csv").on("click", function() {
|
|
exportToCSV();
|
|
});
|
|
|
|
$("#results").on("click", "tr", function() {
|
|
$("#results tr.selected").removeClass();
|
|
$(this).addClass("selected");
|
|
});
|
|
|
|
$("#tables").on("click", "li", function() {
|
|
$("#tables li.selected").removeClass("selected");
|
|
$(this).addClass("selected");
|
|
showTableContent();
|
|
});
|
|
|
|
loadTables();
|
|
}); |