diff options
Diffstat (limited to 'srcs/phpmyadmin/js/console.js')
| -rw-r--r-- | srcs/phpmyadmin/js/console.js | 1509 |
1 files changed, 1509 insertions, 0 deletions
diff --git a/srcs/phpmyadmin/js/console.js b/srcs/phpmyadmin/js/console.js new file mode 100644 index 0000000..2ec580e --- /dev/null +++ b/srcs/phpmyadmin/js/console.js @@ -0,0 +1,1509 @@ +/* vim: set expandtab sw=4 ts=4 sts=4: */ +/** + * Used in or for console + * + * @package phpMyAdmin-Console + */ + +/* global debugSQLInfo */ // libraries/classes/Footer.php + +/** + * Console object + */ +var Console = { + /** + * @var object, jQuery object, selector is '#pma_console>.content' + * @access private + */ + $consoleContent: null, + /** + * @var object, jQuery object, selector is '#pma_console .content', + * used for resizer + * @access private + */ + $consoleAllContents: null, + /** + * @var object, jQuery object, selector is '#pma_console .toolbar' + * @access private + */ + $consoleToolbar: null, + /** + * @var object, jQuery object, selector is '#pma_console .template' + * @access private + */ + $consoleTemplates: null, + /** + * @var object, jQuery object, form for submit + * @access private + */ + $requestForm: null, + /** + * @var object, contain console config + * @access private + */ + config: null, + /** + * @var bool, if console element exist, it'll be true + * @access public + */ + isEnabled: false, + /** + * @var bool, make sure console events bind only once + * @access private + */ + isInitialized: false, + /** + * Used for console initialize, reinit is ok, just some variable assignment + * + * @return void + */ + initialize: function () { + if ($('#pma_console').length === 0) { + return; + } + + Console.config = Functions.configGet('Console', false); + + Console.isEnabled = true; + + // Vars init + Console.$consoleToolbar = $('#pma_console').find('>.toolbar'); + Console.$consoleContent = $('#pma_console').find('>.content'); + Console.$consoleAllContents = $('#pma_console').find('.content'); + Console.$consoleTemplates = $('#pma_console').find('>.templates'); + + // Generate a from for post + Console.$requestForm = $('<form method="post" action="import.php">' + + '<input name="is_js_confirmed" value="0">' + + '<textarea name="sql_query"></textarea>' + + '<input name="console_message_id" value="0">' + + '<input name="server" value="">' + + '<input name="db" value="">' + + '<input name="table" value="">' + + '<input name="token" value="">' + + '</form>' + ); + Console.$requestForm.children('[name=token]').val(CommonParams.get('token')); + Console.$requestForm.on('submit', AJAX.requestHandler); + + // Event binds shouldn't run again + if (Console.isInitialized === false) { + // Load config first + if (Console.config.AlwaysExpand === true) { + $('#pma_console_options input[name=always_expand]').prop('checked', true); + } + if (Console.config.StartHistory === true) { + $('#pma_console_options').find('input[name=start_history]').prop('checked', true); + } + if (Console.config.CurrentQuery === true) { + $('#pma_console_options').find('input[name=current_query]').prop('checked', true); + } + if (Console.config.EnterExecutes === true) { + $('#pma_console_options').find('input[name=enter_executes]').prop('checked', true); + } + if (Console.config.DarkTheme === true) { + $('#pma_console_options').find('input[name=dark_theme]').prop('checked', true); + $('#pma_console').find('>.content').addClass('console_dark_theme'); + } + + ConsoleResizer.initialize(); + ConsoleInput.initialize(); + ConsoleMessages.initialize(); + ConsoleBookmarks.initialize(); + ConsoleDebug.initialize(); + + Console.$consoleToolbar.children('.console_switch').on('click', Console.toggle); + + $('#pma_console').find('.toolbar').children().on('mousedown', function (event) { + event.preventDefault(); + event.stopImmediatePropagation(); + }); + + $('#pma_console').find('.button.clear').on('click', function () { + ConsoleMessages.clear(); + }); + + $('#pma_console').find('.button.history').on('click', function () { + ConsoleMessages.showHistory(); + }); + + $('#pma_console').find('.button.options').on('click', function () { + Console.showCard('#pma_console_options'); + }); + + $('#pma_console').find('.button.debug').on('click', function () { + Console.showCard('#debug_console'); + }); + + Console.$consoleContent.on('click', function (event) { + if (event.target === this) { + ConsoleInput.focus(); + } + }); + + $('#pma_console').find('.mid_layer').on('click', function () { + Console.hideCard($(this).parent().children('.card')); + }); + $('#debug_console').find('.switch_button').on('click', function () { + Console.hideCard($(this).closest('.card')); + }); + $('#pma_bookmarks').find('.switch_button').on('click', function () { + Console.hideCard($(this).closest('.card')); + }); + $('#pma_console_options').find('.switch_button').on('click', function () { + Console.hideCard($(this).closest('.card')); + }); + + $('#pma_console_options').find('input[type=checkbox]').on('change', function () { + Console.updateConfig(); + }); + + $('#pma_console_options').find('.button.default').on('click', function () { + $('#pma_console_options input[name=always_expand]').prop('checked', false); + $('#pma_console_options').find('input[name=start_history]').prop('checked', false); + $('#pma_console_options').find('input[name=current_query]').prop('checked', true); + $('#pma_console_options').find('input[name=enter_executes]').prop('checked', false); + $('#pma_console_options').find('input[name=dark_theme]').prop('checked', false); + Console.updateConfig(); + }); + + $('#pma_console_options').find('input[name=enter_executes]').on('change', function () { + ConsoleMessages.showInstructions(Console.config.EnterExecutes); + }); + + $(document).ajaxComplete(function (event, xhr, ajaxOptions) { + if (ajaxOptions.dataType && ajaxOptions.dataType.indexOf('json') !== -1) { + return; + } + if (xhr.status !== 200) { + return; + } + try { + var data = JSON.parse(xhr.responseText); + Console.ajaxCallback(data); + } catch (e) { + // eslint-disable-next-line no-console + console.trace(); + // eslint-disable-next-line no-console + console.log('Failed to parse JSON: ' + e.message); + } + }); + + Console.isInitialized = true; + } + + // Change console mode from cookie + switch (Console.config.Mode) { + case 'collapse': + Console.collapse(); + break; + case 'info': + Console.info(); + break; + case 'show': + Console.show(true); + Console.scrollBottom(); + break; + default: + Console.setConfig('Mode', 'info'); + Console.info(); + } + }, + /** + * Execute query and show results in console + * + * @return void + */ + execute: function (queryString, options) { + if (typeof(queryString) !== 'string' || ! /[a-z]|[A-Z]/.test(queryString)) { + return; + } + Console.$requestForm.children('textarea').val(queryString); + Console.$requestForm.children('[name=server]').attr('value', CommonParams.get('server')); + if (options && options.db) { + Console.$requestForm.children('[name=db]').val(options.db); + if (options.table) { + Console.$requestForm.children('[name=table]').val(options.table); + } else { + Console.$requestForm.children('[name=table]').val(''); + } + } else { + Console.$requestForm.children('[name=db]').val( + (CommonParams.get('db').length > 0 ? CommonParams.get('db') : '')); + } + Console.$requestForm.find('[name=profiling]').remove(); + if (options && options.profiling === true) { + Console.$requestForm.append('<input name="profiling" value="on">'); + } + if (! Functions.confirmQuery(Console.$requestForm[0], Console.$requestForm.children('textarea')[0].value)) { + return; + } + Console.$requestForm.children('[name=console_message_id]') + .val(ConsoleMessages.appendQuery({ 'sql_query': queryString }).message_id); + Console.$requestForm.trigger('submit'); + ConsoleInput.clear(); + Navigation.reload(); + }, + ajaxCallback: function (data) { + if (data && data.console_message_id) { + ConsoleMessages.updateQuery(data.console_message_id, data.success, + (data.reloadQuerywindow ? data.reloadQuerywindow : false)); + } else if (data && data.reloadQuerywindow) { + if (data.reloadQuerywindow.sql_query.length > 0) { + ConsoleMessages.appendQuery(data.reloadQuerywindow, 'successed') + .$message.addClass(Console.config.CurrentQuery ? '' : 'hide'); + } + } + }, + /** + * Change console to collapse mode + * + * @return void + */ + collapse: function () { + Console.setConfig('Mode', 'collapse'); + var pmaConsoleHeight = Math.max(92, Console.config.Height); + + Console.$consoleToolbar.addClass('collapsed'); + Console.$consoleAllContents.height(pmaConsoleHeight); + Console.$consoleContent.stop(); + Console.$consoleContent.animate({ 'margin-bottom': -1 * Console.$consoleContent.outerHeight() + 'px' }, + 'fast', 'easeOutQuart', function () { + Console.$consoleContent.css({ display:'none' }); + $(window).trigger('resize'); + }); + Console.hideCard(); + }, + /** + * Show console + * + * @param bool inputFocus If true, focus the input line after show() + * @return void + */ + show: function (inputFocus) { + Console.setConfig('Mode', 'show'); + + var pmaConsoleHeight = Math.max(92, Console.config.Height); + pmaConsoleHeight = Math.min(Console.config.Height, (window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight) - 25); + Console.$consoleContent.css({ display:'block' }); + if (Console.$consoleToolbar.hasClass('collapsed')) { + Console.$consoleToolbar.removeClass('collapsed'); + } + Console.$consoleAllContents.height(pmaConsoleHeight); + Console.$consoleContent.stop(); + Console.$consoleContent.animate({ 'margin-bottom': 0 }, + 'fast', 'easeOutQuart', function () { + $(window).trigger('resize'); + if (inputFocus) { + ConsoleInput.focus(); + } + }); + }, + /** + * Change console to SQL information mode + * this mode shows current SQL query + * This mode is the default mode + * + * @return void + */ + info: function () { + // Under construction + Console.collapse(); + }, + /** + * Toggle console mode between collapse/show + * Used for toggle buttons and shortcuts + * + * @return void + */ + toggle: function () { + switch (Console.config.Mode) { + case 'collapse': + case 'info': + Console.show(true); + break; + case 'show': + Console.collapse(); + break; + } + }, + /** + * Scroll console to bottom + * + * @return void + */ + scrollBottom: function () { + Console.$consoleContent.scrollTop(Console.$consoleContent.prop('scrollHeight')); + }, + /** + * Show card + * + * @param string cardSelector Selector, select string will be "#pma_console " + cardSelector + * this param also can be JQuery object, if you need. + * + * @return void + */ + showCard: function (cardSelector) { + var $card = null; + if (typeof(cardSelector) !== 'string') { + if (cardSelector.length > 0) { + $card = cardSelector; + } else { + return; + } + } else { + $card = $('#pma_console ' + cardSelector); + } + if ($card.length === 0) { + return; + } + $card.parent().children('.mid_layer').show().fadeTo(0, 0.15); + $card.addClass('show'); + ConsoleInput.blur(); + if ($card.parents('.card').length > 0) { + Console.showCard($card.parents('.card')); + } + }, + /** + * Scroll console to bottom + * + * @param object $targetCard Target card JQuery object, if it's empty, function will hide all cards + * @return void + */ + hideCard: function ($targetCard) { + if (! $targetCard) { + $('#pma_console').find('.mid_layer').fadeOut(140); + $('#pma_console').find('.card').removeClass('show'); + } else if ($targetCard.length > 0) { + $targetCard.parent().find('.mid_layer').fadeOut(140); + $targetCard.find('.card').removeClass('show'); + $targetCard.removeClass('show'); + } + }, + /** + * Used for update console config + * + * @return void + */ + updateConfig: function () { + Console.setConfig('AlwaysExpand', $('#pma_console_options input[name=always_expand]').prop('checked')); + Console.setConfig('StartHistory', $('#pma_console_options').find('input[name=start_history]').prop('checked')); + Console.setConfig('CurrentQuery', $('#pma_console_options').find('input[name=current_query]').prop('checked')); + Console.setConfig('EnterExecutes', $('#pma_console_options').find('input[name=enter_executes]').prop('checked')); + Console.setConfig('DarkTheme', $('#pma_console_options').find('input[name=dark_theme]').prop('checked')); + /* Setting the dark theme of the console*/ + if (Console.config.DarkTheme) { + $('#pma_console').find('>.content').addClass('console_dark_theme'); + } else { + $('#pma_console').find('>.content').removeClass('console_dark_theme'); + } + }, + setConfig: function (key, value) { + Console.config[key] = value; + Functions.configSet('Console/' + key, value); + }, + isSelect: function (queryString) { + var regExp = /^SELECT\s+/i; + return regExp.test(queryString); + } +}; + +/** + * Resizer object + * Careful: this object UI logics highly related with functions under Console + * Resizing min-height is 32, if small than it, console will collapse + */ +var ConsoleResizer = { + posY: 0, + height: 0, + resultHeight: 0, + /** + * Mousedown event handler for bind to resizer + * + * @return void + */ + mouseDown: function (event) { + if (Console.config.Mode !== 'show') { + return; + } + ConsoleResizer.posY = event.pageY; + ConsoleResizer.height = Console.$consoleContent.height(); + $(document).on('mousemove', ConsoleResizer.mouseMove); + $(document).on('mouseup', ConsoleResizer.mouseUp); + // Disable text selection while resizing + $(document).on('selectstart', function () { + return false; + }); + }, + /** + * Mousemove event handler for bind to resizer + * + * @return void + */ + mouseMove: function (event) { + if (event.pageY < 35) { + event.pageY = 35; + } + ConsoleResizer.resultHeight = ConsoleResizer.height + (ConsoleResizer.posY - event.pageY); + // Content min-height is 32, if adjusting height small than it we'll move it out of the page + if (ConsoleResizer.resultHeight <= 32) { + Console.$consoleAllContents.height(32); + Console.$consoleContent.css('margin-bottom', ConsoleResizer.resultHeight - 32); + } else { + // Logic below makes viewable area always at bottom when adjusting height and content already at bottom + if (Console.$consoleContent.scrollTop() + Console.$consoleContent.innerHeight() + 16 + >= Console.$consoleContent.prop('scrollHeight')) { + Console.$consoleAllContents.height(ConsoleResizer.resultHeight); + Console.scrollBottom(); + } else { + Console.$consoleAllContents.height(ConsoleResizer.resultHeight); + } + } + }, + /** + * Mouseup event handler for bind to resizer + * + * @return void + */ + mouseUp: function () { + Console.setConfig('Height', ConsoleResizer.resultHeight); + Console.show(); + $(document).off('mousemove'); + $(document).off('mouseup'); + $(document).off('selectstart'); + }, + /** + * Used for console resizer initialize + * + * @return void + */ + initialize: function () { + $('#pma_console').find('.toolbar').off('mousedown'); + $('#pma_console').find('.toolbar').on('mousedown', ConsoleResizer.mouseDown); + } +}; + +/** + * Console input object + */ +var ConsoleInput = { + /** + * @var array, contains Codemirror objects or input jQuery objects + * @access private + */ + inputs: null, + /** + * @var bool, if codemirror enabled + * @access private + */ + codeMirror: false, + /** + * @var int, count for history navigation, 0 for current input + * @access private + */ + historyCount: 0, + /** + * @var string, current input when navigating through history + * @access private + */ + historyPreserveCurrent: null, + /** + * Used for console input initialize + * + * @return void + */ + initialize: function () { + // _cm object can't be reinitialize + if (ConsoleInput.inputs !== null) { + return; + } + if (typeof CodeMirror !== 'undefined') { + ConsoleInput.codeMirror = true; + } + ConsoleInput.inputs = []; + if (ConsoleInput.codeMirror) { + // eslint-disable-next-line new-cap + ConsoleInput.inputs.console = CodeMirror($('#pma_console').find('.console_query_input')[0], { + theme: 'pma', + mode: 'text/x-sql', + lineWrapping: true, + extraKeys: { 'Ctrl-Space': 'autocomplete' }, + hintOptions: { 'completeSingle': false, 'completeOnSingleClick': true }, + gutters: ['CodeMirror-lint-markers'], + lint: { + 'getAnnotations': CodeMirror.sqlLint, + 'async': true, + } + }); + ConsoleInput.inputs.console.on('inputRead', Functions.codeMirrorAutoCompleteOnInputRead); + ConsoleInput.inputs.console.on('keydown', function (instance, event) { + ConsoleInput.historyNavigate(event); + }); + if ($('#pma_bookmarks').length !== 0) { + // eslint-disable-next-line new-cap + ConsoleInput.inputs.bookmark = CodeMirror($('#pma_console').find('.bookmark_add_input')[0], { + theme: 'pma', + mode: 'text/x-sql', + lineWrapping: true, + extraKeys: { 'Ctrl-Space': 'autocomplete' }, + hintOptions: { 'completeSingle': false, 'completeOnSingleClick': true }, + gutters: ['CodeMirror-lint-markers'], + lint: { + 'getAnnotations': CodeMirror.sqlLint, + 'async': true, + } + }); + ConsoleInput.inputs.bookmark.on('inputRead', Functions.codeMirrorAutoCompleteOnInputRead); + } + } else { + ConsoleInput.inputs.console = + $('<textarea>').appendTo('#pma_console .console_query_input') + .on('keydown', ConsoleInput.historyNavigate); + if ($('#pma_bookmarks').length !== 0) { + ConsoleInput.inputs.bookmark = + $('<textarea>').appendTo('#pma_console .bookmark_add_input'); + } + } + $('#pma_console').find('.console_query_input').on('keydown', ConsoleInput.keyDown); + }, + historyNavigate: function (event) { + if (event.keyCode === 38 || event.keyCode === 40) { + var upPermitted = false; + var downPermitted = false; + var editor = ConsoleInput.inputs.console; + var cursorLine; + var totalLine; + if (ConsoleInput.codeMirror) { + cursorLine = editor.getCursor().line; + totalLine = editor.lineCount(); + } else { + // Get cursor position from textarea + var text = ConsoleInput.getText(); + cursorLine = text.substr(0, editor.prop('selectionStart')).split('\n').length - 1; + totalLine = text.split(/\r*\n/).length; + } + if (cursorLine === 0) { + upPermitted = true; + } + if (cursorLine === totalLine - 1) { + downPermitted = true; + } + var nextCount; + var queryString = false; + if (upPermitted && event.keyCode === 38) { + // Navigate up in history + if (ConsoleInput.historyCount === 0) { + ConsoleInput.historyPreserveCurrent = ConsoleInput.getText(); + } + nextCount = ConsoleInput.historyCount + 1; + queryString = ConsoleMessages.getHistory(nextCount); + } else if (downPermitted && event.keyCode === 40) { + // Navigate down in history + if (ConsoleInput.historyCount === 0) { + return; + } + nextCount = ConsoleInput.historyCount - 1; + if (nextCount === 0) { + queryString = ConsoleInput.historyPreserveCurrent; + } else { + queryString = ConsoleMessages.getHistory(nextCount); + } + } + if (queryString !== false) { + ConsoleInput.historyCount = nextCount; + ConsoleInput.setText(queryString, 'console'); + if (ConsoleInput.codeMirror) { + editor.setCursor(editor.lineCount(), 0); + } + event.preventDefault(); + } + } + }, + /** + * Mousedown event handler for bind to input + * Shortcut is Ctrl+Enter key or just ENTER, depending on console's + * configuration. + * + * @return void + */ + keyDown: function (event) { + // Execute command + if (Console.config.EnterExecutes) { + // Enter, but not in combination with Shift (which writes a new line). + if (!event.shiftKey && event.keyCode === 13) { + ConsoleInput.execute(); + } + } else { + // Ctrl+Enter + if (event.ctrlKey && event.keyCode === 13) { + ConsoleInput.execute(); + } + } + // Clear line + if (event.ctrlKey && event.keyCode === 76) { + ConsoleInput.clear(); + } + // Clear console + if (event.ctrlKey && event.keyCode === 85) { + ConsoleMessages.clear(); + } + }, + /** + * Used for send text to Console.execute() + * + * @return void + */ + execute: function () { + if (ConsoleInput.codeMirror) { + Console.execute(ConsoleInput.inputs.console.getValue()); + } else { + Console.execute(ConsoleInput.inputs.console.val()); + } + }, + /** + * Used for clear the input + * + * @param string target, default target is console input + * @return void + */ + clear: function (target) { + ConsoleInput.setText('', target); + }, + /** + * Used for set focus to input + * + * @return void + */ + focus: function () { + ConsoleInput.inputs.console.focus(); + }, + /** + * Used for blur input + * + * @return void + */ + blur: function () { + if (ConsoleInput.codeMirror) { + ConsoleInput.inputs.console.getInputField().blur(); + } else { + ConsoleInput.inputs.console.blur(); + } + }, + /** + * Used for set text in input + * + * @param string text + * @param string target + * @return void + */ + setText: function (text, target) { + if (ConsoleInput.codeMirror) { + switch (target) { + case 'bookmark': + Console.execute(ConsoleInput.inputs.bookmark.setValue(text)); + break; + default: + case 'console': + Console.execute(ConsoleInput.inputs.console.setValue(text)); + } + } else { + switch (target) { + case 'bookmark': + Console.execute(ConsoleInput.inputs.bookmark.val(text)); + break; + default: + case 'console': + Console.execute(ConsoleInput.inputs.console.val(text)); + } + } + }, + getText: function (target) { + if (ConsoleInput.codeMirror) { + switch (target) { + case 'bookmark': + return ConsoleInput.inputs.bookmark.getValue(); + default: + case 'console': + return ConsoleInput.inputs.console.getValue(); + } + } else { + switch (target) { + case 'bookmark': + return ConsoleInput.inputs.bookmark.val(); + default: + case 'console': + return ConsoleInput.inputs.console.val(); + } + } + } + +}; + +/** + * Console messages, and message items management object + */ +var ConsoleMessages = { + /** + * Used for clear the messages + * + * @return void + */ + clear: function () { + $('#pma_console').find('.content .console_message_container .message:not(.welcome)').addClass('hide'); + $('#pma_console').find('.content .console_message_container .message.failed').remove(); + $('#pma_console').find('.content .console_message_container .message.expanded').find('.action.collapse').trigger('click'); + }, + /** + * Used for show history messages + * + * @return void + */ + showHistory: function () { + $('#pma_console').find('.content .console_message_container .message.hide').removeClass('hide'); + }, + /** + * Used for getting a perticular history query + * + * @param int nthLast get nth query message from latest, i.e 1st is last + * @return string message + */ + getHistory: function (nthLast) { + var $queries = $('#pma_console').find('.content .console_message_container .query'); + var length = $queries.length; + var $query = $queries.eq(length - nthLast); + if (!$query || (length - nthLast) < 0) { + return false; + } else { + return $query.text(); + } + }, + /** + * Used to show the correct message depending on which key + * combination executes the query (Ctrl+Enter or Enter). + * + * @param bool enterExecutes Only Enter has to be pressed to execute query. + * @return void + */ + showInstructions: function (enterExecutes) { + var enter = +enterExecutes || 0; // conversion to int + var $welcomeMsg = $('#pma_console').find('.content .console_message_container .message.welcome span'); + $welcomeMsg.children('[id^=instructions]').hide(); + $welcomeMsg.children('#instructions-' + enter).show(); + }, + /** + * Used for log new message + * + * @param string msgString Message to show + * @param string msgType Message type + * @return object, {message_id, $message} + */ + append: function (msgString, msgType) { + if (typeof(msgString) !== 'string') { + return false; + } + // Generate an ID for each message, we can find them later + var msgId = Math.round(Math.random() * (899999999999) + 100000000000); + var now = new Date(); + var $newMessage = + $('<div class="message ' + + (Console.config.AlwaysExpand ? 'expanded' : 'collapsed') + + '" msgid="' + msgId + '"><div class="action_content"></div></div>'); + switch (msgType) { + case 'query': + $newMessage.append('<div class="query highlighted"></div>'); + if (ConsoleInput.codeMirror) { + CodeMirror.runMode(msgString, + 'text/x-sql', $newMessage.children('.query')[0]); + } else { + $newMessage.children('.query').text(msgString); + } + $newMessage.children('.action_content') + .append(Console.$consoleTemplates.children('.query_actions').html()); + break; + default: + case 'normal': + $newMessage.append('<div>' + msgString + '</div>'); + } + ConsoleMessages.messageEventBinds($newMessage); + $newMessage.find('span.text.query_time span') + .text(now.getHours() + ':' + now.getMinutes() + ':' + now.getSeconds()) + .parent().attr('title', now); + return { + 'message_id': msgId, + $message: $newMessage.appendTo('#pma_console .content .console_message_container') + }; + }, + /** + * Used for log new query + * + * @param string queryData Struct should be + * {sql_query: "Query string", db: "Target DB", table: "Target Table"} + * @param string state Message state + * @return object, {message_id: string message id, $message: JQuery object} + */ + appendQuery: function (queryData, state) { + var targetMessage = ConsoleMessages.append(queryData.sql_query, 'query'); + if (! targetMessage) { + return false; + } + if (queryData.db && queryData.table) { + targetMessage.$message.attr('targetdb', queryData.db); + targetMessage.$message.attr('targettable', queryData.table); + targetMessage.$message.find('.text.targetdb span').text(queryData.db); + } + if (Console.isSelect(queryData.sql_query)) { + targetMessage.$message.addClass('select'); + } + switch (state) { + case 'failed': + targetMessage.$message.addClass('failed'); + break; + case 'successed': + targetMessage.$message.addClass('successed'); + break; + default: + case 'pending': + targetMessage.$message.addClass('pending'); + } + return targetMessage; + }, + messageEventBinds: function ($target) { + // Leave unbinded elements, remove binded. + var $targetMessage = $target.filter(':not(.binded)'); + if ($targetMessage.length === 0) { + return; + } + $targetMessage.addClass('binded'); + + $targetMessage.find('.action.expand').on('click', function () { + $(this).closest('.message').removeClass('collapsed'); + $(this).closest('.message').addClass('expanded'); + }); + $targetMessage.find('.action.collapse').on('click', function () { + $(this).closest('.message').addClass('collapsed'); + $(this).closest('.message').removeClass('expanded'); + }); + $targetMessage.find('.action.edit').on('click', function () { + ConsoleInput.setText($(this).parent().siblings('.query').text()); + ConsoleInput.focus(); + }); + $targetMessage.find('.action.requery').on('click', function () { + var query = $(this).parent().siblings('.query').text(); + var $message = $(this).closest('.message'); + if (confirm(Messages.strConsoleRequeryConfirm + '\n' + + (query.length < 100 ? query : query.slice(0, 100) + '...')) + ) { + Console.execute(query, { db: $message.attr('targetdb'), table: $message.attr('targettable') }); + } + }); + $targetMessage.find('.action.bookmark').on('click', function () { + var query = $(this).parent().siblings('.query').text(); + var $message = $(this).closest('.message'); + ConsoleBookmarks.addBookmark(query, $message.attr('targetdb')); + Console.showCard('#pma_bookmarks .card.add'); + }); + $targetMessage.find('.action.edit_bookmark').on('click', function () { + var query = $(this).parent().siblings('.query').text(); + var $message = $(this).closest('.message'); + var isShared = $message.find('span.bookmark_label').hasClass('shared'); + var label = $message.find('span.bookmark_label').text(); + ConsoleBookmarks.addBookmark(query, $message.attr('targetdb'), label, isShared); + Console.showCard('#pma_bookmarks .card.add'); + }); + $targetMessage.find('.action.delete_bookmark').on('click', function () { + var $message = $(this).closest('.message'); + if (confirm(Messages.strConsoleDeleteBookmarkConfirm + '\n' + $message.find('.bookmark_label').text())) { + $.post('import.php', + { + 'server': CommonParams.get('server'), + 'action_bookmark': 2, + 'ajax_request': true, + 'id_bookmark': $message.attr('bookmarkid') + }, + function () { + ConsoleBookmarks.refresh(); + }); + } + }); + $targetMessage.find('.action.profiling').on('click', function () { + var $message = $(this).closest('.message'); + Console.execute($(this).parent().siblings('.query').text(), + { db: $message.attr('targetdb'), + table: $message.attr('targettable'), + profiling: true }); + }); + $targetMessage.find('.action.explain').on('click', function () { + var $message = $(this).closest('.message'); + Console.execute('EXPLAIN ' + $(this).parent().siblings('.query').text(), + { db: $message.attr('targetdb'), + table: $message.attr('targettable') }); + }); + $targetMessage.find('.action.dbg_show_trace').on('click', function () { + var $message = $(this).closest('.message'); + if (!$message.find('.trace').length) { + ConsoleDebug.getQueryDetails( + $message.data('queryInfo'), + $message.data('totalTime'), + $message + ); + ConsoleMessages.messageEventBinds($message.find('.message:not(.binded)')); + } + $message.addClass('show_trace'); + $message.removeClass('hide_trace'); + }); + $targetMessage.find('.action.dbg_hide_trace').on('click', function () { + var $message = $(this).closest('.message'); + $message.addClass('hide_trace'); + $message.removeClass('show_trace'); + }); + $targetMessage.find('.action.dbg_show_args').on('click', function () { + var $message = $(this).closest('.message'); + $message.addClass('show_args expanded'); + $message.removeClass('hide_args collapsed'); + }); + $targetMessage.find('.action.dbg_hide_args').on('click', function () { + var $message = $(this).closest('.message'); + $message.addClass('hide_args collapsed'); + $message.removeClass('show_args expanded'); + }); + if (ConsoleInput.codeMirror) { + $targetMessage.find('.query:not(.highlighted)').each(function (index, elem) { + CodeMirror.runMode($(elem).text(), + 'text/x-sql', elem); + $(this).addClass('highlighted'); + }); + } + },< |
