File manager - Edit - /home/verseaumee/josholurinfr/wp-content/plugins/essential-addons-elementor/src/js/edit/advanced-data-table.js
Back
class advancedDataTableProEdit { constructor() { eael.hooks.addAction("advancedDataTable.afterInitPanel", "ea", this.afterPanelInit); eael.hooks.addAction("advancedDataTable.panelAction", "ea", this.panelAction); } afterPanelInit(panel, model, view) { setTimeout(() => { let select = panel.el.querySelector('[data-setting="ea_adv_data_table_source_remote_table"]'); if (select != null && select.length == 0) { model.attributes.settings.attributes.ea_adv_data_table_source_remote_tables.forEach((opt, index) => { select[index] = new Option(opt, opt, false, opt == model.attributes.settings.attributes.ea_adv_data_table_source_remote_table); }); } }, 50); panel.el.addEventListener("mousedown", function (e) { if (e.target.classList.contains("elementor-section-title") || e.target.parentNode.classList.contains("elementor-panel-navigation-tab")) { setTimeout(() => { let select = panel.el.querySelector('[data-setting="ea_adv_data_table_source_remote_table"]'); if (select != null && select.length == 0) { model.attributes.settings.attributes.ea_adv_data_table_source_remote_tables.forEach((opt, index) => { select[index] = new Option(opt, opt, false, opt == model.attributes.settings.attributes.ea_adv_data_table_source_remote_table); }); } }, 50); } }); } panelAction(panel, model, view, event) { if (event.target.dataset.event == "ea:advTable:connect") { let button = event.target; button.innerHTML = "Connecting"; jQuery.ajax({ url: localize.ajaxurl, type: "post", data: { action: "connect_remote_db", security: localize.nonce, host: model.attributes.settings.attributes.ea_adv_data_table_source_remote_host, username: model.attributes.settings.attributes.ea_adv_data_table_source_remote_username, password: model.attributes.settings.attributes.ea_adv_data_table_source_remote_password, database: model.attributes.settings.attributes.ea_adv_data_table_source_remote_database, }, success(response) { if (response.connected == true) { button.innerHTML = "Connected"; eael.hooks.doAction( "advancedDataTable.updateFromView", view, { ea_adv_data_table_source_remote_connected: true, ea_adv_data_table_source_remote_tables: response.tables, }, true ); // reload panel panel.content.el.querySelector(".elementor-section-title").click(); panel.content.el.querySelector(".elementor-section-title").click(); let select = panel.el.querySelector('[data-setting="ea_adv_data_table_source_remote_table"]'); select.length = 0; response.tables.forEach((opt, index) => { select[index] = new Option(opt, opt); }); } else { button.innerHTML = "Failed"; } }, error() { button.innerHTML = "Failed"; }, }); setTimeout(() => { button.innerHTML = "Connect"; }, 2000); } else if (event.target.dataset.event == "ea:advTable:disconnect") { eael.hooks.doAction( "advancedDataTable.updateFromView", view, { ea_adv_data_table_source_remote_connected: false, ea_adv_data_table_source_remote_tables: [], }, true ); // reload panel panel.content.el.querySelector(".elementor-section-title").click(); panel.content.el.querySelector(".elementor-section-title").click(); } } } eael.hooks.addAction("editMode.init", "ea", () => { new advancedDataTableProEdit(); });
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings