File: //proc/self/cwd/wp-content/plugins/premium-addons-for-elementor/admin/assets/js/pa-dashboard.js
(function ($) {
var $noticeWrap = $(".pa-notice-wrap"),
notice = $noticeWrap.data('notice');
var adminNotices = {
'radius': 'radius_notice',
'halloween24': 'halloween24_hide',
};
if (undefined !== notice) {
$noticeWrap.find('.pa-notice-reset').on(
"click",
function () {
$noticeWrap.css('display', 'none');
$.ajax(
{
url: ajaxurl,
type: 'POST',
data: {
action: 'pa_reset_admin_notice',
notice: $noticeWrap.data('notice'),
nonce: PaNoticeSettings.nonce,
}
}
);
}
);
}
$(".pa-notice-close").on(
"click",
function () {
var noticeID = $(this).data('notice');
if (noticeID) {
$(this).closest('.pa-new-feature-notice').remove();
$.ajax(
{
url: ajaxurl,
type: 'POST',
data: {
action: 'pa_dismiss_admin_notice',
notice: adminNotices[noticeID],
nonce: PaNoticeSettings.nonce,
},
success: function (res) {
console.log(res);
},
error: function (err) {
console.log(err);
}
}
);
}
}
);
$(function () {
var $document = $(document),
$deactivationPopUp = $('.pa-deactivation-popup');
if ($deactivationPopUp.length < 1)
return;
$(document).on('click', 'tr[data-slug="premium-addons-for-elementor"] .deactivate a', function (event) {
event.preventDefault();
$deactivationPopUp.removeClass('hidden');
});
$document.on('click', '.pa-deactivation-popup .close, .pa-deactivation-popup .dashicons, .pa-deactivation-popup', function (event) {
if (this === event.target) {
$deactivationPopUp.addClass('hidden');
}
});
$document.on('change', '.pa-deactivation-popup input[name][type="radio"]', function () {
var $this = $(this);
var value = $this.val(),
name = $this.attr('name');
value = typeof value === 'string' && value !== '' ? value : undefined;
name = typeof name === 'string' && name !== '' ? name : undefined;
if (value === undefined || name === undefined) {
return;
}
var $targetedMessage = $('p[data-' + name + '="' + value + '"]'),
$relatedSections = $this.parents('.body').find('section[data-' + name + ']'),
$relatedMessages = $this.parents('.body').find('p[data-' + name + ']:not(p[data-' + name + '="' + value + '"])');
$relatedMessages.addClass('hidden');
$targetedMessage.removeClass('hidden');
$relatedSections.removeClass('hidden');
});
$document.on('keyup', '.pa-deactivation-popup input[name], .pa-deactivation-popup textarea[name]', function (event) {
var allowed = ['Enter', 'Escape'];
if (!allowed.includes(event.key)) {
return;
}
event.preventDefault();
event.stopPropagation();
if (event.key === allowed[0]) {
$('.pa-deactivation-popup [data-action="deactivation"]').click();
} else if (event.key === allowed[1]) {
$('.pa-deactivation-popup .close').click();
}
});
$document.on('click', '.pa-deactivation-popup button[data-action]', function (event) {
var $this = $(this),
$optionsWrappers = $this.parents('.body').find('.options-wrap'),
$toggle = $optionsWrappers.find('input[name][type="checkbox"]:checked, input[name][type="radio"]:checked'),
$fields = $optionsWrappers.find('input[name], textarea[name]').not('input[type="checkbox"], input[type="radio"]');
var data = {
action: $this.data('action')
};
data.action = typeof data.action === 'string' && data.action !== '' ? data.action : undefined;
if ($toggle.length > 0) {
$toggle.each(function () {
var $this = $(this),
value = $this.val(),
key = $this.attr('name');
if (typeof value === 'string' && value !== '' && typeof key === 'string' && key !== '') {
data[key] = value;
}
});
}
if ($fields.length > 0) {
$fields.each(function () {
var $this = $(this),
value = $this.val(),
key = $this.attr('name');
if (typeof value === 'string' && value !== '' && typeof key === 'string' && key !== '') {
data[key] = value;
}
})
}
$.ajax({
url: ajaxurl,
method: 'POST',
data: {
action: 'pa_handle_feedback_action',
data: data
},
beforeSend: function () {
$this.prop('disabled', true);
},
error: function (error) {
console.log(error);
},
complete: function (res) {
$deactivationPopUp.addClass('hidden');
$this.prop('disabled', false);
console.log(res);
var $deactivateLink = $('tr[data-slug="premium-addons-for-elementor"] .deactivate a');
if ($deactivateLink.length > 0) {
var deactivateUrl = $deactivateLink.attr('href');
if (typeof deactivateUrl === 'string' && deactivateUrl !== '') {
window.location.href = deactivateUrl;
} else {
window.location.reload();
}
}
}
});
});
});
})(jQuery);