AdminLTE/build/js/Layout.js

233 lines
6.4 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',
CONTROL_SIDEBAR_CONTENT: '.control-sidebar-content',
CONTROL_SIDEBAR_BTN: '[data-widget="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',
CONTROL_SIDEBAR_SLIDE_OPEN: 'control-sidebar-slide-open',
CONTROL_SIDEBAR_OPEN: 'control-sidebar-open',
}
const Default = {
scrollbarTheme : 'os-theme-light',
scrollbarAutoHide: 'l',
loginRegisterAutoHeight: true,
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(extra = null) {
let control_sidebar = 0
if ($('body').hasClass(ClassName.CONTROL_SIDEBAR_SLIDE_OPEN) || $('body').hasClass(ClassName.CONTROL_SIDEBAR_OPEN) || extra == 'control_sidebar') {
control_sidebar = $(Selector.CONTROL_SIDEBAR_CONTENT).height()
}
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,
control_sidebar: control_sidebar,
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.control_sidebar) {
$(Selector.CONTENT).css('min-height', max)
} else 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
}
fixLoginRegisterHeight() {
if ($(Selector.LOGIN_BOX + ', ' + Selector.REGISTER_BOX).length === 0) {
$('body, html').css('height', 'auto')
} else if ($(Selector.LOGIN_BOX + ', ' + Selector.REGISTER_BOX).length !== 0) {
let box_height = $(Selector.LOGIN_BOX + ', ' + Selector.REGISTER_BOX).height()
if ($('body').css('min-height') !== box_height) {
$('body').css('min-height', box_height)
}
}
}
2016-01-16 17:27:23 +01:00
// Private
_init() {
// Activate layout height watcher
2016-01-16 17:27:23 +01:00
this.fixLayoutHeight()
if (this._config.loginRegisterAutoHeight === true) {
this.fixLoginRegisterHeight()
} else if (Number.isInteger(this._config.loginRegisterAutoHeight)) {
setInterval(this.fixLoginRegisterHeight, this._config.loginRegisterAutoHeight);
}
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()
})
$(Selector.CONTROL_SIDEBAR_BTN)
.on('collapsed.lte.controlsidebar', () => {
this.fixLayoutHeight()
})
.on('expanded.lte.controlsidebar', () => {
this.fixLayoutHeight('control_sidebar')
})
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
$('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
2019-12-12 09:49:02 +01:00
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)
}
2019-12-12 09:49:02 +01:00
if (config === 'init' || config === '') {
data['_init']()
} else if (config === 'fixLayoutHeight' || config === 'fixLoginRegisterHeight') {
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