Most of the changes were done by PhpStorm. Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
358 lines
15 KiB
TypeScript
358 lines
15 KiB
TypeScript
import $ from 'jquery';
|
|
import { AJAX } from '../modules/ajax.ts';
|
|
import { getForeignKeyCheckboxLoader, loadForeignKeyCheckbox, prepareForAjaxRequest } from '../modules/functions.ts';
|
|
import { Navigation } from '../modules/navigation.ts';
|
|
import { CommonParams } from '../modules/common.ts';
|
|
import highlightSql from '../modules/sql-highlight.ts';
|
|
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
|
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
|
import { escapeHtml } from '../modules/functions/escape.ts';
|
|
import refreshMainContent from '../modules/functions/refreshMainContent.ts';
|
|
|
|
/**
|
|
* Unbind all event handlers before tearing down a page
|
|
*/
|
|
AJAX.registerTeardown('table/operations.js', function () {
|
|
$(document).off('submit', '#copyTable.ajax');
|
|
$(document).off('submit', '#moveTableForm');
|
|
$(document).off('submit', '#tableOptionsForm');
|
|
$(document).off('submit', '#partitionsForm');
|
|
$(document).off('click', '#tbl_maintenance li a.maintain_action.ajax');
|
|
$(document).off('click', '#drop_tbl_anchor.ajax');
|
|
$(document).off('click', '#drop_view_anchor.ajax');
|
|
$(document).off('click', '#truncate_tbl_anchor.ajax');
|
|
$(document).off('click', '#delete_tbl_anchor.ajax');
|
|
});
|
|
|
|
/**
|
|
* Confirm and send POST request
|
|
*
|
|
* @param {JQuery} linkObject
|
|
* @param {'TRUNCATE'|'DELETE'} action
|
|
*/
|
|
const confirmAndPost = function (linkObject, action): void {
|
|
/**
|
|
* @var {string} question String containing the question to be asked for confirmation
|
|
*/
|
|
let question = '';
|
|
if (action === 'TRUNCATE') {
|
|
question += window.Messages.strTruncateTableStrongWarning + ' ';
|
|
} else if (action === 'DELETE') {
|
|
question += window.Messages.strDeleteTableStrongWarning + ' ';
|
|
}
|
|
|
|
question += window.sprintf(window.Messages.strDoYouReally, linkObject.data('query'));
|
|
question += getForeignKeyCheckboxLoader();
|
|
linkObject.confirm(question, linkObject.attr('href'), function (url) {
|
|
ajaxShowMessage(window.Messages.strProcessingRequest);
|
|
|
|
const params = getJsConfirmCommonParam(this, linkObject.getPostData());
|
|
|
|
$.post(url, params, function (data) {
|
|
if ($('.sqlqueryresults').length !== 0) {
|
|
$('.sqlqueryresults').remove();
|
|
}
|
|
|
|
if ($('.result_query').length !== 0) {
|
|
$('.result_query').remove();
|
|
}
|
|
|
|
if (typeof data !== 'undefined' && data.success === true) {
|
|
ajaxShowMessage(data.message);
|
|
$('<div class="sqlqueryresults ajax"></div>').prependTo('#page_content');
|
|
$('.sqlqueryresults').html(data.sql_query);
|
|
highlightSql($('#page_content'));
|
|
} else {
|
|
ajaxShowMessage(data.error, false);
|
|
}
|
|
});
|
|
}, loadForeignKeyCheckbox);
|
|
};
|
|
|
|
/**
|
|
* jQuery coding for 'Table operations'. Used on /table/operations
|
|
* Attach Ajax Event handlers for Table operations
|
|
*/
|
|
AJAX.registerOnload('table/operations.js', function () {
|
|
/**
|
|
* Ajax action for submitting the "Copy table"
|
|
*/
|
|
$(document).on('submit', '#copyTable.ajax', function (event) {
|
|
event.preventDefault();
|
|
const $form = $(this);
|
|
prepareForAjaxRequest($form);
|
|
const argsep = CommonParams.get('arg_separator');
|
|
$.post($form.attr('action'), $form.serialize() + argsep + 'submit_copy=Go', function (data) {
|
|
if (typeof data !== 'undefined' && data.success === true) {
|
|
if ($form.find('input[name=\'switch_to_new\']').prop('checked')) {
|
|
Navigation.update(CommonParams.set(
|
|
'db',
|
|
$form.find('select[name=\'target_db\'],input[name=\'target_db\']').val()
|
|
));
|
|
|
|
Navigation.update(CommonParams.set(
|
|
'table',
|
|
$form.find('input[name=\'new_name\']').val()
|
|
));
|
|
|
|
refreshMainContent(false);
|
|
AJAX.callback = () => {
|
|
ajaxShowMessage(data.message);
|
|
};
|
|
} else {
|
|
ajaxShowMessage(data.message);
|
|
}
|
|
|
|
// Refresh navigation when the table is copied
|
|
Navigation.reload();
|
|
} else {
|
|
ajaxShowMessage(data.error, false);
|
|
}
|
|
}); // end $.post()
|
|
});// end of copyTable ajax submit
|
|
|
|
/**
|
|
* Ajax action for submitting the "Move table"
|
|
*/
|
|
$(document).on('submit', '#moveTableForm', function (event) {
|
|
event.preventDefault();
|
|
const $form = $(this);
|
|
prepareForAjaxRequest($form);
|
|
const argsep = CommonParams.get('arg_separator');
|
|
$.post($form.attr('action'), $form.serialize() + argsep + 'submit_move=1', function (data) {
|
|
if (typeof data !== 'undefined' && data.success === true) {
|
|
Navigation.update(CommonParams.set('db', data.params.db));
|
|
Navigation.update(CommonParams.set('table', data.params.table));
|
|
refreshMainContent('index.php?route=/table/sql');
|
|
AJAX.callback = () => {
|
|
ajaxShowMessage(data.message);
|
|
};
|
|
|
|
// Refresh navigation when the table is copied
|
|
Navigation.reload();
|
|
} else {
|
|
ajaxShowMessage(data.error, false);
|
|
}
|
|
});
|
|
});
|
|
|
|
/**
|
|
* Ajax action for submitting the "Table options"
|
|
*/
|
|
$(document).on('submit', '#tableOptionsForm', function (event) {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
const $form = $(this);
|
|
const $tblNameField = ($form.find('input[name=new_name]') as JQuery<HTMLInputElement>);
|
|
const $tblCollationField = $form.find('select[name=tbl_collation]');
|
|
const collationOrigValue = $('select[name="tbl_collation"] option[selected]').val();
|
|
const $changeAllColumnCollationsCheckBox = $('#checkbox_change_all_collations');
|
|
const question = window.Messages.strChangeAllColumnCollationsWarning;
|
|
|
|
if ($tblNameField.val() !== $tblNameField[0].defaultValue) {
|
|
// reload page and navigation if the table has been renamed
|
|
prepareForAjaxRequest($form);
|
|
|
|
if ($tblCollationField.val() !== collationOrigValue && $changeAllColumnCollationsCheckBox.is(':checked')) {
|
|
$form.confirm(question, $form.attr('action'), function () {
|
|
submitOptionsForm();
|
|
});
|
|
} else {
|
|
submitOptionsForm();
|
|
}
|
|
} else {
|
|
if ($tblCollationField.val() !== collationOrigValue && $changeAllColumnCollationsCheckBox.is(':checked')) {
|
|
$form.confirm(question, $form.attr('action'), function () {
|
|
$form.removeClass('ajax').trigger('submit').addClass('ajax');
|
|
});
|
|
} else {
|
|
$form.removeClass('ajax').trigger('submit').addClass('ajax');
|
|
}
|
|
}
|
|
|
|
function submitOptionsForm () {
|
|
$.post($form.attr('action'), $form.serialize(), function (data) {
|
|
if (typeof data !== 'undefined' && data.success === true) {
|
|
Navigation.update(CommonParams.set('table', data.params.table));
|
|
refreshMainContent(false);
|
|
AJAX.callback = () => {
|
|
$('#page_content').html(data.message);
|
|
highlightSql($('#page_content'));
|
|
};
|
|
|
|
// Refresh navigation when the table is renamed
|
|
Navigation.reload();
|
|
} else {
|
|
ajaxShowMessage(data.error, false);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Ajax events for actions in the "Table maintenance"
|
|
*/
|
|
$(document).on('click', '#tbl_maintenance li a.maintain_action.ajax', function (event) {
|
|
event.preventDefault();
|
|
const $link = $(this);
|
|
|
|
if ($('.sqlqueryresults').length !== 0) {
|
|
$('.sqlqueryresults').remove();
|
|
}
|
|
|
|
if ($('.result_query').length !== 0) {
|
|
$('.result_query').remove();
|
|
}
|
|
|
|
// variables which stores the common attributes
|
|
let params = $.param({
|
|
'ajax_request': 1,
|
|
'server': CommonParams.get('server'),
|
|
});
|
|
const postData = $link.getPostData();
|
|
if (postData) {
|
|
params += CommonParams.get('arg_separator') + postData;
|
|
}
|
|
|
|
$.post($link.attr('href'), params, function (data) {
|
|
function scrollToTop () {
|
|
$('html, body').animate({ scrollTop: 0 });
|
|
}
|
|
|
|
let $tempDiv;
|
|
if (typeof data !== 'undefined' && data.success === true && data.sql_query !== undefined) {
|
|
ajaxShowMessage(data.message);
|
|
$('<div class=\'sqlqueryresults ajax\'></div>').prependTo('#page_content');
|
|
$('.sqlqueryresults').html(data.sql_query);
|
|
highlightSql($('#page_content'));
|
|
scrollToTop();
|
|
} else if (typeof data !== 'undefined' && data.success === true) {
|
|
$tempDiv = $('<div id=\'temp_div\'></div>');
|
|
$tempDiv.html(data.message);
|
|
const $success = $tempDiv.find('.result_query .alert-success');
|
|
ajaxShowMessage($success);
|
|
$('<div class=\'sqlqueryresults ajax\'></div>').prependTo('#page_content');
|
|
$('.sqlqueryresults').html(data.message);
|
|
highlightSql($('#page_content'));
|
|
$('.sqlqueryresults').children('fieldset,br').remove();
|
|
scrollToTop();
|
|
} else {
|
|
$tempDiv = $('<div id=\'temp_div\'></div>');
|
|
$tempDiv.html(data.error);
|
|
|
|
let $error;
|
|
if ($tempDiv.find('.error code').length !== 0) {
|
|
$error = $tempDiv.find('.error code').addClass('error');
|
|
} else {
|
|
$error = $tempDiv;
|
|
}
|
|
|
|
ajaxShowMessage($error, false);
|
|
}
|
|
}); // end $.post()
|
|
});// end of table maintenance ajax click
|
|
|
|
/**
|
|
* Ajax action for submitting the "Partition Maintenance"
|
|
* Also, asks for confirmation when DROP partition is submitted
|
|
*/
|
|
$(document).on('submit', '#partitionsForm', function (event) {
|
|
event.preventDefault();
|
|
const $form = $(this);
|
|
|
|
function submitPartitionMaintenance () {
|
|
const argsep = CommonParams.get('arg_separator');
|
|
const submitData = $form.serialize() + argsep + 'ajax_request=true' + argsep + 'ajax_page_request=true';
|
|
ajaxShowMessage(window.Messages.strProcessingRequest);
|
|
AJAX.source = $form;
|
|
$.post($form.attr('action'), submitData, AJAX.responseHandler);
|
|
}
|
|
|
|
if ($('#partitionOperationRadioDrop').is(':checked')) {
|
|
$form.confirm(window.Messages.strDropPartitionWarning, $form.attr('action'), function () {
|
|
submitPartitionMaintenance();
|
|
});
|
|
} else if ($('#partitionOperationRadioTruncate').is(':checked')) {
|
|
$form.confirm(window.Messages.strTruncatePartitionWarning, $form.attr('action'), function () {
|
|
submitPartitionMaintenance();
|
|
});
|
|
} else {
|
|
submitPartitionMaintenance();
|
|
}
|
|
});
|
|
|
|
$(document).on('click', '#drop_tbl_anchor.ajax', function (event) {
|
|
event.preventDefault();
|
|
const $link = $(this);
|
|
/**
|
|
* @var {string} question String containing the question to be asked for confirmation
|
|
*/
|
|
let question = window.Messages.strDropTableStrongWarning + ' ';
|
|
question += window.sprintf(window.Messages.strDoYouReally, $link[0].getAttribute('data-query'));
|
|
question += getForeignKeyCheckboxLoader();
|
|
|
|
$(this).confirm(question, $(this).attr('href'), function (url) {
|
|
const $msgbox = ajaxShowMessage(window.Messages.strProcessingRequest);
|
|
|
|
const params = getJsConfirmCommonParam(this, $link.getPostData());
|
|
|
|
$.post(url, params, function (data) {
|
|
if (typeof data !== 'undefined' && data.success === true) {
|
|
ajaxRemoveMessage($msgbox);
|
|
// Table deleted successfully, refresh both the frames
|
|
Navigation.reload();
|
|
Navigation.update(CommonParams.set('table', ''));
|
|
refreshMainContent(CommonParams.get('opendb_url'));
|
|
AJAX.callback = () => {
|
|
ajaxShowMessage(data.message);
|
|
};
|
|
} else {
|
|
ajaxShowMessage(data.error, false);
|
|
}
|
|
});
|
|
}, loadForeignKeyCheckbox);
|
|
}); // end of Drop Table Ajax action
|
|
|
|
$(document).on('click', '#drop_view_anchor.ajax', function (event) {
|
|
event.preventDefault();
|
|
const $link = $(this);
|
|
/**
|
|
* @var {string} question String containing the question to be asked for confirmation
|
|
*/
|
|
let question = window.Messages.strDropTableStrongWarning + ' ';
|
|
question += window.sprintf(
|
|
window.Messages.strDoYouReally,
|
|
'DROP VIEW `' + escapeHtml(CommonParams.get('table') + '`')
|
|
);
|
|
|
|
$(this).confirm(question, $(this).attr('href'), function (url) {
|
|
const $msgbox = ajaxShowMessage(window.Messages.strProcessingRequest);
|
|
const params = getJsConfirmCommonParam(this, $link.getPostData());
|
|
$.post(url, params, function (data) {
|
|
if (typeof data !== 'undefined' && data.success === true) {
|
|
ajaxRemoveMessage($msgbox);
|
|
// Table deleted successfully, refresh both the frames
|
|
Navigation.reload();
|
|
Navigation.update(CommonParams.set('table', ''));
|
|
refreshMainContent(CommonParams.get('opendb_url'));
|
|
AJAX.callback = () => {
|
|
ajaxShowMessage(data.message);
|
|
};
|
|
} else {
|
|
ajaxShowMessage(data.error, false);
|
|
}
|
|
});
|
|
});
|
|
}); // end of Drop View Ajax action
|
|
|
|
$(document).on('click', '#truncate_tbl_anchor.ajax', function (event) {
|
|
event.preventDefault();
|
|
confirmAndPost($(this), 'TRUNCATE');
|
|
});
|
|
|
|
$(document).on('click', '#delete_tbl_anchor.ajax', function (event) {
|
|
event.preventDefault();
|
|
confirmAndPost($(this), 'DELETE');
|
|
});
|
|
}); // end $(document).ready for 'Table operations'
|