123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487 |
- /**
- Core script to handle the entire theme and core functions
- **/
- var Layout = function() {
- var layoutImgPath = 'admin/layout/img/';
- var layoutCssPath = 'admin/layout/css/';
- var resBreakpointMd = Metronic.getResponsiveBreakpoint('md');
- //* BEGIN:CORE HANDLERS *//
- // this function handles responsive layout on screen size resize or mobile device rotate.
- // Handle sidebar menu links
- var handleSidebarMenuActiveLink = function(mode, el) {
- var url = location.hash.toLowerCase();
- var menu = $('.page-sidebar-menu');
- if (mode === 'click' || mode === 'set') {
- el = $(el);
- } else if (mode === 'match') {
- menu.find("li > a").each(function() {
- var path = $(this).attr("href").toLowerCase();
- // url match condition
- if (path.length > 1 && url.substr(1, path.length - 1) == path.substr(1)) {
- el = $(this);
- return;
- }
- });
- }
- if (!el || el.size() == 0) {
- return;
- }
- if (el.attr('href').toLowerCase() === 'javascript:;' || el.attr('href').toLowerCase() === '#') {
- return;
- }
- var slideSpeed = parseInt(menu.data("slide-speed"));
- var keepExpand = menu.data("keep-expanded");
- // disable active states
- menu.find('li.active').removeClass('active');
- menu.find('li > a > .selected').remove();
- if (menu.hasClass('page-sidebar-menu-hover-submenu') === false) {
- menu.find('li.open').each(function(){
- if ($(this).children('.sub-menu').size() === 0) {
- $(this).removeClass('open');
- $(this).find('> a > .arrow.open').removeClass('open');
- }
- });
- } else {
- menu.find('li.open').removeClass('open');
- }
- el.parents('li').each(function () {
- $(this).addClass('active');
- $(this).find('> a > span.arrow').addClass('open');
- if ($(this).parent('ul.page-sidebar-menu').size() === 1) {
- $(this).find('> a').append('<span class="selected"></span>');
- }
-
- if ($(this).children('ul.sub-menu').size() === 1) {
- $(this).addClass('open');
- }
- });
- if (mode === 'click') {
- if (Metronic.getViewPort().width < resBreakpointMd && $('.page-sidebar').hasClass("in")) { // close the menu on mobile view while laoding a page
- $('.page-header .responsive-toggler').click();
- }
- }
- };
- // Handle sidebar menu
- var handleSidebarMenu = function() {
- $('.page-sidebar').on('click', 'li > a', function(e) {
- if (Metronic.getViewPort().width >= resBreakpointMd && $(this).parents('.page-sidebar-menu-hover-submenu').size() === 1) { // exit of hover sidebar menu
- return;
- }
- if ($(this).next().hasClass('sub-menu') === false) {
- if (Metronic.getViewPort().width < resBreakpointMd && $('.page-sidebar').hasClass("in")) { // close the menu on mobile view while laoding a page
- $('.page-header .responsive-toggler').click();
- }
- return;
- }
- if ($(this).next().hasClass('sub-menu always-open')) {
- return;
- }
- var parent = $(this).parent().parent();
- var the = $(this);
- var menu = $('.page-sidebar-menu');
- var sub = $(this).next();
- var autoScroll = menu.data("auto-scroll");
- var slideSpeed = parseInt(menu.data("slide-speed"));
- var keepExpand = menu.data("keep-expanded");
- if (keepExpand !== true) {
- parent.children('li.open').children('a').children('.arrow').removeClass('open');
- parent.children('li.open').children('.sub-menu:not(.always-open)').slideUp(slideSpeed);
- parent.children('li.open').removeClass('open');
- }
- var slideOffeset = -200;
- if (sub.is(":visible")) {
- $('.arrow', $(this)).removeClass("open");
- $(this).parent().removeClass("open");
- sub.slideUp(slideSpeed, function() {
- if (autoScroll === true && $('body').hasClass('page-sidebar-closed') === false) {
- if ($('body').hasClass('page-sidebar-fixed')) {
- menu.slimScroll({
- 'scrollTo': (the.position()).top
- });
- } else {
- Metronic.scrollTo(the, slideOffeset);
- }
- }
- });
- } else {
- $('.arrow', $(this)).addClass("open");
- $(this).parent().addClass("open");
- sub.slideDown(slideSpeed, function() {
- if (autoScroll === true && $('body').hasClass('page-sidebar-closed') === false) {
- if ($('body').hasClass('page-sidebar-fixed')) {
- menu.slimScroll({
- 'scrollTo': (the.position()).top
- });
- } else {
- Metronic.scrollTo(the, slideOffeset);
- }
- }
- });
- }
- e.preventDefault();
- });
- // handle ajax links within sidebar menu
- $('.page-sidebar').on('click', ' li > a.ajaxify', function(e) {
- e.preventDefault();
- Metronic.scrollTop();
- var url = $(this).attr("href");
- var menuContainer = $('.page-sidebar ul');
- var pageContent = $('.page-content');
- var pageContentBody = $('.page-content .page-content-body');
- menuContainer.children('li.active').removeClass('active');
- menuContainer.children('arrow.open').removeClass('open');
- $(this).parents('li').each(function() {
- $(this).addClass('active');
- $(this).children('a > span.arrow').addClass('open');
- });
- $(this).parents('li').addClass('active');
- if (Metronic.getViewPort().width < resBreakpointMd && $('.page-sidebar').hasClass("in")) { // close the menu on mobile view while laoding a page
- $('.page-header .responsive-toggler').click();
- }
- Metronic.startPageLoading();
- var the = $(this);
- $.ajax({
- type: "GET",
- cache: false,
- url: url,
- dataType: "html",
- success: function(res) {
- if (the.parents('li.open').size() === 0) {
- $('.page-sidebar-menu > li.open > a').click();
- }
- Metronic.stopPageLoading();
- pageContentBody.html(res);
- Layout.fixContentHeight(); // fix content height
- Metronic.initAjax(); // initialize core stuff
- },
- error: function(xhr, ajaxOptions, thrownError) {
- Metronic.stopPageLoading();
- pageContentBody.html('<h4>Could not load the requested content.</h4>');
- }
- });
- });
- // handle ajax link within main content
- $('.page-content').on('click', '.ajaxify', function(e) {
- e.preventDefault();
- Metronic.scrollTop();
- var url = $(this).attr("href");
- var pageContent = $('.page-content');
- var pageContentBody = $('.page-content .page-content-body');
- Metronic.startPageLoading();
- if (Metronic.getViewPort().width < resBreakpointMd && $('.page-sidebar').hasClass("in")) { // close the menu on mobile view while laoding a page
- $('.page-header .responsive-toggler').click();
- }
- $.ajax({
- type: "GET",
- cache: false,
- url: url,
- dataType: "html",
- success: function(res) {
- Metronic.stopPageLoading();
- pageContentBody.html(res);
- Layout.fixContentHeight(); // fix content height
- Metronic.initAjax(); // initialize core stuff
- },
- error: function(xhr, ajaxOptions, thrownError) {
- pageContentBody.html('<h4>Could not load the requested content.</h4>');
- Metronic.stopPageLoading();
- }
- });
- });
- // handle scrolling to top on responsive menu toggler click when header is fixed for mobile view
- $(document).on('click', '.page-header-fixed-mobile .responsive-toggler', function(){
- Metronic.scrollTop();
- });
- };
- // Helper function to calculate sidebar height for fixed sidebar layout.
- var _calculateFixedSidebarViewportHeight = function() {
- var sidebarHeight = Metronic.getViewPort().height - $('.page-header').outerHeight() - 30;
- if ($('body').hasClass("page-footer-fixed")) {
- sidebarHeight = sidebarHeight - $('.page-footer').outerHeight();
- }
- return sidebarHeight;
- };
- // Handles fixed sidebar
- var handleFixedSidebar = function() {
- var menu = $('.page-sidebar-menu');
- Metronic.destroySlimScroll(menu);
- if ($('.page-sidebar-fixed').size() === 0) {
- return;
- }
- if (Metronic.getViewPort().width >= resBreakpointMd) {
- menu.attr("data-height", _calculateFixedSidebarViewportHeight());
- Metronic.initSlimScroll(menu);
- }
- };
- // Handles sidebar toggler to close/hide the sidebar.
- var handleFixedSidebarHoverEffect = function () {
- var body = $('body');
- if (body.hasClass('page-sidebar-fixed')) {
- $('.page-sidebar').on('mouseenter', function () {
- if (body.hasClass('page-sidebar-closed')) {
- $(this).find('.page-sidebar-menu').removeClass('page-sidebar-menu-closed');
- }
- }).on('mouseleave', function () {
- if (body.hasClass('page-sidebar-closed')) {
- $(this).find('.page-sidebar-menu').addClass('page-sidebar-menu-closed');
- }
- });
- }
- };
- // Hanles sidebar toggler
- var handleSidebarToggler = function() {
- var body = $('body');
- if ($.cookie && $.cookie('sidebar_closed') === '1' && Metronic.getViewPort().width >= resBreakpointMd) {
- $('body').addClass('page-sidebar-closed');
- $('.page-sidebar-menu').addClass('page-sidebar-menu-closed');
- }
- // handle sidebar show/hide
- $('body').on('click', '.sidebar-toggler', function(e) {
- var sidebar = $('.page-sidebar');
- var sidebarMenu = $('.page-sidebar-menu');
- $(".sidebar-search", sidebar).removeClass("open");
- if (body.hasClass("page-sidebar-closed")) {
- body.removeClass("page-sidebar-closed");
- sidebarMenu.removeClass("page-sidebar-menu-closed");
- if ($.cookie) {
- $.cookie('sidebar_closed', '0');
- }
- } else {
- body.addClass("page-sidebar-closed");
- sidebarMenu.addClass("page-sidebar-menu-closed");
- if (body.hasClass("page-sidebar-fixed")) {
- sidebarMenu.trigger("mouseleave");
- }
- if ($.cookie) {
- $.cookie('sidebar_closed', '1');
- }
- }
- $(window).trigger('resize');
- });
- handleFixedSidebarHoverEffect();
- // handle the search bar close
- $('.page-sidebar').on('click', '.sidebar-search .remove', function(e) {
- e.preventDefault();
- $('.sidebar-search').removeClass("open");
- });
- // handle the search query submit on enter press
- $('.page-sidebar .sidebar-search').on('keypress', 'input.form-control', function(e) {
- if (e.which == 13) {
- $('.sidebar-search').submit();
- return false; //<---- Add this line
- }
- });
- // handle the search submit(for sidebar search and responsive mode of the header search)
- $('.sidebar-search .submit').on('click', function(e) {
- e.preventDefault();
- if ($('body').hasClass("page-sidebar-closed")) {
- if ($('.sidebar-search').hasClass('open') === false) {
- if ($('.page-sidebar-fixed').size() === 1) {
- $('.page-sidebar .sidebar-toggler').click(); //trigger sidebar toggle button
- }
- $('.sidebar-search').addClass("open");
- } else {
- $('.sidebar-search').submit();
- }
- } else {
- $('.sidebar-search').submit();
- }
- });
- // handle close on body click
- if ($('.sidebar-search').size() !== 0) {
- $('.sidebar-search .input-group').on('click', function(e) {
- e.stopPropagation();
- });
- $('body').on('click', function() {
- if ($('.sidebar-search').hasClass('open')) {
- $('.sidebar-search').removeClass("open");
- }
- });
- }
- };
- // Handles the horizontal menu
- var handleHeader = function() {
- // handle search box expand/collapse
- $('.page-header').on('click', '.search-form', function(e) {
- $(this).addClass("open");
- $(this).find('.form-control').focus();
- $('.page-header .search-form .form-control').on('blur', function(e) {
- $(this).closest('.search-form').removeClass("open");
- $(this).unbind("blur");
- });
- });
- // handle hor menu search form on enter press
- $('.page-header').on('keypress', '.hor-menu .search-form .form-control', function(e) {
- if (e.which == 13) {
- $(this).closest('.search-form').submit();
- return false;
- }
- });
- // handle header search button click
- $('.page-header').on('mousedown', '.search-form.open .submit', function(e) {
- e.preventDefault();
- e.stopPropagation();
- $(this).closest('.search-form').submit();
- });
- };
- // Handles the go to top button at the footer
- var handleGoTop = function() {
- var offset = 300;
- var duration = 500;
- if (navigator.userAgent.match(/iPhone|iPad|iPod/i)) { // ios supported
- $(window).bind("touchend touchcancel touchleave", function(e) {
- if ($(this).scrollTop() > offset) {
- $('.scroll-to-top').fadeIn(duration);
- } else {
- $('.scroll-to-top').fadeOut(duration);
- }
- });
- } else { // general
- $(window).scroll(function() {
- if ($(this).scrollTop() > offset) {
- $('.scroll-to-top').fadeIn(duration);
- } else {
- $('.scroll-to-top').fadeOut(duration);
- }
- });
- }
- $('.scroll-to-top').click(function(e) {
- e.preventDefault();
- $('html, body').animate({
- scrollTop: 0
- }, duration);
- return false;
- });
- };
- //* END:CORE HANDLERS *//
- return {
- // Main init methods to initialize the layout
- // IMPORTANT!!!: Do not modify the core handlers call order.
- initHeader: function() {
- handleHeader(); // handles horizontal menu
- },
- setSidebarMenuActiveLink: function(mode, el) {
- handleSidebarMenuActiveLink(mode, el);
- },
- initSidebar: function() {
- //layout handlers
- handleFixedSidebar(); // handles fixed sidebar menu
- handleSidebarMenu(); // handles main menu
- handleSidebarToggler(); // handles sidebar hide/show
- if (Metronic.isAngularJsApp()) {
- handleSidebarMenuActiveLink('match'); // init sidebar active links
- }
- Metronic.addResizeHandler(handleFixedSidebar); // reinitialize fixed sidebar on window resize
- },
- initContent: function() {
- return;
- },
- initFooter: function() {
- handleGoTop(); //handles scroll to top functionality in the footer
- },
- init: function () {
- this.initHeader();
- this.initSidebar();
- this.initContent();
- this.initFooter();
- },
- //public function to fix the sidebar and content height accordingly
- fixContentHeight: function() {
- return;
- },
- initFixedSidebarHoverEffect: function() {
- handleFixedSidebarHoverEffect();
- },
- initFixedSidebar: function() {
- handleFixedSidebar();
- },
- getLayoutImgPath: function() {
- return Metronic.getAssetsPath() + layoutImgPath;
- },
- getLayoutCssPath: function() {
- return Metronic.getAssetsPath() + layoutCssPath;
- }
- };
- }();
|