File: /var/www/karjerosdiena.lt/wp-content/plugins/wp-jobsearch/admin/js/admin.js
(function ($) {
'use strict';
/**
* All of the code for your admin-facing JavaScript source
* should reside in this file.
*
* Note: It has been assumed you will write jQuery code here, so the
* $ function reference has been prepared for usage within the scope
* of this function.
*
* This enables you to define handlers, for when the DOM is ready:
*
* $(function() {
*
* });
*
* When the window is loaded:
*
* $( window ).load(function() {
*
* });
*
* ...and/or other possibilities.
*
* Ideally, it is not considered best practise to attach more than a
* single DOM-ready or window-load handler for a particular page.
* Although scripts in the WordPress core, Plugins and Themes may be
* practising this, we should strive to set a better example in our own work.
*/
if ($(".jobsearch-bk-sortable").length !== 0) {
$(".jobsearch-bk-sortable").sortable({handle: '.drag-point'});
}
$(document).ready(function () {
if(jQuery('#adminmenu #toplevel_page_wp_jobsearch_admin_menu .wp-first-item').length>0){
jQuery('#adminmenu #toplevel_page_wp_jobsearch_admin_menu .wp-first-item').hide();
}
$('.jobsearch-bk-color').wpColorPicker();
// var all_doc_a = jQuery('body').find('a');
// all_doc_a.each(function (index, element) {
// var _this_a = jQuery(this);
// if (typeof _this_a.attr('download') !== 'undefined') {
// _this_a.attr('oncontextmenu', 'return false');
// element.onclick = function(event) {
// if ((event.button == 0 && event.ctrlKey)) {
// event.preventDefault();
// event.stopPropagation();
// return false;
// }
// };
// }
// });
});
jQuery(document).on("click", ".jobsearch-upload-media", function () {
var id = $(this).attr("name");
var custom_uploader = wp.media({
title: 'Select File',
button: {
text: 'Add File'
},
multiple: false
})
.on('select', function () {
var attachment = custom_uploader.state().get('selection').first().toJSON();
$('#' + id).val(attachment.url);
$('#' + id + '-img').attr('src', attachment.url);
$('#' + id + '-box').show();
}).open();
});
jQuery(document).on("click", ".jobsearch-rem-media-b", function () {
var id = $(this).data('id');
$('#' + id).val('');
$('#' + id + '-img').attr('src', '');
$('#' + id + '-box').hide();
});
jQuery(document).on("click", ".jobsearch-upload-file", function () {
var id = $(this).attr("name");
var custom_uploader = wp.media({
title: 'Select File',
button: {
text: 'Add File'
},
multiple: false
})
.on('select', function () {
var attachment = custom_uploader.state().get('selection').first().toJSON();
$('#' + id).val(attachment.url);
}).open();
});
$(document).on('click', '.onoff-button input[type="checkbox"]', function () {
if ($(this).is(':checked')) {
$(this).parents('.onoff-button').find('input[type="hidden"]').attr('value', 'on');
} else {
$(this).parents('.onoff-button').find('input[type="hidden"]').attr('value', 'off');
}
});
if(jQuery('.jobsearch_field_job_filled_element').length>0){
jQuery(document).on('change', '.jobsearch_field_job_filled_checkbox .onoff-button input[type="checkbox"]', function (e) {
if ($(this).is(':checked')) {
jQuery('.jobsearch_field_job_filled_element').slideDown();
} else {
jQuery('.jobsearch_field_job_filled_element').slideUp();
}
});
}
$(document).on('click', '.multi-list-header .list-open', function () {
var _this = $(this);
var _this_visible = _this.attr('data-visible');
var _this_id = _this.attr('data-id');
if (_this_visible == 'open') {
$('#list-content-' + _this_id).slideUp();
_this.attr('data-visible', 'close');
_this.find('i').attr('class', 'dashicons dashicons-arrow-down-alt2');
} else {
$('#list-content-' + _this_id).slideDown();
_this.attr('data-visible', 'open');
_this.find('i').attr('class', 'dashicons dashicons-arrow-up-alt2');
}
});
$(document).on('click', '.multi-list-header .list-delete', function () {
var _this = $(this);
var _this_id = _this.attr('data-id');
var r = confirm(jobsearch_plugin_vars.are_you_sure);
if (r == true) {
$('#list-' + _this_id).remove();
} else {
return false;
}
});
$(document).on('click', '.jobsearch-bk-multi-fields .open-add-box', function () {
var _this = $(this);
var _this_parent = $(this).parents('.multi-list-add');
_this_parent.next('.multi-list-add-box').slideDown();
_this_parent.hide();
});
$(document).on('click', '.multi-list-add-box .close-box', function () {
var _this = $(this);
var _this_parent = $(this).parents('.multi-list-add-box');
var _this_box_btn = _this_parent.prev('.multi-list-add');
_this_parent.slideUp(400, function () {
_this_box_btn.show();
});
});
$(document).on('click', '.multi-list-update > a', function () {
var _this_attr = $(this).parents('li').find('.list-open');
$(this).parents('.multi-list-content').slideUp();
_this_attr.attr('data-visible', 'close');
_this_attr.find('i').attr('class', 'dashicons dashicons-arrow-down-alt2');
});
$(document).on('click', '#jobsearch-add-speech', function () {
var _this = $(this);
var _this_rand = _this.data('id');
var loader_img = jobsearch_plugin_vars.plugin_url + 'images/ajax-loader.gif';
var ajax_url = jobsearch_plugin_vars.ajax_url;
var this_loader = $(this).next('.ajax-loader');
var speech_title = $('#speech_title');
var speech_image = $('#speech_image_' + _this_rand);
var speech_url = $('#speech_url');
var speech_ogg_url = $('#speech_ogg_url');
var speech_buy_url = $('#speech_buy_url');
var speech_lyrics = $('#speech_lyrics');
var speech_download = $('#speech_download');
if (speech_title.val() != '') {
if (!_this.hasClass('ajax-disabled')) {
this_loader.html('<img alt="" src="' + loader_img + '">');
var request = $.ajax({
url: ajax_url,
method: "POST",
data: {
speech_title: speech_title.val(),
speech_image: speech_image.val(),
speech_mp3: speech_url.val(),
speech_ogg: speech_ogg_url.val(),
speech_buy_url: speech_buy_url.val(),
speech_lyrics: speech_lyrics.val(),
speech_download: speech_download.val(),
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_add_speech',
},
dataType: "json"
});
request.done(function (msg) {
$("#jobsearch-speeches-con").append(msg.html);
speech_title.val('');
speech_image.val('');
$('#speech_image_' + _this_rand + '-box').hide();
speech_url.val('');
speech_ogg_url.val('');
speech_buy_url.val('');
speech_lyrics.val('');
speech_download.val('');
this_loader.html('');
_this.removeClass('ajax-disabled');
});
request.fail(function (jqXHR, textStatus) {
this_loader.html('');
_this.removeClass('ajax-disabled');
});
_this.addClass('ajax-disabled');
}
} else {
alert(jobsearch_plugin_vars.require_fields);
return false;
}
});
$(document).on('click', '#jobsearch-add-exfield', function () {
var _this = $(this);
var _this_rand = _this.data('id');
var loader_img = jobsearch_plugin_vars.plugin_url + 'images/ajax-loader.gif';
var ajax_url = jobsearch_plugin_vars.ajax_url;
var this_loader = $(this).next('.ajax-loader');
var exfield_title = $('#field_title');
var exfield_description = $('#description');
if (exfield_title.val() != '') {
if (!_this.hasClass('ajax-disabled')) {
this_loader.html('<img alt="" src="' + loader_img + '">');
var request = $.ajax({
url: ajax_url,
method: "POST",
data: {
field_title: exfield_title.val(),
field_description: exfield_description.val(),
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_add_doctor_exfield',
},
dataType: "json"
});
request.done(function (msg) {
$("#jobsearch-exfields-con").append(msg.html);
exfield_title.val('');
exfield_description.val('');
this_loader.html('');
_this.removeClass('ajax-disabled');
});
request.fail(function (jqXHR, textStatus) {
this_loader.html('');
_this.removeClass('ajax-disabled');
});
_this.addClass('ajax-disabled');
}
} else {
alert(jobsearch_plugin_vars.require_fields);
return false;
}
});
$(document).on('click', '#jobsearch-add-skill-exfield', function () {
var _this = $(this);
var _this_rand = _this.data('id');
var loader_img = jobsearch_plugin_vars.plugin_url + 'images/ajax-loader.gif';
var ajax_url = jobsearch_plugin_vars.ajax_url;
var this_loader = $(this).next('.ajax-loader');
var exskill_title = $('#skill_title');
var exskill_percentage = $('#skill_percentage');
if (exskill_title.val() != '') {
if (!_this.hasClass('ajax-disabled')) {
this_loader.html('<img alt="" src="' + loader_img + '">');
var request = $.ajax({
url: ajax_url,
method: "POST",
data: {
skill_title: exskill_title.val(),
skill_percentage: exskill_percentage.val(),
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_add_project_skillfield',
},
dataType: "json"
});
request.done(function (msg) {
$("#jobsearch-skillfields-con").append(msg.html);
exskill_title.val('');
exskill_percentage.val('');
this_loader.html('');
_this.removeClass('ajax-disabled');
});
request.fail(function (jqXHR, textStatus) {
this_loader.html('');
_this.removeClass('ajax-disabled');
});
_this.addClass('ajax-disabled');
}
} else {
alert(jobsearch_plugin_vars.require_fields);
return false;
}
});
$(document).on('click', '#jobsearch-add-contribution-exfield', function () {
var _this = $(this);
var _this_rand = _this.data('id');
var loader_img = jobsearch_plugin_vars.plugin_url + 'images/ajax-loader.gif';
var ajax_url = jobsearch_plugin_vars.ajax_url;
var this_loader = $(this).next('.ajax-loader');
var excontribution_title = $('#contribution_title');
var excontribution_percentage = $('#contribution_percentage');
if (excontribution_title.val() != '') {
if (!_this.hasClass('ajax-disabled')) {
this_loader.html('<img alt="" src="' + loader_img + '">');
var request = $.ajax({
url: ajax_url,
method: "POST",
data: {
contribution_title: excontribution_title.val(),
contribution_percentage: excontribution_percentage.val(),
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_add_doctor_contributionfield',
},
dataType: "json"
});
request.done(function (msg) {
$("#jobsearch-contributionfields-con").append(msg.html);
excontribution_title.val('');
excontribution_percentage.val('');
this_loader.html('');
_this.removeClass('ajax-disabled');
});
request.fail(function (jqXHR, textStatus) {
this_loader.html('');
_this.removeClass('ajax-disabled');
});
_this.addClass('ajax-disabled');
}
} else {
alert(jobsearch_plugin_vars.require_fields);
return false;
}
});
$(document).on('click', '#jobsearch-add-extra-exfield', function () {
var _this = $(this);
var _this_rand = _this.data('id');
var loader_img = jobsearch_plugin_vars.plugin_url + 'images/ajax-loader.gif';
var ajax_url = jobsearch_plugin_vars.ajax_url;
var this_loader = $(this).next('.ajax-loader');
var exextra_title = $('#extra_title');
var exextra_value = $('#extra_value');
if (exextra_title.val() != '') {
if (!_this.hasClass('ajax-disabled')) {
this_loader.html('<img alt="" src="' + loader_img + '">');
var request = $.ajax({
url: ajax_url,
method: "POST",
data: {
extra_title: exextra_title.val(),
extra_value: exextra_value.val(),
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_add_extrafield',
},
dataType: "json"
});
request.done(function (msg) {
$("#jobsearch-extrafields-con").append(msg.html);
exextra_title.val('');
exextra_value.val('');
this_loader.html('');
_this.removeClass('ajax-disabled');
});
request.fail(function (jqXHR, textStatus) {
this_loader.html('');
_this.removeClass('ajax-disabled');
});
_this.addClass('ajax-disabled');
}
} else {
alert(jobsearch_plugin_vars.require_fields);
return false;
}
});
$(document).on('click', '#jobsearch-add-task-exfield', function () {
var _this = $(this);
var _this_rand = _this.data('id');
var loader_img = jobsearch_plugin_vars.plugin_url + 'images/ajax-loader.gif';
var ajax_url = jobsearch_plugin_vars.ajax_url;
var this_loader = $(this).next('.ajax-loader');
var extask_title = $('#task_title');
var extask_description = $('#task_description');
if (extask_title.val() != '') {
if (!_this.hasClass('ajax-disabled')) {
this_loader.html('<img alt="" src="' + loader_img + '">');
var request = $.ajax({
url: ajax_url,
method: "POST",
data: {
task_title: extask_title.val(),
task_description: extask_description.val(),
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_add_project_taskfield',
},
dataType: "json"
});
request.done(function (msg) {
$("#jobsearch-taskfields-con").append(msg.html);
extask_title.val('');
extask_description.val('');
this_loader.html('');
_this.removeClass('ajax-disabled');
});
request.fail(function (jqXHR, textStatus) {
this_loader.html('');
_this.removeClass('ajax-disabled');
});
_this.addClass('ajax-disabled');
}
} else {
alert(jobsearch_plugin_vars.require_fields);
return false;
}
});
$(document).on('click', '.jobsearch-gallery-images .update-gal', function () {
var this_id = $(this).data('id');
$('#edit_gal_form' + this_id).show();
});
$(document).on('click', '.jobsearch-gallery-images .close-gal', function () {
var this_id = $(this).data('id');
$('#edit_gal_form' + this_id).hide();
});
})(jQuery);
//
var appsListMenuIcon = jQuery('#toplevel_page_jobsearch-applicants-list').find('.wp-menu-image.dashicons-admin-generic');
appsListMenuIcon.removeClass('dashicons-admin-generic').addClass('dashicons-pressthis');
//
var sectorsListMenuIcon = jQuery('#toplevel_page_edit-tags-taxonomy-sector').find('.wp-menu-image.dashicons-admin-generic');
sectorsListMenuIcon.removeClass('dashicons-admin-generic').addClass('dashicons-networking');
//
if (jQuery('.overall-site-aplicnts').length > 0) {
var loding_strng_mkup = '<i class="fa fa-refresh fa-spin"></i>';
jQuery('.overall-site-aplicnts').html(loding_strng_mkup);
jQuery('.overall-site-shaplicnts').html(loding_strng_mkup);
jQuery('.overall-site-rejaplicnts').html(loding_strng_mkup);
}
//
function jobsearch_menu_view_select(this_val, id) {
if (this_val == 'image-text') {
jQuery('#field-image-title-1-' + id).show();
jQuery('#field-image-paragragh-' + id).show();
jQuery('#field-image-title-2-' + id).show();
jQuery('#field-image-img-' + id).show();
jQuery('#fields-video-' + id).hide();
} else {
jQuery('#field-image-title-1-' + id).hide();
jQuery('#field-image-paragragh-' + id).hide();
jQuery('#field-image-title-2-' + id).hide();
jQuery('#field-image-img-' + id).hide();
jQuery('#fields-video-' + id).show();
}
}
jQuery(function ($) {
// Product gallery file uploads
var gallery_frame;
jQuery('.jobsearch_add_gallery').on('click', 'input', function (event) {
var $el = $(this);
get_id = $el.parent('.jobsearch_add_gallery').data('id');
rand_id = $el.parent('.jobsearch_add_gallery').data('rand_id');
gallery_images = $('#gallery_container_' + rand_id + ' ul.jobsearch-gallery-images');
jobsearch_field_gallery_id = $('#gallery_container_' + rand_id).data("ecid");
event.preventDefault();
// If the media frame already exists, reopen it.
if (gallery_frame) {
gallery_frame.open();
return;
}
// Create the media frame.
gallery_frame = wp.media({
title: "Select Image",
multiple: true,
library: {type: 'image'},
button: {text: 'Add Gallery Image'}
});
// When an image is selected, run a callback.
gallery_frame.on('select', function () {
var selection = gallery_frame.state().get('selection');
selection.map(function (attachment) {
attachment = attachment.toJSON();
if (attachment.type == 'image') {
var gallery_url = attachment.url;
var attachment_id = attachment.id;
}
if (attachment.url) {
attachment_ids = Math.floor((Math.random() * 965674) + 1);
$('#gallery_container_' + rand_id + ' ul.jobsearch-gallery-images').append('\
<li class="image" data-attachment_id="' + attachment_ids + '">\
<div class="gal-thumb"><img src="' + gallery_url + '" width="150" alt="" /></div>\
<input type="hidden" value="' + gallery_url + '" name="' + jobsearch_field_gallery_id + '[]" />\
<div class="gal-actions">\
<span style="display:none;"><a href="javascript:void(0);" class="update-gal" data-id="' + attachment_ids + '"><i class="dashicons dashicons-edit"></i></a></span>\
<span><a href="javascript:void(0);" class="delete" title="' + $el.data('delete') + '"><i class="dashicons dashicons-no-alt"></i></a></span>\
</div>\
<div id="edit_gal_form' + attachment_ids + '" style="display: none;" class="gallery-form-elem">\
<div class="gallery-form-inner">\
<div class="jobsearch-heading-area">\
<h3>Edit</h3>\
<a href="javascript:void(0);" class="close-gal" data-id="' + attachment_ids + '"> <i class="dashicons dashicons-no-alt"></i></a>\
</div>\
<div class="gal-thumb"><img src="' + gallery_url + '" width="150" alt="" /></div>\
<div class="jobsearch-element-field">\
<div class="elem-label">\
<label>Title</label>\
</div>\
<div class="elem-field">\
<input type="text" name="' + jobsearch_field_gallery_id + '_title[]" />\
</div>\
</div>\
<div class="jobsearch-element-field" >\
<div class="elem-label">\
<label>Description</label>\
</div>\
<div class="elem-field">\
<textarea name="' + jobsearch_field_gallery_id + '_description[]"></textarea>\
</div>\
</div>\
<div class="jobsearch-element-field" >\
<div class="elem-label">\
<label>URL</label>\
</div>\
<div class="elem-field">\
<input type="text" name="' + jobsearch_field_gallery_id + '_link[]" />\
</div>\
</div>\
<div class="jobsearch-element-field" >\
<div class="elem-label">\
<label>Style</label>\
</div>\
<div class="elem-field">\
<select name="jobsearch_field_' + jobsearch_field_gallery_id + '_style[]">\
<option value="grid">Grid</option>\
<option value="medium">Medium</option>\
<option value="large">Large</option>\
</select>\
</div>\
</div>\
<div class="jobsearch-element-field" style="display:none;">\
<div class="elem-label">\
<label>Caption</label>\
</div>\
<div class="elem-field">\
<textarea name="' + jobsearch_field_gallery_id + '_desc[]"></textarea>\
</div>\
</div>\
<input type="button" class="close-gal" data-id="' + attachment_ids + '" value="Update" />\
</div>\
</div>\
</li>');
}
});
jQuery('#' + jobsearch_field_gallery_id + '_temp').html('');
});
// Finally, open the modal.
gallery_frame.open();
});
jQuery(document).on('click', '.job-featured-option', function () {
"use strict";
var ajax_url = jobsearch_plugin_vars.ajax_url,
$this = jQuery(this),
job_id = $this.data('jobid'),
option = $this.data('option');
$this.html('<i class="dashicons dashicons-update fa-spin"></i>');
var dataString = 'job_id=' + job_id + '&_nonce='+jobsearch_comon_script_vars.nonce+'&action=jobsearch_updated_job_featured_meta' + '&option=' + option;
jQuery.ajax({
type: "POST",
url: ajax_url,
data: dataString,
dataType: "json",
success: function (response) {
if (response != 'error') {
$this.attr("title", response.html);
if (option == 'featured') {
$this.data("option", 'un-feature');
$this.html('<i class="dashicons dashicons-star-filled" aria-hidden="true"></i>');
} else {
$this.data("option", 'featured');
$this.html('<i class="dashicons dashicons-star-empty" aria-hidden="true"></i>');
}
} else {
jQuery(obj).html(' There is an error.');
}
}
});
return false;
});
jQuery(document).on('click', '.candidate-featured-option', function () {
"use strict";
var ajax_url = jobsearch_plugin_vars.ajax_url,
$this = jQuery(this),
candidate_id = $this.data('candidateid'),
option = $this.data('option');
$this.html('<i class="dashicons dashicons-update fa-spin"></i>');
var dataString = 'candidate_id=' + candidate_id + '&_nonce='+jobsearch_comon_script_vars.nonce+'&action=jobsearch_updated_candidate_featured_meta' + '&option=' + option;
jQuery.ajax({
type: "POST",
url: ajax_url,
data: dataString,
dataType: "json",
success: function (response) {
if (response != 'error') {
$this.attr("title", response.html);
if (option == 'featured') {
$this.data("option", 'un-feature');
$this.html('<i class="dashicons dashicons-star-filled" aria-hidden="true"></i>');
} else {
$this.data("option", 'featured');
$this.html('<i class="dashicons dashicons-star-empty" aria-hidden="true"></i>');
}
} else {
jQuery(obj).html(' There is an error.');
}
}
});
return false;
});
jQuery(document).on('click', '.employer-featured-option', function () {
"use strict";
var ajax_url = jobsearch_plugin_vars.ajax_url,
$this = jQuery(this),
employer_id = $this.data('employerid'),
option = $this.data('option');
$this.html('<i class="dashicons dashicons-update fa-spin"></i>');
var dataString = 'employer_id=' + employer_id + '&_nonce='+jobsearch_comon_script_vars.nonce+'&action=jobsearch_updated_employer_featured_meta' + '&option=' + option;
jQuery.ajax({
type: "POST",
url: ajax_url,
data: dataString,
dataType: "json",
success: function (response) {
if (response != 'error') {
$this.attr("title", response.html);
if (option == 'featured') {
$this.data("option", 'un-feature');
$this.html('<i class="dashicons dashicons-star-filled" aria-hidden="true"></i>');
} else {
$this.data("option", 'featured');
$this.html('<i class="dashicons dashicons-star-empty" aria-hidden="true"></i>');
}
} else {
jQuery(obj).html(' There is an error.');
}
}
});
return false;
});
$(document).on('click', '.jobsaerch-email-clear-log', function () {
var _this = $(this);
var ajax_url = jobsearch_plugin_vars.ajax_url;
var this_loader = $(this).next('.ajax-loader');
this_loader.html('<i class="dashicons dashicons-update fa-spin"></i>');
if (!_this.hasClass('ajax-disabled')) {
_this.addClass('ajax-disabled');
var request = $.ajax({
url: ajax_url,
method: "POST",
data: {
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_email_log_clear_cronjob',
},
dataType: "json"
});
request.done(function (msg) {
//
});
request.complete(function () {
window.location.reload();
});
}
});
});
function jobsearch_field_gallery_sorting_list(id, random_id) {
var gallery = []; // more efficient than new Array()
jQuery('#gallery_sortable_' + random_id + ' li').each(function () {
var data_value = jQuery.trim(jQuery(this).data('attachment_id'));
gallery.push(jQuery(this).data('attachment_id'));
});
jQuery("#" + id).val(gallery.toString());
}
function jobsearch_field_num_of_items(id, rand_id, numb) {
var jobsearch_field_gal_count = 0;
jQuery("#gallery_sortable_" + rand_id + " > li").each(function (index) {
jobsearch_field_gal_count++;
jQuery('input[name="jobsearch_field_' + id + '_num"]').val(jobsearch_field_gal_count);
});
if (numb == '1' && numb != '') {
var jobsearch_field_data_temp = jQuery('#jobsearch_field_' + id + '_temp');
jobsearch_field_data_temp.html('<input type="hidden" name="jobsearch_field_' + id + '[]" value="">');
}
}
function jobsearch_subheader_change_action(value, id) {
if (value == 'custom') {
jQuery('#jobsearch-element-sbh-' + id).show();
} else {
jQuery('#jobsearch-element-sbh-' + id).hide();
}
}
function jobsearch_modal_popup_open(target) {
jQuery('#' + target).removeClass('fade').addClass('fade-in');
jQuery('body').addClass('jobsearch-modal-active');
}
jQuery(document).on('click', '.jobsearch-modal .modal-close', function () {
jQuery('.jobsearch-modal').removeClass('fade-in').addClass('fade');
jQuery('body').removeClass('jobsearch-modal-active');
});
jQuery('.jobsearch-modal').on('click', function (e) {
//
var is_close = true;
var this_dom = e.target;
var thisdom_obj = jQuery(this_dom);
if (thisdom_obj.parents('.modal-box-area').length > 0) {
if (thisdom_obj.parent('.modal-close').length > 0) {
//console.log('close');
} else {
is_close = false;
}
}
if (is_close === true) {
jQuery('.jobsearch-modal').removeClass('fade-in').addClass('fade');
jQuery('body').removeClass('jobsearch-modal-active');
}
});
jQuery('#job_attach_files').click(function (e) { // job attachment
e.preventDefault();
mediaUploader = wp.media.frames.file_frame = wp.media({
title: 'Choose File',
button: {
text: 'Choose File'
}, multiple: true}
);
mediaUploader.on('select', function () {
var attachment = mediaUploader.state().get('selection').toJSON();
attachment.map(function (attachment) {
var file_icon = 'fa fa-file-text-o';
if (attachment.type == 'image/png' || attachment.type == 'image/jpeg') {
file_icon = 'fa fa-file-image-o';
} else if (attachment.type == 'application/msword' || attachment.subtype == 'application/vnd.openxmlformats-officedocument.wordprocessingml.document') {
file_icon = 'fa fa-file-word-o';
} else if (attachment.type == 'application/vnd.ms-excel' || attachment.subtype == 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet') {
file_icon = 'fa fa-file-excel-o';
} else if (attachment.type == 'application/pdf') {
file_icon = 'fa fa-file-pdf-o';
}
var ihtml = '\
<div class="jobsearch-column-3 adding-file">\
<div class="file-container">\
<a><i class="' + file_icon + '"></i> ' + attachment.filename + '</a>\
</div>\
</div>\
<input type="hidden" name="jobsearch_field_job_attachment_files[]" value="' + attachment.url + '">';
jQuery('#attach-files-holder').append(ihtml);
});
});
mediaUploader.open();
});
jQuery(document).on('click', '#attach-files-holder .el-remove', function () {
var e_target = jQuery(this).parent('li');
e_target.fadeOut('slow', function () {
e_target.remove();
});
});
jQuery('.job_post_cajax_field').on('click', function (e) {
e.preventDefault();
var this_id = jQuery(this).data('randid'),
loaded = jQuery(this).data('loaded'),
posttype = jQuery(this).data('posttype'),
custom_field = jQuery('#custom_post_field_' + this_id),
ajax_url = jobsearch_plugin_vars.ajax_url,
force_std = jQuery(this).data('forcestd');
if (loaded != true) {
jQuery('.custom_post_loader_' + this_id).html('<i class="fa fa-refresh fa-spin"></i>');
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
force_std: force_std,
posttype: posttype,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_load_all_apswith_job_posts',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.html) {
custom_field.html(response.html);
jQuery('.custom_post_loader_' + this_id).html('');
custom_field.data('loaded', true);
}
});
request.fail(function (jqXHR, textStatus) {
});
}
return false;
});
jQuery(document).on('change', 'select[name="all_jobs_wapps_selctor"]', function (e) {
e.preventDefault();
var _this = jQuery(this),
loaderr = _this.parent('.allapps-jobselct-con').find('span'),
job_id = _this.val(),
appender_con = jQuery('.jobsearch-all-aplicantslst'),
ajax_url = jobsearch_plugin_vars.ajax_url;
if (job_id != '') {
_this.addClass('ajax-loadin');
loaderr.html('<i class="fa fa-refresh fa-spin"></i>');
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
_job_id: job_id,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_load_single_apswith_job_inlist',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.html) {
//
appender_con.html(response.html);
jQuery('.lodmore-apps-btnsec').hide();
}
loaderr.html('');
});
request.fail(function (jqXHR, textStatus) {
loaderr.html('');
});
}
return false;
});
jQuery('.lodmore-apps-btn').on('click', function (e) {
e.preventDefault();
var _this = jQuery(this),
total_pages = _this.attr('data-tpages'),
page_num = _this.attr('data-gtopage'),
this_html = _this.html(),
filter_main_con = jQuery('.allapps-monthemp-filtrmain'),
filtr_by_emp = filter_main_con.find('select[name="all_emps_wapps_selctor"]').val(),
filtr_from_date = filter_main_con.find('input[name="alljobs_wafrom_date"]').val(),
filtr_to_date = filter_main_con.find('input[name="alljobs_wato_date"]').val(),
appender_con = jQuery('.jobsearch-all-aplicantslst'),
ajax_url = jobsearch_plugin_vars.ajax_url;
if (!_this.hasClass('ajax-loadin')) {
_this.addClass('ajax-loadin');
_this.html(this_html + ' <i class="fa fa-refresh fa-spin"></i>');
total_pages = parseInt(total_pages);
page_num = parseInt(page_num);
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
all_emps_wapps_selctor: filtr_by_emp,
alljobs_wafrom_date: filtr_from_date,
alljobs_wato_date: filtr_to_date,
page_num: page_num,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_load_more_apswith_job_apps',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.html) {
page_num += 1;
_this.attr('data-gtopage', page_num)
if (page_num > total_pages) {
_this.parent('div').hide();
}
appender_con.append(response.html);
}
_this.html(this_html);
_this.removeClass('ajax-loadin');
});
request.fail(function (jqXHR, textStatus) {
_this.html(this_html);
_this.removeClass('ajax-loadin');
});
}
return false;
});
jQuery(document).on('click', '.lodmore-jobapps-btn', function (e) {
e.preventDefault();
var _this = jQuery(this),
total_pages = _this.attr('data-tpages'),
page_num = _this.attr('data-gtopage'),
job_id = _this.attr('data-jid'),
this_html = _this.html(),
appender_con = jQuery('#job-apps-list' + job_id),
ajax_url = jobsearch_plugin_vars.ajax_url;
if (!_this.hasClass('ajax-loadin')) {
_this.addClass('ajax-loadin');
_this.html(this_html + ' <i class="fa fa-refresh fa-spin"></i>');
total_pages = parseInt(total_pages);
page_num = parseInt(page_num);
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
_job_id: job_id,
page_num: page_num,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_load_more_apswith_apps_lis',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.html) {
page_num += 1;
_this.attr('data-gtopage', page_num)
if (page_num > total_pages) {
_this.parent('div').hide();
}
appender_con.append(response.html);
}
_this.html(this_html);
_this.removeClass('ajax-loadin');
});
request.fail(function (jqXHR, textStatus) {
_this.html(this_html);
_this.removeClass('ajax-loadin');
});
}
return false;
});
function jobsearch_alljobs_apps_count_load() {
var ajax_url = jobsearch_plugin_vars.ajax_url;
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
doing: 'alljobs_apps_count',
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_alljobs_apps_count_loadboxes',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.appcounts) {
jQuery('.overall-site-aplicnts').html(response.appcounts);
jQuery('.overall-site-shaplicnts').html(response.shappcounts);
jQuery('.overall-site-rejaplicnts').html(response.rejappcounts);
}
});
request.fail(function (jqXHR, textStatus) {
jQuery('.overall-site-aplicnts').html('0');
jQuery('.overall-site-shaplicnts').html('0');
jQuery('.overall-site-rejaplicnts').html('0');
});
return false;
}
//
// Email Applicants scripts
// Start
//
jQuery('.job_email_post_cajax').on('click', function (e) {
e.preventDefault();
var this_id = jQuery(this).data('randid'),
loaded = jQuery(this).data('loaded'),
posttype = jQuery(this).data('posttype'),
custom_field = jQuery('#custom_post_field_' + this_id),
ajax_url = jobsearch_plugin_vars.ajax_url,
force_std = jQuery(this).data('forcestd');
if (loaded != true) {
jQuery('.custom_post_loader_' + this_id).html('<i class="fa fa-refresh fa-spin"></i>');
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
force_std: force_std,
posttype: posttype,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_load_email_apswith_job_posts',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.html) {
custom_field.html(response.html);
jQuery('.custom_post_loader_' + this_id).html('');
custom_field.data('loaded', true);
}
});
request.fail(function (jqXHR, textStatus) {
});
}
return false;
});
jQuery(document).on('change', 'select[name="email_jobs_wapps_selctor"]', function (e) {
e.preventDefault();
var _this = jQuery(this),
loaderr = _this.parent('.allapps-jobselct-con').find('span'),
job_id = _this.val(),
appender_con = jQuery('.jobsearch-all-aplicantslst'),
ajax_url = jobsearch_plugin_vars.ajax_url;
if (job_id != '') {
_this.addClass('ajax-loadin');
loaderr.html('<i class="fa fa-refresh fa-spin"></i>');
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
_job_id: job_id,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_email_single_apswith_job_inlist',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.html) {
//
appender_con.html(response.html);
jQuery('.lodemail-apps-btnsec').hide();
}
loaderr.html('');
});
request.fail(function (jqXHR, textStatus) {
loaderr.html('');
});
}
return false;
});
jQuery('.lodemail-apps-btn').on('click', function (e) {
e.preventDefault();
var _this = jQuery(this),
total_pages = _this.attr('data-tpages'),
page_num = _this.attr('data-gtopage'),
this_html = _this.html(),
filter_main_con = jQuery('.allapps-monthemp-filtrmain'),
filtr_by_emp = filter_main_con.find('select[name="all_emps_wapps_selctor"]').val(),
filtr_from_date = filter_main_con.find('input[name="alljobs_wafrom_date"]').val(),
filtr_to_date = filter_main_con.find('input[name="alljobs_wato_date"]').val(),
appender_con = jQuery('.jobsearch-all-aplicantslst'),
ajax_url = jobsearch_plugin_vars.ajax_url;
if (!_this.hasClass('ajax-loadin')) {
_this.addClass('ajax-loadin');
_this.html(this_html + ' <i class="fa fa-refresh fa-spin"></i>');
total_pages = parseInt(total_pages);
page_num = parseInt(page_num);
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
all_emps_wapps_selctor: filtr_by_emp,
alljobs_wafrom_date: filtr_from_date,
alljobs_wato_date: filtr_to_date,
page_num: page_num,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_email_more_apswith_job_apps',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.html) {
page_num += 1;
_this.attr('data-gtopage', page_num)
if (page_num > total_pages) {
_this.parent('div').hide();
}
appender_con.append(response.html);
}
_this.html(this_html);
_this.removeClass('ajax-loadin');
});
request.fail(function (jqXHR, textStatus) {
_this.html(this_html);
_this.removeClass('ajax-loadin');
});
}
return false;
});
jQuery(document).on('click', '.lodemail-jobapps-btn', function (e) {
e.preventDefault();
var _this = jQuery(this),
total_pages = _this.attr('data-tpages'),
page_num = _this.attr('data-gtopage'),
job_id = _this.attr('data-jid'),
this_html = _this.html(),
appender_con = jQuery('#job-apps-list' + job_id),
ajax_url = jobsearch_plugin_vars.ajax_url;
if (!_this.hasClass('ajax-loadin')) {
_this.addClass('ajax-loadin');
_this.html(this_html + ' <i class="fa fa-refresh fa-spin"></i>');
total_pages = parseInt(total_pages);
page_num = parseInt(page_num);
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
_job_id: job_id,
page_num: page_num,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_load_email_apswith_apps_lis',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.html) {
page_num += 1;
_this.attr('data-gtopage', page_num)
if (page_num > total_pages) {
_this.parent('div').hide();
}
appender_con.append(response.html);
}
_this.html(this_html);
_this.removeClass('ajax-loadin');
});
request.fail(function (jqXHR, textStatus) {
_this.html(this_html);
_this.removeClass('ajax-loadin');
});
}
return false;
});
function jobsearch_jobs_emailapps_count_load() {
var ajax_url = jobsearch_plugin_vars.ajax_url;
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
doing: 'alljobs_apps_count',
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_jobs_emailapps_count_loadboxes',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.appcounts) {
jQuery('.overall-site-aplicnts').html(response.appcounts);
}
});
request.fail(function (jqXHR, textStatus) {
jQuery('.overall-site-aplicnts').html('0');
});
return false;
}
//
// Email Applicants scripts
// End
//
jQuery(function ($) {
$('body').on('click', 'input[name="bulk_edit"]', function () {
// let's add the WordPress default spinner just before the button
$(this).after('<span class="spinner is-active"></span>');
// define: prices, featured products and the bulk edit table row
var bulk_edit_row = $('tr#bulk-edit'),
post_ids = new Array(),
posted_by = bulk_edit_row.find('input[name="jobsearch_field_job_posted_by"]').val(),
publish_date = bulk_edit_row.find('input[name="jobsearch_publishdate_bulk"]').val(),
deadline_date = bulk_edit_row.find('input[name="jobsearch_deadlinedate_bulk"]').val(),
expiry_date = bulk_edit_row.find('input[name="jobsearch_expirydate_bulk"]').val();
// now we have to obtain the post IDs selected for bulk edit
bulk_edit_row.find('#bulk-titles-list').children().each(function () {
var delbtn_con = $(this).find('.ntdelbutton');
var _postid = delbtn_con.attr('id').replace(/\D/g, '');
_postid = _postid.replace('_', '');
post_ids.push(_postid);
});
// save the data with AJAX
$.ajax({
url: ajaxurl, // WordPress has already defined the AJAX url for us (at least in admin area)
type: 'POST',
async: false,
cache: false,
data: {
action: 'jobsearch_quick_save_bulk_job', // wp_ajax action hook
post_ids: post_ids, // array of post IDs
posted_by: posted_by,
publish_date: publish_date,
deadline_date: deadline_date,
expiry_date: expiry_date,
nonce: $('#jobsearch_nonce').val(),
}
});
});
return false;
});
jQuery(document).on('click', '.user-bkdashcover-remove', function () {
var _this = jQuery(this);
var uid = _this.attr('data-uid');
var loader_con = _this.find('i');
loader_con.attr('class', 'fa fa-refresh fa-spin');
var request = jQuery.ajax({
url: ajaxurl,
method: "POST",
data: {
'user_id': uid,
_nonce: jobsearch_comon_script_vars.nonce,
'action': 'jobsearch_cand_bkprofile_meta_delete_cover'
},
dataType: "json"
});
request.done(function (response) {
if (typeof response.success !== 'undefined' && response.success == '1') {
_this.hide();
jQuery('#candbk-covrimg-holder').find('span').removeAttr('style');
}
loader_con.attr('class', 'dashicons dashicons-no-alt');
});
request.fail(function (jqXHR, textStatus) {
loader_con.attr('class', 'dashicons dashicons-no-alt');
});
});
jQuery(document).on('click', '.user-bkdashthumb-remove', function () {
var _this = jQuery(this);
var uid = _this.attr('data-uid');
var loader_con = _this.find('i');
loader_con.attr('class', 'fa fa-refresh fa-spin');
var request = jQuery.ajax({
url: ajaxurl,
method: "POST",
data: {
'user_id': uid,
_nonce: jobsearch_comon_script_vars.nonce,
'action': 'jobsearch_cand_bkprofile_avatar_delete_pthumb'
},
dataType: "json"
});
request.done(function (response) {
if (typeof response.success !== 'undefined' && response.success == '1') {
_this.hide();
if (jQuery('#candbk-profileimg-holder').length > 0) {
jQuery('#candbk-profileimg-holder').find('img').attr('src', response.img_url);
}
if (jQuery('#com-img-holder').length > 0) {
jQuery('#com-img-holder').find('img').attr('src', response.img_url);
}
}
loader_con.attr('class', 'dashicons dashicons-no-alt');
});
request.fail(function (jqXHR, textStatus) {
loader_con.attr('class', 'dashicons dashicons-no-alt');
});
});
function jobsearch_bkcand_image_upload_func(input, this_action, img_type) {
if (input.files && input.files[0]) {
var _this = jQuery(input);
var cand_id = _this.parent('.jobsearch-bkimg-uploadrcon').find('.jobsearch-candbk-uplodimgbtn').attr('data-id');
var loader_con = _this.parent('.jobsearch-bkimg-uploadrcon').find('.file-img-uploadr');
var img_file = input.files[0];
loader_con.html('<span class="spinner is-active"></span>');
var formData = new FormData();
formData.append('profile_img', img_file);
formData.append('cand_id', cand_id);
formData.append('_nonce', jobsearch_comon_script_vars.nonce);
formData.append('action', this_action);
var request = jQuery.ajax({
url: ajaxurl,
method: "POST",
data: formData,
processData: false,
contentType: false,
dataType: "json"
});
request.done(function (response) {
//
if (typeof response.imgUrl !== 'undefined' && response.imgUrl !== '') {
if (img_type == 'cover') {
jQuery('#candbk-covrimg-holder').find('span').attr('style', "background:url(" + response.imgUrl + ") no-repeat center/cover;");
jQuery('.user-bkdashcover-remove').show();
} else {
jQuery('#candbk-profileimg-holder').find('img').attr('src', response.imgUrl);
jQuery('.user-bkdashthumb-remove').show();
}
}
loader_con.html('');
});
request.fail(function (jqXHR, textStatus) {
loader_con.html('');
});
}
}
jQuery(document).on('click', '.jobsearch-candbk-uplodimgbtn', function () {
var _this = jQuery(this);
_this.parent('.jobsearch-bkimg-uploadrcon').find('input[type=file]').trigger('click');
});
jQuery(document).on('change', '#candidate_profile_img', function () {
jobsearch_bkcand_image_upload_func(this, 'jobsearch_bkmeta_updating_cand_avatar_img', 'profile_img');
});
jQuery(document).on('change', '#candidate_cover_img', function () {
jobsearch_bkcand_image_upload_func(this, 'jobsearch_bkmeta_updating_cand_cover_img', 'cover');
});
jQuery(document).on('click', '.jobsearch-save-integrationsetins', function () {
var _this = jQuery(this);
var ajax_url = ajaxurl;
var this_loader = _this.parent('.fields-save-buttoncon').find('.savesettins-loder');
var settin_form = _this.parents('form')[0];
var form_data = new FormData(settin_form);
this_loader.html('<i class="fa fa-refresh fa-spin"></i>');
if (!_this.hasClass('ajax-disabled')) {
_this.addClass('ajax-disabled');
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
processData: false,
contentType: false,
data: form_data,
dataType: "json"
});
request.done(function (response) {
this_loader.html(response.msg);
if (response.error == '0') {
window.location.reload();
}
_this.removeClass('ajax-disabled');
return false;
});
request.fail(function (jqXHR, textStatus) {
this_loader.html('');
_this.removeClass('ajax-disabled');
});
}
});
jQuery('.jobsearch-remove-emailaplicnt').on('click', function () {
var _this = jQuery(this);
var id = _this.attr('data-id');
var email_val = _this.attr('data-email');
var this_icon_class = _this.find('i').attr('class');
var loder_con = _this.find('i');
var ajax_url = ajaxurl;
loder_con.attr('class', 'fa fa-refresh fa-spin');
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
data: {
id: id,
email: email_val,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_user_delete_email_apply_job',
},
dataType: "json"
});
request.done(function (response) {
if ('undefined' !== typeof response.delete && response.delete == '1') {
window.location.reload();
return false;
}
loder_con.attr('class', this_icon_class);
});
request.fail(function (jqXHR, textStatus) {
loder_con.attr('class', this_icon_class);
});
});
jQuery(document).on('click', '.jobsearch-addjobimport-schedule, .jobsearch-updatejobimport-schedule', function () {
var _this = jQuery(this);
var ajax_url = ajaxurl;
var this_loader = _this.parent('.fields-save-buttoncon').find('.savesettins-loder');
var settin_form = _this.parents('form')[0];
var form_data = new FormData(settin_form);
this_loader.html('<i class="fa fa-refresh fa-spin"></i>');
if (!_this.hasClass('ajax-disabled')) {
_this.addClass('ajax-disabled');
var request = jQuery.ajax({
url: ajax_url,
method: "POST",
processData: false,
contentType: false,
data: form_data,
dataType: "json"
});
request.done(function (response) {
this_loader.html(response.msg);
if (typeof response.redirect !== 'undefined') {
window.location.href = response.redirect;
}
_this.removeClass('ajax-disabled');
return false;
});
request.fail(function (jqXHR, textStatus) {
this_loader.html('');
_this.removeClass('ajax-disabled');
});
}
});
jQuery(document).on('change', '.jobsearch-cusfield-checkbox input[type=checkbox]', function() {
var _this = jQuery(this);
var this_parent = _this.parents('.jobsearch-cusfield-checkbox');
var max_options = this_parent.attr('data-mop');
max_options = parseInt(max_options);
if (max_options > 0) {
var chkbox_options = this_parent.find('input[type=checkbox]');
var checkd_err_alrt = false;
var checkd_counts = 0;
chkbox_options.each(function() {
var this_option = jQuery(this);
if (this_option.is(':checked')) {
checkd_counts++;
}
if (checkd_counts > max_options) {
this_option.prop('checked', false);
checkd_err_alrt = true;
}
});
if (checkd_err_alrt === true) {
alert(this_parent.attr('data-maxerr'));
}
}
});
jQuery(document).on('change', '.jobsearch-cusfield-select select', function() {
var _this = jQuery(this);
var this_parent = _this.parents('.jobsearch-cusfield-select');
var max_options = this_parent.attr('data-mop');
max_options = parseInt(max_options);
if (max_options > 0) {
var select_options = this_parent.find('option');
var checkd_err_alrt = false;
var checkd_counts = 0;
select_options.each(function() {
var this_option = jQuery(this);
if (this_option.is(':selected')) {
checkd_counts++;
}
if (checkd_counts > max_options) {
this_option.prop('selected', false);
checkd_err_alrt = true;
}
});
if (checkd_err_alrt === true) {
alert(this_parent.attr('data-maxerr'));
}
}
});
jQuery(document).ready(function () {
if (jQuery('#jobs-imprt-integrtion-nonce').length > 0) {
var ajax_req_integ = jQuery.ajax({
url: ajaxurl,
method: "POST",
data: {
secure_form: 'integration',
action: 'jobsearch_jobs_import_intgration_nonce'
},
dataType: "html"
});
ajax_req_integ.done(function (response) {
jQuery('#jobs-imprt-integrtion-nonce').html(response);
});
}
if (jQuery('#custom-fields-savenonc').length > 0) {
var ajax_req_integ = jQuery.ajax({
url: ajaxurl,
method: "POST",
data: {
secure_form: 'custom-fields',
action: 'jobsearch_custom_fields_creae_nonce'
},
dataType: "html"
});
ajax_req_integ.done(function (response) {
jQuery('#custom-fields-savenonc').html(response);
});
}
if (jQuery('#email-templates-savenonc').length > 0) {
var ajax_req_integ = jQuery.ajax({
url: ajaxurl,
method: "POST",
data: {
secure_form: 'email-templates',
action: 'jobsearch_email_templates_creae_nonce'
},
dataType: "html"
});
ajax_req_integ.done(function (response) {
jQuery('#email-templates-savenonc').html(response);
});
}
});
jQuery('.jobsearch-wpcf7-shsugg').on('click', '.wpcf7-sugg-itm a', function() {
var _this = jQuery(this);
var this_sh = _this.attr('data-sh');
_this.parents('.elem-field').find('textarea').html(this_sh);
});
jQuery('.jobsearch-del-unverifyusers').on('click', function() {
var this_btn = jQuery(this);
if (this_btn.hasClass('disabled')) {
return;
}
this_btn.attr('data-pnum', '1');
this_btn.attr('data-dcount', '0');
var prnt_con = this_btn.closest('div');
if (!prnt_con.find('.jobsearch-spinloder').length) {
prnt_con.append('<span class="jobsearch-spinloder spinner"></span>');
}
if (!prnt_con.find('.jobsearch-msg-holdr').length) {
prnt_con.append('<div class="jobsearch-msg-holdr" style="text-align:right;width:96%;margin:5px 0;"></div>');
}
prnt_con.find('.jobsearch-msg-holdr').html('');
prnt_con.find('.jobsearch-spinloder').addClass('is-active');
jQuery.ajax({
url: ajaxurl,
method: "POST",
data: {
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_remove_unverify_users'
},
dataType: "json",
success: function(response) {
if (typeof response.check_more !== 'undefined') {
jobsearch_delete_unverify_users_pagination(this_btn, response);
} else {
prnt_con.find('.jobsearch-msg-holdr').html(response.msg);
prnt_con.find('.jobsearch-spinloder').removeClass('is-active');
this_btn.removeClass('disabled');
}
},
error: function() {
//
prnt_con.find('.jobsearch-spinloder').removeClass('is-active');
this_btn.removeClass('disabled');
}
});
this_btn.addClass('disabled');
});
function jobsearch_delete_unverify_users_pagination(this_btn, response_data) {
var prnt_con = this_btn.closest('div');
var page_num = parseInt(this_btn.attr('data-pnum'));
var next_page = page_num + 1;
this_btn.attr('data-pnum', next_page);
//
var deletd_users = parseInt(this_btn.attr('data-dcount')) + parseInt(response_data.deleted_count);
this_btn.attr('data-dcount', deletd_users);
prnt_con.find('.jobsearch-msg-holdr').html('<strong>' + deletd_users + '</strong> deleted from total <strong>' + response_data.total_users + '</strong> unverified users.');
jQuery.ajax({
url: ajaxurl,
method: "POST",
data: {
page_num: next_page,
total_users: response_data.total_users,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_remove_unverify_users'
},
dataType: "json",
success: function(response) {
if (typeof response.check_more !== 'undefined') {
jobsearch_delete_unverify_users_pagination(this_btn, response);
} else {
prnt_con.find('.jobsearch-msg-holdr').html(response.msg);
prnt_con.find('.jobsearch-spinloder').removeClass('is-active');
this_btn.removeClass('disabled');
}
},
error: function() {
//
prnt_con.find('.jobsearch-spinloder').removeClass('is-active');
this_btn.removeClass('disabled');
}
});
}
jQuery('.jobsearch-atch-toverifusers').on('click', function() {
var this_btn = jQuery(this);
if (this_btn.hasClass('disabled')) {
return;
}
this_btn.attr('data-pnum', '1');
this_btn.attr('data-dcount', '0');
var prnt_con = this_btn.closest('div');
if (!prnt_con.find('.jobsearch-spinloder').length) {
prnt_con.append('<span class="jobsearch-spinloder spinner"></span>');
}
if (!prnt_con.find('.jobsearch-msg-holdr').length) {
prnt_con.append('<div class="jobsearch-msg-holdr" style="text-align:right;width:96%;margin:5px 0;"></div>');
}
prnt_con.find('.jobsearch-msg-holdr').html('');
prnt_con.find('.jobsearch-spinloder').addClass('is-active');
jQuery.ajax({
url: ajaxurl,
method: "POST",
data: {
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_attch_verify_unverify_users'
},
dataType: "json",
success: function(response) {
if (typeof response.check_more !== 'undefined') {
jobsearch_atch_verif_unverify_users_pagination(this_btn, response);
} else {
prnt_con.find('.jobsearch-msg-holdr').html(response.msg);
prnt_con.find('.jobsearch-spinloder').removeClass('is-active');
this_btn.removeClass('disabled');
}
},
error: function() {
//
prnt_con.find('.jobsearch-spinloder').removeClass('is-active');
this_btn.removeClass('disabled');
}
});
this_btn.addClass('disabled');
});
function jobsearch_atch_verif_unverify_users_pagination(this_btn, response_data) {
var prnt_con = this_btn.closest('div');
var page_num = parseInt(this_btn.attr('data-pnum'));
var next_page = page_num + 1;
this_btn.attr('data-pnum', next_page);
//
var deletd_users = parseInt(this_btn.attr('data-dcount')) + parseInt(response_data.deleted_count);
this_btn.attr('data-dcount', deletd_users);
prnt_con.find('.jobsearch-msg-holdr').html('Status added for <strong>' + deletd_users + '</strong> users out of total <strong>' + response_data.total_users + '</strong> users.');
jQuery.ajax({
url: ajaxurl,
method: "POST",
data: {
page_num: next_page,
total_users: response_data.total_users,
_nonce: jobsearch_comon_script_vars.nonce,
action: 'jobsearch_attch_verify_unverify_users'
},
dataType: "json",
success: function(response) {
if (typeof response.check_more !== 'undefined') {
jobsearch_atch_verif_unverify_users_pagination(this_btn, response);
} else {
prnt_con.find('.jobsearch-msg-holdr').html(response.msg);
prnt_con.find('.jobsearch-spinloder').removeClass('is-active');
this_btn.removeClass('disabled');
}
},
error: function() {
//
prnt_con.find('.jobsearch-spinloder').removeClass('is-active');
this_btn.removeClass('disabled');
}
});
}