controls-handlers.js
6 months ago
editor-handler.js
6 months ago
live-editor.js
6 months ago
pa-editor-behavior.js
6 months ago
pa-editor-behavior.min.js
6 months ago
pa-maps-finder.js
6 months ago
premium-cross-cp.js
6 months ago
xdlocalstorage.js
6 months ago
controls-handlers.js
461 lines
| 1 | (function () { |
| 2 | |
| 3 | var $ = jQuery; |
| 4 | |
| 5 | $(window).on('elementor:init', function () { |
| 6 | |
| 7 | if (typeof parent.document === "undefined") { |
| 8 | return false; |
| 9 | } |
| 10 | |
| 11 | parent.document.addEventListener("mousedown", function (e) { |
| 12 | var widgets = parent.document.querySelectorAll(".elementor-element--promotion"); |
| 13 | |
| 14 | if (widgets.length > 0) { |
| 15 | for (var i = 0; i < widgets.length; i++) { |
| 16 | if (widgets[i].contains(e.target)) { |
| 17 | var dialog = parent.document.querySelector("#elementor-element--promotion__dialog"); |
| 18 | var icon = widgets[i].querySelector(".icon > i"); |
| 19 | |
| 20 | if (icon.classList.toString().indexOf("pa-pro") >= 0) { |
| 21 | |
| 22 | var proElement = icon.classList[0].replace('pa-pro-', ''); |
| 23 | |
| 24 | e.stopImmediatePropagation(); |
| 25 | |
| 26 | if (dialog.querySelector(".papro-dialog-buttons")) { |
| 27 | dialog.querySelector('.papro-dialog-buttons').remove(); |
| 28 | } |
| 29 | |
| 30 | dialog.querySelector(".dialog-buttons-action").style.display = "none"; |
| 31 | // if (dialog.querySelector(".papro-dialog-buttons") === null) { |
| 32 | |
| 33 | var button = document.createElement("a"); |
| 34 | var buttonText = document.createTextNode("Upgrade Premium Addons (Save 30%)"); |
| 35 | |
| 36 | button.setAttribute("href", PremiumSettings.upgrade_link + '&utm_source=panel-' + proElement); |
| 37 | button.setAttribute("target", "_blank"); |
| 38 | button.classList.add( |
| 39 | "dialog-button", |
| 40 | "dialog-action", |
| 41 | "dialog-buttons-action", |
| 42 | "elementor-button", |
| 43 | "go-pro", |
| 44 | "elementor-button-success", |
| 45 | "papro-dialog-buttons" |
| 46 | ); |
| 47 | button.appendChild(buttonText); |
| 48 | |
| 49 | dialog.querySelector(".dialog-buttons-action").insertAdjacentHTML("afterend", button.outerHTML); |
| 50 | // } else { |
| 51 | // dialog.querySelector(".papro-dialog-buttons").style.display = ""; |
| 52 | // } |
| 53 | } else { |
| 54 | dialog.querySelector(".dialog-buttons-action").style.display = ""; |
| 55 | |
| 56 | if (dialog.querySelector(".papro-dialog-buttons") !== null) { |
| 57 | dialog.querySelector(".papro-dialog-buttons").style.display = "none"; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | break; |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 | }); |
| 66 | |
| 67 | }); |
| 68 | |
| 69 | var pinterestToken = null; |
| 70 | |
| 71 | elementor.channels.editor.on('change', function (view) { |
| 72 | var changed = view.elementSettingsModel.changed; |
| 73 | |
| 74 | if (changed.access_token) { |
| 75 | if (changed.access_token.startsWith('pina_')) |
| 76 | pinterestToken = changed.access_token; |
| 77 | } |
| 78 | }); |
| 79 | |
| 80 | function onSectionActivate(sectionName) { |
| 81 | |
| 82 | if ('access_credentials_section' === sectionName) { |
| 83 | |
| 84 | setTimeout(function () { |
| 85 | |
| 86 | var accessToken = jQuery('.elementor-control-access_token textarea').val(); |
| 87 | |
| 88 | pinterestToken = accessToken; |
| 89 | |
| 90 | }, 100); |
| 91 | |
| 92 | } |
| 93 | |
| 94 | |
| 95 | } |
| 96 | |
| 97 | |
| 98 | elementor.channels.editor.on('section:activated', onSectionActivate); |
| 99 | |
| 100 | var selectOptions = elementor.modules.controls.Select2.extend({ |
| 101 | |
| 102 | isUpdated: false, |
| 103 | |
| 104 | onReady: function () { |
| 105 | |
| 106 | var options = (0 === this.model.get('options').length); |
| 107 | |
| 108 | if (this.container && "widget" === this.container.type && 'board_id' === this.model.get('name')) { |
| 109 | if (options) { |
| 110 | |
| 111 | var _this = this; |
| 112 | |
| 113 | if (pinterestToken) { |
| 114 | |
| 115 | jQuery.ajax({ |
| 116 | type: "GET", |
| 117 | url: PremiumSettings.ajaxurl, |
| 118 | dataType: "JSON", |
| 119 | data: { |
| 120 | action: "get_pinterest_boards", |
| 121 | nonce: PremiumSettings.nonce, |
| 122 | token: pinterestToken |
| 123 | }, |
| 124 | success: function (res) { |
| 125 | |
| 126 | if (res.data) { |
| 127 | |
| 128 | var options = JSON.parse(res.data); |
| 129 | |
| 130 | _this.model.set("options", options); |
| 131 | |
| 132 | _this.isUpdated = false; |
| 133 | |
| 134 | _this.render(); |
| 135 | |
| 136 | } |
| 137 | }, |
| 138 | error: function (err) { |
| 139 | console.log(err); |
| 140 | } |
| 141 | }); |
| 142 | } |
| 143 | |
| 144 | elementor.channels.editor.on('change', function (view) { |
| 145 | var changed = view.elementSettingsModel.changed; |
| 146 | |
| 147 | if (undefined !== changed.board_id && !_this.isUpdated) { |
| 148 | _this.isUpdated = true; |
| 149 | } |
| 150 | }); |
| 151 | |
| 152 | } |
| 153 | } |
| 154 | }, |
| 155 | |
| 156 | onBeforeRender: function () { |
| 157 | |
| 158 | if (this.container && ("section" === this.container.type || "container" === this.container.type)) { |
| 159 | var widgetObj = elementor.widgetsCache || elementor.config.widgets, |
| 160 | optionsToUpdate = {}; |
| 161 | |
| 162 | var _this = this; |
| 163 | this.container.children.forEach(function (child) { |
| 164 | |
| 165 | if ("container" === _this.container.type) { |
| 166 | |
| 167 | if (child.view.$childViewContainer) { |
| 168 | getInnerWidgets(child); |
| 169 | } else { |
| 170 | //Get Flex Container widgets when no columns are added. |
| 171 | var name = child.view.$el.data("widget_type").split('.')[0]; |
| 172 | |
| 173 | if ('undefined' !== typeof widgetObj[name]) { |
| 174 | optionsToUpdate[".elementor-widget-" + widgetObj[name].widget_type + " .elementor-widget-container"] = widgetObj[name].title; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | } else if ("section" === _this.container.type) { |
| 179 | getInnerWidgets(child); |
| 180 | } |
| 181 | |
| 182 | }); |
| 183 | |
| 184 | function getInnerWidgets(child) { |
| 185 | child.view.$childViewContainer.children("[data-widget_type]").each(function (index, widget) { |
| 186 | var name = $(widget).data("widget_type").split('.')[0]; |
| 187 | |
| 188 | if ('undefined' !== typeof widgetObj[name]) { |
| 189 | optionsToUpdate[".elementor-widget-" + widgetObj[name].widget_type + " .elementor-widget-container"] = widgetObj[name].title; |
| 190 | } |
| 191 | }); |
| 192 | |
| 193 | } |
| 194 | |
| 195 | this.model.set("options", optionsToUpdate); |
| 196 | } |
| 197 | }, |
| 198 | }); |
| 199 | |
| 200 | elementor.addControlView("premium-select", selectOptions); |
| 201 | |
| 202 | var filterOptions = elementor.modules.controls.Select2.extend({ |
| 203 | |
| 204 | isUpdated: false, |
| 205 | |
| 206 | onReady: function () { |
| 207 | var self = this, |
| 208 | type = self.model.get('source') || self.options.elementSettingsModel.attributes.post_type_filter; |
| 209 | |
| 210 | var options = (0 === this.model.get('options').length); |
| 211 | |
| 212 | if (options) { |
| 213 | self.fetchData(type); |
| 214 | } |
| 215 | |
| 216 | elementor.channels.editor.on('change', function (view) { |
| 217 | var changed = view.elementSettingsModel.changed; |
| 218 | |
| 219 | if (undefined !== changed.post_type_filter && 'post' !== changed.post_type_filter && !self.isUpdated) { |
| 220 | self.isUpdated = true; |
| 221 | self.fetchData(changed.post_type_filter); |
| 222 | } |
| 223 | |
| 224 | //ToDO: Test with repeater items controls |
| 225 | if (view.$el.hasClass('premium-live-temp-label')) { |
| 226 | // hide the title input if the control value isn't empty |
| 227 | if (undefined !== changed[view.model.get('name')] && '' !== changed[view.model.get('name')]) { |
| 228 | $('.premium-live-temp-title').addClass('control-hidden'); |
| 229 | } |
| 230 | } |
| 231 | }); |
| 232 | }, |
| 233 | |
| 234 | fetchData: function (type) { |
| 235 | |
| 236 | var self = this; |
| 237 | $.ajax({ |
| 238 | url: PremiumSettings.ajaxurl, |
| 239 | dataType: 'json', |
| 240 | type: 'POST', |
| 241 | data: { |
| 242 | nonce: PremiumSettings.nonce, |
| 243 | action: 'premium_update_filter', |
| 244 | post_type: 'object' === typeof type ? type : [type] |
| 245 | }, |
| 246 | success: function (res) { |
| 247 | |
| 248 | self.updateFilterOptions(JSON.parse(res.data)); |
| 249 | self.isUpdated = false; |
| 250 | |
| 251 | self.render(); |
| 252 | }, |
| 253 | error: function (err) { |
| 254 | console.log(err); |
| 255 | }, |
| 256 | }); |
| 257 | }, |
| 258 | |
| 259 | updateFilterOptions: function (options) { |
| 260 | this.model.set("options", options); |
| 261 | }, |
| 262 | |
| 263 | onBeforeDestroy: function () { |
| 264 | if (this.ui.select.data('select2')) { |
| 265 | // this.ui.select.select2('destroy'); |
| 266 | } |
| 267 | |
| 268 | this.$el.remove(); |
| 269 | } |
| 270 | }); |
| 271 | |
| 272 | elementor.addControlView("premium-post-filter", filterOptions); |
| 273 | |
| 274 | var taxOptions = elementor.modules.controls.Select.extend({ |
| 275 | |
| 276 | isUpdated: false, |
| 277 | |
| 278 | onReady: function () { |
| 279 | var self = this, |
| 280 | type = self.options.elementSettingsModel.attributes.post_type_filter, |
| 281 | options = (0 === this.model.get('options').length); |
| 282 | |
| 283 | if (options) { |
| 284 | self.fetchData(type); |
| 285 | } |
| 286 | |
| 287 | elementor.channels.editor.on('change', function (view) { |
| 288 | var changed = view.elementSettingsModel.changed; |
| 289 | |
| 290 | if (undefined !== changed.post_type_filter && !self.isUpdated) { |
| 291 | self.isUpdated = true; |
| 292 | self.fetchData(changed.post_type_filter); |
| 293 | } |
| 294 | }); |
| 295 | }, |
| 296 | |
| 297 | fetchData: function (type) { |
| 298 | var self = this; |
| 299 | $.ajax({ |
| 300 | url: PremiumSettings.ajaxurl, |
| 301 | dataType: 'json', |
| 302 | type: 'POST', |
| 303 | data: { |
| 304 | nonce: PremiumSettings.nonce, |
| 305 | action: 'premium_update_tax', |
| 306 | post_type: type |
| 307 | }, |
| 308 | success: function (res) { |
| 309 | |
| 310 | var options = JSON.parse(res.data); |
| 311 | self.updateTaxOptions(options); |
| 312 | self.isUpdated = false; |
| 313 | |
| 314 | if (0 !== options.length) { |
| 315 | |
| 316 | self.$el.removeClass('elementor-hidden-control'); |
| 317 | |
| 318 | $('.premium-live-temp-title').addClass('control-hidden'); |
| 319 | |
| 320 | // var $tax = Object.keys(options); |
| 321 | // self.container.settings.setExternalChange({ 'filter_tabs_type': $tax[0] }); |
| 322 | self.container.render(); |
| 323 | self.render(); |
| 324 | } else { |
| 325 | self.$el.addClass('elementor-hidden-control'); |
| 326 | |
| 327 | $('.premium-live-temp-title.control-hidden').removeClass('control-hidden'); |
| 328 | } |
| 329 | }, |
| 330 | error: function (err) { |
| 331 | console.log(err); |
| 332 | }, |
| 333 | }); |
| 334 | }, |
| 335 | |
| 336 | updateTaxOptions: function (options) { |
| 337 | |
| 338 | this.model.set("options", options); |
| 339 | |
| 340 | }, |
| 341 | }); |
| 342 | |
| 343 | elementor.addControlView("premium-tax-filter", taxOptions); |
| 344 | |
| 345 | var acfOptions = elementor.modules.controls.Select2.extend({ |
| 346 | |
| 347 | isUpdated: false, |
| 348 | |
| 349 | onReady: function () { |
| 350 | var self = this; |
| 351 | |
| 352 | if (!self.isUpdated) { |
| 353 | self.fetchData(); |
| 354 | } |
| 355 | }, |
| 356 | |
| 357 | fetchData: function () { |
| 358 | var self = this; |
| 359 | |
| 360 | $.ajax({ |
| 361 | url: PremiumSettings.ajaxurl, |
| 362 | dataType: 'json', |
| 363 | type: 'POST', |
| 364 | data: { |
| 365 | nonce: PremiumSettings.nonce, |
| 366 | action: 'pa_acf_options', |
| 367 | query_options: self.model.get('query_options'), |
| 368 | }, |
| 369 | success: function (res) { |
| 370 | self.isUpdated = true; |
| 371 | self.updateAcfOptions(JSON.parse(res.data)); |
| 372 | self.render(); |
| 373 | }, |
| 374 | error: function (err) { |
| 375 | console.log(err); |
| 376 | }, |
| 377 | }); |
| 378 | }, |
| 379 | |
| 380 | updateAcfOptions: function (options) { |
| 381 | this.model.set("options", options); |
| 382 | }, |
| 383 | |
| 384 | onBeforeDestroy: function () { |
| 385 | if (this.ui.select.data('select2')) { |
| 386 | this.ui.select.select2('destroy'); |
| 387 | } |
| 388 | |
| 389 | this.$el.remove(); |
| 390 | } |
| 391 | }); |
| 392 | |
| 393 | elementor.addControlView("premium-acf-selector", acfOptions); |
| 394 | |
| 395 | var onNavigatorInit = function () { |
| 396 | |
| 397 | elementor.navigator.indicators.paDisConditions = { |
| 398 | icon: 'preview-medium', |
| 399 | settingKeys: ['pa_display_conditions_switcher'], |
| 400 | title: wp.i18n.__('Display Conditions', 'premium-addons-for-elementor'), |
| 401 | section: 'section_pa_display_conditions' |
| 402 | }; |
| 403 | } |
| 404 | |
| 405 | elementor.on('navigator:init', onNavigatorInit); |
| 406 | |
| 407 | |
| 408 | var e = elementor.modules.controls.BaseData, |
| 409 | imageChoose = e.extend({ |
| 410 | ui: function () { |
| 411 | var t = e.prototype.ui.apply(this, arguments); |
| 412 | return t.inputs = '[type="radio"]', t |
| 413 | }, |
| 414 | events: function () { |
| 415 | return _.extend(e.prototype.events.apply(this, arguments), { |
| 416 | "mousedown label": "onMouseDownLabel", |
| 417 | "click @ui.inputs": "onClickInput", |
| 418 | "change @ui.inputs": "onBaseInputChange" |
| 419 | }) |
| 420 | }, |
| 421 | |
| 422 | onMouseDownLabel: function (e) { |
| 423 | var t = this.$(e.currentTarget), |
| 424 | o = this.$("#" + t.attr("for")); |
| 425 | |
| 426 | $('.elementor-control-form_insert .elementor-button').css('background-color', '#252c59'); |
| 427 | o.data("checked", o.prop("checked")), this.ui.inputs.removeClass("checked"), o.data("checked", o.addClass("checked")) |
| 428 | }, |
| 429 | |
| 430 | onClickInput: function (e) { |
| 431 | if (this.model.get("toggle")) { |
| 432 | var t = this.$(e.currentTarget); |
| 433 | t.data("checked") && t.prop("checked", !1).trigger("change") |
| 434 | } |
| 435 | }, |
| 436 | |
| 437 | onRender: function () { |
| 438 | e.prototype.onRender.apply(this, arguments); |
| 439 | var t = this.getControlValue(); |
| 440 | t && (this.ui.inputs.filter('[value="' + t + '"]').prop("checked", !0), this.ui.inputs.filter('[value="' + t + '"]').addClass("checked")) |
| 441 | }, |
| 442 | onReady: function () { |
| 443 | if ('premium_gdivider_defaults' === this.model.attributes.name) { |
| 444 | const choicesContainer = $(this.el).find('.elementor-image-choices')[0]; |
| 445 | new PerfectScrollbar(choicesContainer, { |
| 446 | suppressScrollX: true, |
| 447 | }); |
| 448 | |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | }, { |
| 453 | onPasteStyle: function (e, t) { |
| 454 | return "" === t || undefined !== e.options[t] |
| 455 | } |
| 456 | }); |
| 457 | |
| 458 | elementor.addControlView("premium-image-choose", imageChoose) |
| 459 | |
| 460 | })(jQuery); |
| 461 |