| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 | 
							- /**
 
-  * --------------------------------------------
 
-  * AdminLTE ControlSidebar.js
 
-  * License MIT
 
-  * --------------------------------------------
 
-  */
 
- const ControlSidebar = (($) => {
 
-   /**
 
-    * Constants
 
-    * ====================================================
 
-    */
 
-   const NAME               = 'ControlSidebar'
 
-   const DATA_KEY           = 'lte.control.sidebar'
 
-   const EVENT_KEY          = `.${DATA_KEY}`
 
-   const JQUERY_NO_CONFLICT = $.fn[NAME]
 
-   const DATA_API_KEY       = '.data-api'
 
-   const Event = {
 
-     CLICK_DATA_API: `click${EVENT_KEY}${DATA_API_KEY}`
 
-   }
 
-   const Selector = {
 
-     CONTROL_SIDEBAR: '.control-sidebar',
 
-     DATA_TOGGLE    : '[data-widget="control-sidebar"]',
 
-     MAIN_HEADER    : '.main-header'
 
-   }
 
-   const ClassName = {
 
-     CONTROL_SIDEBAR_OPEN : 'control-sidebar-open',
 
-     CONTROL_SIDEBAR_SLIDE: 'control-sidebar-slide-open'
 
-   }
 
-   const Default = {
 
-     slide: 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.slide) {
 
-         $('body').removeClass(ClassName.CONTROL_SIDEBAR_SLIDE)
 
-       } else {
 
-         $('body').removeClass(ClassName.CONTROL_SIDEBAR_OPEN)
 
-       }
 
-     }
 
-     collapse() {
 
-       // Collapse the control sidebar
 
-       if (this._config.slide) {
 
-         $('body').addClass(ClassName.CONTROL_SIDEBAR_SLIDE)
 
-       } else {
 
-         $('body').addClass(ClassName.CONTROL_SIDEBAR_OPEN)
 
-       }
 
-     }
 
-     toggle() {
 
-       this._setMargin()
 
-       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)
 
-     }
 
-     _setMargin() {
 
-       $(Selector.CONTROL_SIDEBAR).css({
 
-         top: $(Selector.MAIN_HEADER).outerHeight()
 
-       })
 
-     }
 
-     // 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
 
 
  |