var popoverOptions={
html: true,
template: '<div class="popover wdt-premium-popover" role="tooltip">' +
'<div class="arrow"></div>' +
'<h3 class="popover-header">' +
'<i class="wpdt-icon-star-full m-r-5" style="color: #FFC078;"></i>' +
(wdtWpDataTablesPopoverStrings.title ? wdtWpDataTablesPopoverStrings.title:'This is a premium feature') +
'<button type="button" class="closePopover">' +
'<span aria-hidden="true"><i class="wpdt-icon-times-full"></i></span></button></h3>' +
'<div class="popover-body"><span>' + (wdtWpDataTablesPopoverStrings.description ? wdtWpDataTablesPopoverStrings.description:'This feature is available only in premium version of wpDataTables') + '</span> ' +
'<div class="popover-footer"><a id="wdt-premium-compare-link">' + (wdtWpDataTablesPopoverStrings.compare_link ? wdtWpDataTablesPopoverStrings.compare_link:'Compare and View Pricing') + '</a></div></div' +
'</div>',
content: function (){
var content=jQuery(this).attr("data-popover-content");
return jQuery(content).children(".popover-body").html();
},
title: function (){
var title=jQuery(this).attr("data-popover-content");
return jQuery(title).children(".popover-heading").html();
}}
var wdtHideTooltip=function (){
jQuery('.wdt-datatables-admin-wrap [data-toggle="tooltip"]').on('click', function (){
jQuery(this).wdtBootstrapTooltip('hide');
});
jQuery('.wdt-datatables-admin-wrap [data-toggle="tooltip"]').mouseout(function (event){
var e=event.toElement||event.relatedTarget;
if(e!=null&&(e.parentNode==this||e==this)){
return;
}
jQuery(this).wdtBootstrapTooltip('hide');
});
};
jQuery.fn.wdtBootstrapTooltip=jQuery.fn.tooltip;
jQuery.fn.wdtBootstrapPopover=jQuery.fn.popover;
jQuery.fn.wdtBootstrapTabs=jQuery.fn.tab;
let lastClickedElement=null;
jQuery(document).on('click', '*', function (e){
lastClickedElement=this;
});
jQuery.fn.wdtBootstrapSelectPicker=jQuery.fn.selectpicker;
jQuery.fn.extend({
animateCss: function (animationName, onEnd){
var animationEnd='webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend';
jQuery(this).addClass('animated ' + animationName).one(animationEnd, function (){
jQuery(this).removeClass('animated ' + animationName);
if(typeof onEnd=='function'){
onEnd();
}});
},
fadeInDown: function (){
jQuery(this)
.removeClass('hidden')
.show()
.animateCss('fadeInDown');
},
fadeInRight: function (onEnd){
jQuery(this)
.removeClass('hidden')
.show()
.animateCss('fadeInRight');
if(typeof onEnd=='function'){
onEnd();
}},
fadeOutDown: function (){
var $this=jQuery(this);
jQuery(this).animateCss('fadeOutDown', function (){
$this
.addClass('hidden')
.hide();
});
},
fadeOutRight: function (){
var $this=jQuery(this);
if(!jQuery(lastClickedElement).is('.wdt-apply,.wdt-column-apply, .wdt-apply *')){
return;
}
jQuery(this).animateCss('fadeOutRight', function (){
$this
.addClass('hidden')
.hide();
});
},
animateFadeIn: function (){
var $this=jQuery(this);
jQuery(this)
.removeClass('hidden')
.show()
.removeClass('fadeOut')
.animateCss('fadeIn', function (){
$this
.removeClass('fadeIn')
.removeClass('hidden')
.show()
});
},
animateFadeOut: function (onEnd){
var $this=jQuery(this);
jQuery(this)
.removeClass('fadeIn')
.animateCss('fadeOut', function (){
$this
.addClass('hidden')
.removeClass('fadeOut')
.hide();
if(typeof onEnd=='function'){
onEnd();
}});
}});
jQuery.fn.extend({
insertAtCaret: function (myValue){
return this.each(function (i){
if(document.selection){
this.focus();
var sel=document.selection.createRange();
sel.text=myValue;
this.focus();
}else if(this.selectionStart||this.selectionStart=='0'){
var startPos=this.selectionStart;
var endPos=this.selectionEnd;
var scrollTop=this.scrollTop;
this.value=this.value.substring(0, startPos) + myValue + this.value.substring(endPos, this.value.length);
this.focus();
this.selectionStart=startPos + myValue.length;
this.selectionEnd=startPos + myValue.length;
this.scrollTop=scrollTop;
}else{
this.value +=myValue;
this.focus();
}});
}});
(function ($){
$(function (){
$('.card-header:eq(0) > *').not('img, h2, ul.actions, button#wdt-table-id, .clear').prependTo('div.wdt-datatables-admin-wrap');
$('.wdt-datatables-admin-wrap [data-toggle="tooltip"]').wdtBootstrapTooltip();
wdtHideTooltip();
$('[data-toggle="html-popover"]').wdtBootstrapPopover({
html: true,
content: function (){
var content=$(this).attr("data-popover-content");
return $(content).children(".popover-body").html();
},
title: function (){
var title=$(this).attr("data-popover-content");
return $(title).children(".popover-heading").html();
}});
$('select.selectpicker').wdtBootstrapSelectPicker();
$(document).on('keyup', '.modal', function (e){
e.preventDefault();
e.stopImmediatePropagation();
if(e.which==27){
$('.modal').modal('hide');
}});
$(document).on('click', 'button.wdt-backend-close', function (){
$('#wdt-backend-close-modal').modal('show');
$('#wdt-backend-close-button').click(function (){
$(location).attr('href', wdtWpDataTablesPage.browseTablesUrl);
});
});
$(document).on('click', 'button.wdt-backend-chart-close', function (){
$('#wdt-backend-close-modal').modal('show');
$('#wdt-backend-close-button').click(function (){
$(location).attr('href', wdtWpDataTablesPage.browseChartsUrl);
});
});
$('.wpdt-c').on('click', '.wdt-copy-shortcode-browse', function (e){
e.preventDefault();
e.stopImmediatePropagation();
var $temp=$("<input>");
$($temp).insertAfter($(this));
$temp.val($(this).data('shortcode')).select();
document.execCommand ("copy");
$temp.remove();
wdtNotify(
wpdatatables_edit_strings.success,
wpdatatables_edit_strings.shortcodeSaved,
'success'
);
});
$('.wdt-btn-number').on("click", function (e){
e.preventDefault();
var fieldName=$(this).attr('data-field');
var type=$(this).attr('data-type');
var input=$("input[name='" + fieldName + "']");
var currentVal=parseInt(input.val());
if(!isNaN(currentVal)){
if(type=='minus'){
if(currentVal > input.attr('min')){
input.val(currentVal - 1).change();
}
if(parseInt(input.val())==input.attr('min')){
$(this).attr('disabled', true);
}}else if(type=='plus'){
input.val(currentVal + 1).change();
$('.wdt-button-minus').attr('disabled', false);
}}else{
input.val(1).change();
}});
$(".input-number").on("change", function (e){
var inputValue=$(this).val();
if(isNaN(inputValue)){
e.preventDefault();
}});
$('.wpdt-c').on('click', '.wdt-copy-shortcode', function (e){
e.preventDefault();
e.stopImmediatePropagation();
var $temp=$("<input>");
var $shortcodeType=$(this).data('shortcode-type');
$($temp).insertAfter($(this));
$temp.val($('#wdt-' + $shortcodeType + '-shortcode-id').text()).select();
document.execCommand ("copy");
$temp.remove();
wdtNotify(
wpdatatables_edit_strings.success,
wpdatatables_edit_strings.shortcodeSaved,
'success'
);
});
$(".collapse")[0]&&($(".collapse").on("show.bs.collapse", function (e){
$(this).closest(".panel").find(".panel-heading").addClass("active")
}), $(".collapse").on("hide.bs.collapse", function (e){
$(this).closest(".panel").find(".panel-heading").removeClass("active")
}), $(".collapse.in").each(function (){
$(this).closest(".panel").find(".panel-heading").addClass("active")
}));
$(".fg-line")[0]&&($("body").on("focus", ".fg-line .form-control:not(.bootstrap-select)", function (){
$(this).closest(".fg-line").addClass("fg-toggled")
}));
$("body").on("blur", ".form-control", function (){
var p=$(this).closest(".form-group, .input-group")
, i=p.find(".form-control").val();
p.hasClass("fg-float") ? 0==i.length&&$(this).closest(".fg-line").removeClass("fg-toggled"):$(this).closest(".fg-line").removeClass("fg-toggled")
});
$(".fg-float")[0]&&$(".fg-float .form-control").each(function (){
var i=$(this).val();
0==!i.length&&$(this).closest(".fg-line").addClass("fg-toggled")
});
$('[data-toggle="html-premium-popover"]').wdtBootstrapPopover(popoverOptions).on('shown.bs.popover', function (){
var $popup=$(this);
$(this).next('.popover').find('button.closePopover').click(function (e){
$popup.wdtBootstrapPopover('hide');
});
$('#wdt-premium-compare-link').click(function (){
$(location).attr('href', wdtWpDataTablesPage.liteVSPremiumUrl);
});
});
$(document).keyup(function (event){
if(event.which===27){
$('[data-toggle="html-premium-popover"]').wdtBootstrapPopover('hide');
$('[data-toggle="html-button-premium-popover"]').wdtBootstrapPopover('hide');
$('[data-toggle="html-checkbox-premium-popover"]').wdtBootstrapPopover('hide');
$('[data-toggle="html-input-premium-popover"]').wdtBootstrapPopover('hide');
}});
$('[data-toggle="html-checkbox-premium-popover"]').wdtBootstrapPopover('destroy').wdtBootstrapPopover(popoverOptions).on('shown.bs.popover', function (){
var $popup=$(this);
$popup.next('.popover').find('button.closePopover').click(function (e){
$popup.wdtBootstrapPopover('hide');
$popup.siblings('input[type="checkbox"].wdt-premium-feature').prop("checked", false);
});
$('#wdt-premium-compare-link').click(function (){
$(location).attr('href', wdtWpDataTablesPage.liteVSPremiumUrl);
});
$popup.children('span').removeClass("opacity-6");
}).on('hidden.bs.popover', function (){
var elementInput=$(this);
var elementSpan=$(this).children('span');
if(elementSpan.hasClass('opacity-6')){
elementSpan.removeClass('opacity-6');
}else{
elementSpan.addClass('opacity-6');
}
elementInput.siblings('input[type="checkbox"].wdt-premium-feature').prop("checked", false);
})
$('[data-toggle="html-input-premium-popover"]').on('focus', function (){
$('[data-toggle="html-input-premium-popover"]').wdtBootstrapPopover(popoverOptions).on('shown.bs.popover', function (){
var $popup=$(this);
$(this).next('.popover').find('button.closePopover').click(function (e){
$popup.wdtBootstrapPopover('hide');
});
$('#wdt-premium-compare-link').click(function (){
$(location).attr('href', wdtWpDataTablesPage.liteVSPremiumUrl);
});
})
if($('.wdt-premium-popover').is(':visible')){
$(this).wdtBootstrapPopover('hide');
}else{
$(this).wdtBootstrapPopover('show');
}});
$('#wdt-column-values, #wdt-chart-row-range-type').on("change", function (){
if($(this).val()=='foreignkey' ||
$(this).val()=='list' ||
$(this).val()=='pick_rows'){
popoverOnChange(this.id)
}else{
$('#' + this.id).wdtBootstrapPopover('destroy');
}});
$('#wp-render-filter, #wdt-possible-values-ajax, #horizontal-axis-direction, #vertical-axis-direction, #wdt-column-rotate-header-name').on("change", function (){
popoverOnChange(this.id)
});
$('[data-toggle="html-button-premium-popover"]').on("click", function (e){
e.stopImmediatePropagation()
e.preventDefault()
popoverOnClick()
});
$('#wpdt-views .nav-item').on('click', function (e){
e.preventDefault()
e.stopImmediatePropagation()
var view=$(this).data('view'),
viewContainer=$('#wpdt-view-container');
if(wpdatatable_config.table_type=='simple'){
switch (view){
case 'desktop':
viewContainer.width('100%');
$('.wpDataTableContainerSimpleTable .wpdtSimpleTable').each(function (i){
var tempID='#' + $(this)[i].id;
if(wpdatatable_config.simpleResponsive){
if($(tempID).data('basictable'))
$(tempID).basictable('destroy');
}})
break;
case 'tablet':
viewContainer.width('1024').css('margin', '0 auto');
if(wpdatatable_config.simpleResponsive){
$('.wpDataTableContainerSimpleTable .wpdtSimpleTable').each(function (i){
var tempID='#' + $(this)[i].id;
$(tempID).basictable({
containerBreakpoint: 1024,
tableWrap: true,
header: !!$(tempID + ' thead').length
});
})
}
break;
case 'mobile':
viewContainer.width('400').css('margin', '0 auto');
if(wpdatatable_config.simpleResponsive){
$('.wpDataTableContainerSimpleTable .wpdtSimpleTable').each(function (i){
var tempID='#' + $(this)[i].id;
$(tempID).basictable({
containerBreakpoint: 400,
tableWrap: true,
showEmptyCells: true,
header: !!$(tempID + ' thead').length
});
})
}
break;
default:
viewContainer.width('100%');
break;
}}
$(this).addClass('active').siblings().removeClass('active');
})
});
})(jQuery);
jQuery(window).on('load', function (){
jQuery('.wdt-preload-layer').animateFadeOut();
});
window.onbeforeunload=function (e){
jQuery('.wdt-preload-layer').animateFadeIn();
};
function popoverOnChange(selector){
jQuery("#" + selector).wdtBootstrapPopover(popoverOptions).on('shown.bs.popover', function (){
var $popup=jQuery(this);
jQuery(this).next('.popover').find('button.closePopover').click(function (e){
$popup.wdtBootstrapPopover('hide');
});
jQuery('#wdt-premium-compare-link').click(function (){
jQuery(location).attr('href', wdtWpDataTablesPage.liteVSPremiumUrl);
});
}).wdtBootstrapPopover('show');
}
function popoverOnClick(){
jQuery('[data-toggle="html-button-premium-popover"]').wdtBootstrapPopover(popoverOptions).on('shown.bs.popover', function (){
var $popup=jQuery(this);
jQuery(this).next('.popover').find('button.closePopover').click(function (e){
$popup.wdtBootstrapPopover('hide');
});
jQuery('#wdt-premium-compare-link').click(function (){
jQuery(location).attr('href', wdtWpDataTablesPage.liteVSPremiumUrl);
});
}).wdtBootstrapPopover('toggle');
}
function wdtNotify(title, message, type){
if(typeof title=='undefined'){
title='info';
}
if(typeof message=='undefined'){
message='info';
}
if(typeof type=='undefined'){
type='info';
}
switch (type){
case 'danger':
icon='wpdt-icon-exclamation-triangle';
break;
case 'success':
default:
icon='wpdt-icon-check-circle-full';
break;
}
jQuery.growl({
icon: icon,
title: ' ' + title + ' ',
message: message,
url: ''
}, {
element: 'body',
type: type,
allow_dismiss: true,
placement: {
from: 'top',
align: 'right'
},
offset: {
x: 20,
y: 40
},
spacing: 10,
z_index: 100002,
delay: 2500,
timer: 1000,
url_target: '_blank',
mouse_over: false,
animate: {
enter: 'animated fadeIn',
exit: 'animated fadeOut'
},
icon_type: 'class',
template: '<div data-growl="container" class="wpdt-c alert" role="alert">' +
'<button type="button" class="close" data-growl="dismiss">' +
'<span aria-hidden="true">&times;</span>' +
'<span class="sr-only">' + wpdatatables_edit_strings.close + '</span>' +
'</button>' +
'<span data-growl="icon"></span>' +
'<span data-growl="title"></span>' +
'<span data-growl="message"></span>' +
'<a href="#" data-growl="url"></a>' +
'</div>'
});
};