-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
171301b
commit e70542d
Showing
8 changed files
with
130 additions
and
19,637 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
var $ = window.$ = require('jquery'); | ||
var jQuery = window.jQuery = $; | ||
require('select2'); | ||
require('datatables'); | ||
|
||
var ace = require('brace'); | ||
require('brace/mode/sql'); | ||
require('brace/theme/crimson_editor'); | ||
|
||
$(document).ready(function() { | ||
function getParam(name) { | ||
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); | ||
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"), | ||
results = regex.exec(location.search); | ||
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); | ||
} | ||
function initSqlEditorView() { | ||
var database_id = $('#database_id').val(); | ||
var editor = ace.edit("sql"); | ||
editor.$blockScrolling = Infinity | ||
editor.getSession().setUseWrapMode(true); | ||
|
||
var textarea = $('#sql').hide(); | ||
editor.setTheme("ace/theme/crimson_editor"); | ||
editor.setOptions({ | ||
minLines: 16, | ||
maxLines: Infinity, | ||
}); | ||
editor.getSession().setMode("ace/mode/sql"); | ||
editor.focus(); | ||
$("select").select2({dropdownAutoWidth : true}); | ||
function showTableMetadata() { | ||
$(".metadata").load( | ||
'/panoramix/table/' + database_id + '/' + $("#dbtable").val() + '/'); | ||
} | ||
$("#dbtable").on("change", showTableMetadata); | ||
showTableMetadata(); | ||
$("#create_view").click(function(){alert("Not implemented");}); | ||
$(".sqlcontent").show(); | ||
$("#select_star").click(function(){ | ||
$.ajax('/panoramix/select_star/' + database_id + '/' + $("#dbtable").val() + '/') | ||
.done(function(msg){ | ||
editor.setValue(msg); | ||
}); | ||
}); | ||
editor.setValue(getParam('sql')); | ||
$(window).bind("popstate", function(event) { | ||
// Browser back button | ||
var returnLocation = history.location || document.location; | ||
// Could do something more lightweight here, but we're not optimizing | ||
// for the use of the back button anyways | ||
editor.setValue(getParam('sql')); | ||
$("#run").click(); | ||
}); | ||
$("#run").click(function() { | ||
$('#results').hide(0); | ||
$('#loading').show(0); | ||
history.pushState({}, document.title, '?sql=' + encodeURIComponent(editor.getValue())); | ||
$.ajax({ | ||
type: "POST", | ||
url: '/panoramix/runsql/', | ||
data: { | ||
'data': JSON.stringify({ | ||
'database_id': $('#database_id').val(), | ||
'sql': editor.getSession().getValue(), | ||
})}, | ||
success: function(data) { | ||
$('#loading').hide(0); | ||
$('#results').show(0); | ||
$('#results').html(data); | ||
|
||
var datatable = $('table.sql_results').DataTable({ | ||
paging: false, | ||
searching: true, | ||
aaSorting: [], | ||
}); | ||
}, | ||
error: function(err, err2) { | ||
$('#loading').hide(0); | ||
$('#results').show(0); | ||
$('#results').html(err.responseText); | ||
}, | ||
}); | ||
}); | ||
} | ||
initSqlEditorView(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.