Sindbad~EG File Manager
$(function () {
// ------------------------------------------------------- //
// Tooltips init
// ------------------------------------------------------ //
$('[data-toggle="tooltip"]').tooltip()
// ------------------------------------------------------- //
// Universal Form Validation
// ------------------------------------------------------ //
$('.form-validate').each(function() {
$(this).validate({
errorElement: "div",
errorClass: 'is-invalid',
validClass: 'is-valid',
ignore: ':hidden:not(.summernote),.note-editable.card-block',
errorPlacement: function (error, element) {
// Add the `invalid-feedback` class to the error element
error.addClass("invalid-feedback");
//console.log(element);
if (element.prop("type") === "checkbox") {
error.insertAfter(element.siblings("label"));
}
else {
error.insertAfter(element);
}
}
});
});
// ------------------------------------------------------- //
// Material Inputs
// ------------------------------------------------------ //
var materialInputs = $('input.input-material');
// activate labels for prefilled values
materialInputs.filter(function() { return $(this).val() !== ""; }).siblings('.label-material').addClass('active');
// move label on focus
materialInputs.on('focus', function () {
$(this).siblings('.label-material').addClass('active');
});
// remove/keep label on blur
materialInputs.on('blur', function () {
$(this).siblings('.label-material').removeClass('active');
if ($(this).val() !== '') {
$(this).siblings('.label-material').addClass('active');
} else {
$(this).siblings('.label-material').removeClass('active');
}
});
// ------------------------------------------------------- //
// Footer
// ------------------------------------------------------ //
var pageContent = $('.page-content');
$(document).on('sidebarChanged', function () {
adjustFooter();
});
$(window).on('resize', function(){
adjustFooter();
})
function adjustFooter() {
var footerBlockHeight = $('.footer__block').outerHeight();
pageContent.css('padding-bottom', footerBlockHeight + 'px');
}
// ------------------------------------------------------- //
// Adding fade effect to dropdowns
// ------------------------------------------------------ //
$('.dropdown').on('show.bs.dropdown', function () {
$(this).find('.dropdown-menu').first().stop(true, true).fadeIn(100).addClass('active');
});
$('.dropdown').on('hide.bs.dropdown', function () {
$(this).find('.dropdown-menu').first().stop(true, true).fadeOut(100).removeClass('active');
});
// ------------------------------------------------------- //
// Search Popup
// ------------------------------------------------------ //
$('.search-open').on('click', function (e) {
e.preventDefault();
$('.search-panel').fadeIn(100);
})
$('.search-panel .close-btn').on('click', function () {
$('.search-panel').fadeOut(100);
});
// ------------------------------------------------------- //
// Sidebar Functionality
// ------------------------------------------------------ //
$('.sidebar-toggle').on('click', function () {
$(this).toggleClass('active');
$('#sidebar').toggleClass('shrinked');
$('.page-content').toggleClass('active');
$(document).trigger('sidebarChanged');
if ($('.sidebar-toggle').hasClass('active')) {
$('.navbar-brand .brand-sm').addClass('visible');
$('.navbar-brand .brand-big').removeClass('visible');
$(this).find('i').attr('class', 'fa fa-long-arrow-right');
} else {
$('.navbar-brand .brand-sm').removeClass('visible');
$('.navbar-brand .brand-big').addClass('visible');
$(this).find('i').attr('class', 'fa fa-long-arrow-left');
}
});
// ------------------------------------------------------ //
// For demo purposes, can be deleted
// ------------------------------------------------------ //
if ($('#style-switch').length > 0) {
var stylesheet = $('link#theme-stylesheet');
$("<link id='new-stylesheet' rel='stylesheet'>").insertAfter(stylesheet);
var alternateColour = $('link#new-stylesheet');
if ($.cookie("theme_csspath")) {
alternateColour.attr("href", $.cookie("theme_csspath"));
}
$("#colour").change(function () {
if ($(this).val() !== '') {
var theme_csspath = 'css/style.' + $(this).val() + '.css';
alternateColour.attr("href", theme_csspath);
$.cookie("theme_csspath", theme_csspath, {
expires: 365,
path: document.URL.substr(0, document.URL.lastIndexOf('/'))
});
}
return false;
});
}
});
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists