Add a new table to display connection information
This commit is contained in:
parent
291b681e61
commit
5a2c13e6c4
@ -20,6 +20,7 @@
|
|||||||
<li id="table_indexes">Indexes</li>
|
<li id="table_indexes">Indexes</li>
|
||||||
<li id="table_query" class="selected">SQL Query</li>
|
<li id="table_query" class="selected">SQL Query</li>
|
||||||
<li id="table_history">History</li>
|
<li id="table_history">History</li>
|
||||||
|
<li id="table_connection">Connection</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="sidebar">
|
<div id="sidebar">
|
||||||
|
@ -182,6 +182,26 @@ function showQueryPanel() {
|
|||||||
$("#output").removeClass("full");
|
$("#output").removeClass("full");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function showConnectionPanel() {
|
||||||
|
setCurrentTab("table_connection");
|
||||||
|
|
||||||
|
apiCall("get", "/info", {}, function(data) {
|
||||||
|
var rows = [];
|
||||||
|
|
||||||
|
for(key in data) {
|
||||||
|
rows.push([key, data[key]]);
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTable({
|
||||||
|
columns: ["attribute", "value"],
|
||||||
|
rows: rows
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#input").hide();
|
||||||
|
$("#output").addClass("full");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function runQuery() {
|
function runQuery() {
|
||||||
setCurrentTab("table_query");
|
setCurrentTab("table_query");
|
||||||
|
|
||||||
@ -289,11 +309,12 @@ $(document).ready(function() {
|
|||||||
initEditor();
|
initEditor();
|
||||||
addShortcutTooltips();
|
addShortcutTooltips();
|
||||||
|
|
||||||
$("#table_content").on("click", function() { showTableContent(); });
|
$("#table_content").on("click", function() { showTableContent(); });
|
||||||
$("#table_structure").on("click", function() { showTableStructure(); });
|
$("#table_structure").on("click", function() { showTableStructure(); });
|
||||||
$("#table_indexes").on("click", function() { showTableIndexes(); });
|
$("#table_indexes").on("click", function() { showTableIndexes(); });
|
||||||
$("#table_history").on("click", function() { showQueryHistory(); });
|
$("#table_history").on("click", function() { showQueryHistory(); });
|
||||||
$("#table_query").on("click", function() { showQueryPanel(); });
|
$("#table_query").on("click", function() { showQueryPanel(); });
|
||||||
|
$("#table_connection").on("click", function() { showConnectionPanel(); });
|
||||||
|
|
||||||
$("#run").on("click", function() {
|
$("#run").on("click", function() {
|
||||||
runQuery();
|
runQuery();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user