AdminLTE/build/js/Layout.js

198 lines
5 KiB
JavaScript
Raw Normal View History

2016-01-16 17:27:23 +01:00
/**
* --------------------------------------------
* AdminLTE Layout.js
* License MIT
* --------------------------------------------
*/
const Layout = (($) => {
/**
* Constants
* ====================================================
*/
2017-01-03 16:42:20 +01:00
const NAME = 'Layout'
const DATA_KEY = 'lte.layout'
const EVENT_KEY = `.${DATA_KEY}`
2016-01-16 17:27:23 +01:00
const JQUERY_NO_CONFLICT = $.fn[NAME]
const Event = {
SIDEBAR: 'sidebar'
}
const Selector = {
2017-01-03 16:42:20 +01:00
HEADER : '.main-header',
MAIN_SIDEBAR : '.main-sidebar',
2019-03-24 17:58:28 +01:00
SIDEBAR : '.main-sidebar .sidebar',
2017-01-03 16:42:20 +01:00
CONTENT : '.content-wrapper',
BRAND : '.brand-link',
2017-01-03 16:42:20 +01:00
CONTENT_HEADER : '.content-header',
WRAPPER : '.wrapper',
2016-01-16 17:27:23 +01:00
CONTROL_SIDEBAR: '.control-sidebar',
2017-01-03 16:42:20 +01:00
LAYOUT_FIXED : '.layout-fixed',
FOOTER : '.main-footer',
PUSHMENU_BTN : '[data-widget="pushmenu"]',
LOGIN_BOX : '.login-box',
REGISTER_BOX : '.register-box'
2016-01-16 17:27:23 +01:00
}
const ClassName = {
HOLD : 'hold-transition',
SIDEBAR : 'main-sidebar',
CONTENT_FIXED : 'content-fixed',
SIDEBAR_FOCUSED: 'sidebar-focused',
LAYOUT_FIXED : 'layout-fixed',
NAVBAR_FIXED : 'layout-navbar-fixed',
FOOTER_FIXED : 'layout-footer-fixed',
LOGIN_PAGE : 'login-page',
REGISTER_PAGE : 'register-page',
}
const Default = {
scrollbarTheme : 'os-theme-light',
scrollbarAutoHide: 'l'
2016-01-16 17:27:23 +01:00
}
/**
* Class Definition
* ====================================================
*/
class Layout {
constructor(element, config) {
this._config = config
2016-01-16 17:27:23 +01:00
this._element = element
this._init()
}
// Public
fixLayoutHeight() {
2018-03-17 18:07:55 +01:00
const heights = {
2019-09-03 12:36:55 +02:00
window: $(window).height(),
header: $(Selector.HEADER).length !== 0 ? $(Selector.HEADER).outerHeight() : 0,
footer: $(Selector.FOOTER).length !== 0 ? $(Selector.FOOTER).outerHeight() : 0,
sidebar: $(Selector.SIDEBAR).length !== 0 ? $(Selector.SIDEBAR).height() : 0,
2018-03-17 18:07:55 +01:00
}
2019-03-24 17:58:28 +01:00
const max = this._max(heights)
2016-10-15 19:18:29 +02:00
if (max == heights.window) {
$(Selector.CONTENT).css('min-height', max - heights.header - heights.footer)
} else {
$(Selector.CONTENT).css('min-height', max - heights.header)
}
2019-10-12 11:36:52 +02:00
if ($('body').hasClass(ClassName.LAYOUT_FIXED)) {
2019-10-12 11:36:52 +02:00
$(Selector.CONTENT).css('min-height', max - heights.header - heights.footer)
if (typeof $.fn.overlayScrollbars !== 'undefined') {
$(Selector.SIDEBAR).overlayScrollbars({
className : this._config.scrollbarTheme,
sizeAutoCapable : true,
scrollbars : {
autoHide: this._config.scrollbarAutoHide,
clickScrolling : true
}
})
}
2019-03-24 17:58:28 +01:00
}
2016-01-16 17:27:23 +01:00
}
// Private
_init() {
// Activate layout height watcher
2016-01-16 17:27:23 +01:00
this.fixLayoutHeight()
2018-03-17 18:07:55 +01:00
$(Selector.SIDEBAR)
.on('collapsed.lte.treeview expanded.lte.treeview', () => {
this.fixLayoutHeight()
})
$(Selector.PUSHMENU_BTN)
.on('collapsed.lte.pushmenu shown.lte.pushmenu', () => {
2018-03-17 18:07:55 +01:00
this.fixLayoutHeight()
})
2019-03-24 18:15:36 +01:00
$(window).resize(() => {
2016-01-16 17:27:23 +01:00
this.fixLayoutHeight()
})
2016-10-22 21:32:28 +02:00
if (!$('body').hasClass(ClassName.LOGIN_PAGE) && !$('body').hasClass(ClassName.REGISTER_PAGE)) {
$('body, html').css('height', 'auto')
} else if ($('body').hasClass(ClassName.LOGIN_PAGE) || $('body').hasClass(ClassName.REGISTER_PAGE)) {
let box_height = $(Selector.LOGIN_BOX + ', ' + Selector.REGISTER_BOX).height()
$('body').css('min-height', box_height);
}
$('body.hold-transition').removeClass('hold-transition')
2016-01-16 17:27:23 +01:00
}
_max(numbers) {
// Calculate the maximum number in a list
2016-01-16 17:27:23 +01:00
let max = 0
2018-03-17 18:07:55 +01:00
Object.keys(numbers).forEach((key) => {
if (numbers[key] > max) {
max = numbers[key]
2016-01-16 17:27:23 +01:00
}
})
return max
}
// Static
static _jQueryInterface(config) {
2016-01-16 17:27:23 +01:00
return this.each(function () {
2019-11-17 11:53:47 +01:00
let data = $(this).data(DATA_KEY)
const _options = $.extend({}, Default, $(this).data())
2016-01-16 17:27:23 +01:00
if (!data) {
2019-11-17 11:53:47 +01:00
data = new Layout($(this), _options)
2016-01-16 17:27:23 +01:00
$(this).data(DATA_KEY, data)
}
if (config === 'init') {
data[config]()
2016-01-16 17:27:23 +01:00
}
})
}
}
/**
* Data API
* ====================================================
*/
$(window).on('load', () => {
Layout._jQueryInterface.call($('body'))
2018-02-04 00:45:19 +01:00
})
$(Selector.SIDEBAR + ' a').on('focusin', () => {
$(Selector.MAIN_SIDEBAR).addClass(ClassName.SIDEBAR_FOCUSED);
})
$(Selector.SIDEBAR + ' a').on('focusout', () => {
$(Selector.MAIN_SIDEBAR).removeClass(ClassName.SIDEBAR_FOCUSED);
})
2016-01-16 17:27:23 +01:00
/**
* jQuery API
* ====================================================
*/
$.fn[NAME] = Layout._jQueryInterface
$.fn[NAME].Constructor = Layout
2019-03-24 17:58:28 +01:00
$.fn[NAME].noConflict = function () {
2016-01-16 17:27:23 +01:00
$.fn[NAME] = JQUERY_NO_CONFLICT
return Layout._jQueryInterface
}
return Layout
})(jQuery)
2018-02-04 00:45:19 +01:00
export default Layout