mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
3.9 KiB
155 lines
3.9 KiB
/**
|
|
* --------------------------------------------
|
|
* AdminLTE ControlSidebar.js
|
|
* License MIT
|
|
* --------------------------------------------
|
|
*/
|
|
|
|
const ControlSidebar = (($) => {
|
|
/**
|
|
* Constants
|
|
* ====================================================
|
|
*/
|
|
|
|
const NAME = 'ControlSidebar'
|
|
const DATA_KEY = 'lte.controlsidebar'
|
|
const EVENT_KEY = `.${DATA_KEY}`
|
|
const JQUERY_NO_CONFLICT = $.fn[NAME]
|
|
const DATA_API_KEY = '.data-api'
|
|
|
|
const Event = {
|
|
COLLAPSED: `collapsed${EVENT_KEY}`,
|
|
EXPANDED: `expanded${EVENT_KEY}`
|
|
}
|
|
|
|
const Selector = {
|
|
CONTROL_SIDEBAR: '.control-sidebar',
|
|
DATA_TOGGLE : '[data-widget="control-sidebar"]',
|
|
MAIN_HEADER : '.main-header'
|
|
}
|
|
|
|
const ClassName = {
|
|
CONTROL_SIDEBAR_ANIMATE: 'control-sidebar-animate',
|
|
CONTROL_SIDEBAR_OPEN: 'control-sidebar-open',
|
|
CONTROL_SIDEBAR_SLIDE: 'control-sidebar-slide-open'
|
|
}
|
|
|
|
const Default = {
|
|
controlsidebarSlide: true
|
|
}
|
|
|
|
/**
|
|
* Class Definition
|
|
* ====================================================
|
|
*/
|
|
|
|
class ControlSidebar {
|
|
constructor(element, config) {
|
|
this._element = element
|
|
this._config = this._getConfig(config)
|
|
}
|
|
|
|
// Public
|
|
|
|
show() {
|
|
// Show the control sidebar
|
|
if (this._config.controlsidebarSlide) {
|
|
$('html').addClass(ClassName.CONTROL_SIDEBAR_ANIMATE)
|
|
$('body').removeClass(ClassName.CONTROL_SIDEBAR_SLIDE).delay(300).queue(function(){
|
|
$(Selector.CONTROL_SIDEBAR).hide()
|
|
$('html').removeClass(ClassName.CONTROL_SIDEBAR_ANIMATE)
|
|
$(this).dequeue()
|
|
})
|
|
} else {
|
|
$('body').removeClass(ClassName.CONTROL_SIDEBAR_OPEN)
|
|
}
|
|
|
|
const expandedEvent = $.Event(Event.EXPANDED)
|
|
$(this._element).trigger(expandedEvent)
|
|
}
|
|
|
|
collapse() {
|
|
// Collapse the control sidebar
|
|
if (this._config.controlsidebarSlide) {
|
|
$('html').addClass(ClassName.CONTROL_SIDEBAR_ANIMATE)
|
|
$(Selector.CONTROL_SIDEBAR).show().delay(10).queue(function(){
|
|
$('body').addClass(ClassName.CONTROL_SIDEBAR_SLIDE).delay(300).queue(function(){
|
|
$('html').removeClass(ClassName.CONTROL_SIDEBAR_ANIMATE)
|
|
$(this).dequeue()
|
|
})
|
|
$(this).dequeue()
|
|
})
|
|
} else {
|
|
$('body').addClass(ClassName.CONTROL_SIDEBAR_OPEN)
|
|
}
|
|
|
|
const collapsedEvent = $.Event(Event.COLLAPSED)
|
|
$(this._element).trigger(collapsedEvent)
|
|
}
|
|
|
|
toggle() {
|
|
const shouldOpen = $('body').hasClass(ClassName.CONTROL_SIDEBAR_OPEN) || $('body')
|
|
.hasClass(ClassName.CONTROL_SIDEBAR_SLIDE)
|
|
if (shouldOpen) {
|
|
// Open the control sidebar
|
|
this.show()
|
|
} else {
|
|
// Close the control sidebar
|
|
this.collapse()
|
|
}
|
|
}
|
|
|
|
// Private
|
|
|
|
_getConfig(config) {
|
|
return $.extend({}, Default, config)
|
|
}
|
|
|
|
// Static
|
|
|
|
static _jQueryInterface(operation) {
|
|
return this.each(function () {
|
|
let data = $(this).data(DATA_KEY)
|
|
|
|
if (!data) {
|
|
data = new ControlSidebar(this, $(this).data())
|
|
$(this).data(DATA_KEY, data)
|
|
}
|
|
|
|
if (data[operation] === 'undefined') {
|
|
throw new Error(`${operation} is not a function`)
|
|
}
|
|
|
|
data[operation]()
|
|
})
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* Data Api implementation
|
|
* ====================================================
|
|
*/
|
|
$(document).on('click', Selector.DATA_TOGGLE, function (event) {
|
|
event.preventDefault()
|
|
|
|
ControlSidebar._jQueryInterface.call($(this), 'toggle')
|
|
})
|
|
|
|
/**
|
|
* jQuery API
|
|
* ====================================================
|
|
*/
|
|
|
|
$.fn[NAME] = ControlSidebar._jQueryInterface
|
|
$.fn[NAME].Constructor = ControlSidebar
|
|
$.fn[NAME].noConflict = function () {
|
|
$.fn[NAME] = JQUERY_NO_CONFLICT
|
|
return ControlSidebar._jQueryInterface
|
|
}
|
|
|
|
return ControlSidebar
|
|
})(jQuery)
|
|
|
|
export default ControlSidebar
|