Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added copy as insert and copy as update #730

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,8 @@ <h3 class="text-center">SSH Connection</h3>
<ul class="dropdown-menu" role="menu">
<li><a href="#" data-action="display_value">Display Value</a></li>
<li><a href="#" data-action="copy_value">Copy Value</a></li>
<li><a href="#" data-action="copy_as_insert">Copy row as INSERT</a></li>
<li><a href="#" data-action="copy_as_update">Copy row as UPDATE</a></li>
<li><a href="#" data-action="filter_by_value">Filter Rows By Value</a></li>
</ul>
</div>
Expand Down
92 changes: 91 additions & 1 deletion static/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ function buildTable(results, sortColumn, sortOrder, options) {

// Add all actual row data here
for (i in row) {
r += "<td data-col='" + i + "'><div>" + escapeHtml(row[i]) + "</div></td>";
r += "<td data-type='"+ typeof row[i]+"' data-col='" + i + "'><div>" + escapeHtml(row[i]) + "</div></td>";
}

// Add row action button
Expand Down Expand Up @@ -1222,6 +1222,15 @@ function bindTableHeaderMenu() {
var isEmpty = $("#results").hasClass("empty");
var isAllowed = browseMode == "browse" || browseMode == "query";

if ( browseMode == 'browse' ){
$('.dropdown-menu li a[data-action="copy_as_insert"]').show();
$('.dropdown-menu li a[data-action="copy_as_update"]').show();
} else {
$('.dropdown-menu li a[data-action="copy_as_insert"]').hide();
$('.dropdown-menu li a[data-action="copy_as_update"]').hide();
}


if (isEmpty || !isAllowed) {
e.preventDefault();
this.closemenu();
Expand All @@ -1232,6 +1241,12 @@ function bindTableHeaderMenu() {
var menuItem = $(e.target);

switch(menuItem.data("action")) {
case "copy_as_insert":
copyAsInsert(context);
break;
case "copy_as_update":
copyAsUpdate(context);
break;
case "display_value":
var value = $(context).text();
$("#content_modal .content").text(value);
Expand All @@ -1254,6 +1269,81 @@ function bindTableHeaderMenu() {
});
}

function copyAsInsert(context){
var values = getValuesFromContext(context);
var columns = getColumnsFromResults();
var tableName = $("#results").data("table");
if(tableName === undefined){
alert('table must be selected.');
return;
}
var str = "INSERT INTO "+tableName+"("+columns.join(',')+") VALUES("+values.map(function(o){return o.value}).join(",")+")";
copyToClipboard(str);
}

function copyAsUpdate(context){
var values = getValuesFromContext(context);
var columns = getColumnsFromResults();
var tableName = $("#results").data("table");
if(tableName === undefined){
alert('table must be selected.');
return;
}
var where = [];
var set = [];
columns.forEach(function(row, index){
var val = values[index];
set.push(row+"="+val.value);
if(val.isNull){
where.push(row+" IS "+val.value);
return;
}
where.push(row+"="+val.value);
})
var str = "UPDATE "+tableName+" SET "+set.join(',')+' WHERE '+ where.join(' AND ');
copyToClipboard(str);
}

function getColumnsFromResults(){
let columns = [];
$("#results_header th").each(function(){
columns.push(this.innerText);
})
return columns;
}

function getValuesFromContext(context){
let values = [];
$(context).parent().children().each(function(){
const isNull = $(this).find("span[class*='null']").length;
const fieldType = this.dataset["type"] ?? "string";
let obj = {isNull:false, value:''};
if (isNull){
obj.isNull = true;
obj.value = 'NULL';
values.push(obj);
return;
}
switch (fieldType) {
case 'string':
obj.value = "'"+this.innerText+"'";
values.push(obj);
break;
case 'number':
case 'boolean':
obj.value = this.innerText;
values.push(obj);
break;
default:
obj.value = this.innerText;
values.push(obj);
break;

}
})
return values;
}

function bindCurrentDatabaseMenu() {
$("#current_database").contextmenu({
target: "#current_database_context_menu",
Expand Down