(function($) {
"use strict";
// ______________ Sidebar
$(document).ready(function() {
$(".app-sidebar a").each(function() {
var pageUrl = window.location.href.split(/[?#]/)[0];
if (this.href == pageUrl) {
$(this).addClass("active");
$(this).parent().addClass("active"); // add active to li of the current link
$(this).parent().parent().prev().addClass("active"); // add active class to an anchor
$(this).parent().parent().prev().click(); // click the item to make it drop
}
});
});
// ______________ Global Loader
$(window).on("load", function(e) {
$("#global-loader").fadeOut("slow");
})
// ______________Full screen
$("#fullscreen-button").on("click", function toggleFullScreen() {
if ((document.fullScreenElement !== undefined && document.fullScreenElement === null) || (document.msFullscreenElement !== undefined && document.msFullscreenElement === null) || (document.mozFullScreen !== undefined && !document.mozFullScreen) || (document.webkitIsFullScreen !== undefined && !document.webkitIsFullScreen)) {
if (document.documentElement.requestFullScreen) {
document.documentElement.requestFullScreen();
} else if (document.documentElement.mozRequestFullScreen) {
document.documentElement.mozRequestFullScreen();
} else if (document.documentElement.webkitRequestFullScreen) {
document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
} else if (document.documentElement.msRequestFullscreen) {
document.documentElement.msRequestFullscreen();
}
} else {
if (document.cancelFullScreen) {
document.cancelFullScreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitCancelFullScreen) {
document.webkitCancelFullScreen();
} else if (document.msExitFullscreen) {
document.msExitFullscreen();
}
}
})
// ______________mCustomScrollbar
$(".vscroll").mCustomScrollbar();
$(".app-sidebar").mCustomScrollbar({
theme:"minimal",
autoHideScrollbar: true,
scrollbarPosition: "outside"
});
// ______________Loader
$(window).on("load", function(e) {
$("#loading").fadeOut("slow");
})
// ______________Cover Image
$(".cover-image").each(function() {
var attr = $(this).attr('data-image-src');
if (typeof attr !== typeof undefined && attr !== false) {
$(this).css('background', 'url(' + attr + ') center center');
}
});
// ______________ Back to Top
$(window).on("scroll", function(e) {
if ($(this).scrollTop() > 0) {
$('#back-to-top').fadeIn('slow');
} else {
$('#back-to-top').fadeOut('slow');
}
});
$("#back-to-top").on("click", function(e) {
$("html, body").animate({
scrollTop: 0
}, 600);
return false;
});
// ______________Rating Stars
var ratingOptions = {
selectors: {
starsSelector: '.rating-stars',
starSelector: '.rating-star',
starActiveClass: 'is--active',
starHoverClass: 'is--hover',
starNoHoverClass: 'is--no-hover',
targetFormElementSelector: '.rating-value'
}
};
$(".rating-stars").ratingStars(ratingOptions);
// ______________Global Search
$(document).on("click", "[data-toggle='search']", function(e) {
var body = $("body");
if(body.hasClass('search-gone')) {
body.addClass('search-gone');
body.removeClass('search-show');
}else{
body.removeClass('search-gone');
body.addClass('search-show');
}
});
var toggleSidebar = function() {
var w = $(window);
if(w.outerWidth() <= 1024) {
$("body").addClass("sidebar-gone");
$(document).off("click", "body").on("click", "body", function(e) {
if($(e.target).hasClass('sidebar-show') || $(e.target).hasClass('search-show')) {
$("body").removeClass("sidebar-show");
$("body").addClass("sidebar-gone");
$("body").removeClass("search-show");
}
});
}else{
$("body").removeClass("sidebar-gone");
}
}
toggleSidebar();
$(window).resize(toggleSidebar);
// ______________Chart-circle
if ($('.chart-circle').length) {
$('.chart-circle').each(function() {
let $this = $(this);
$this.circleProgress({
fill: {
color: $this.attr('data-color')
},
size: $this.height(),
startAngle: -Math.PI / 4 * 2,
emptyFill: '#e7e9f1',
lineCap: ''
});
});
}
const DIV_CARD = 'div.card';
// ______________Tooltip
$('[data-toggle="tooltip"]').tooltip();
// ______________Popover
$('[data-toggle="popover"]').popover({
html: true
});
// ______________Remove Card
$(document).on('click', '[data-toggle="card-remove"]', function(e) {
let $card = $(this).closest(DIV_CARD);
$card.remove();
e.preventDefault();
return false;
});
// ______________Card Collapse
$(document).on('click', '[data-toggle="card-collapse"]', function(e) {
let $card = $(this).closest(DIV_CARD);
$card.toggleClass('card-collapsed');
e.preventDefault();
return false;
});
// ______________Card Fullscreen
$(document).on('click', '[data-toggle="card-fullscreen"]', function(e) {
let $card = $(this).closest(DIV_CARD);
$card.toggleClass('card-fullscreen').removeClass('card-collapsed');
e.preventDefault();
return false;
});
// ______________Counterup
$('.counter').countUp();
// ______________Dropdown
$('.dropdown-toggle').dropdown()
})(jQuery);