Layout.js 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. /**
  2. * --------------------------------------------
  3. * AdminLTE Layout.js
  4. * License MIT
  5. * --------------------------------------------
  6. */
  7. import $ from 'jquery'
  8. /**
  9. * Constants
  10. * ====================================================
  11. */
  12. const NAME = 'Layout'
  13. const DATA_KEY = 'lte.layout'
  14. const JQUERY_NO_CONFLICT = $.fn[NAME]
  15. const SELECTOR_HEADER = '.main-header'
  16. const SELECTOR_MAIN_SIDEBAR = '.main-sidebar'
  17. const SELECTOR_SIDEBAR = '.main-sidebar .sidebar'
  18. const SELECTOR_CONTENT = '.content-wrapper'
  19. const SELECTOR_CONTROL_SIDEBAR_CONTENT = '.control-sidebar-content'
  20. const SELECTOR_CONTROL_SIDEBAR_BTN = '[data-widget="control-sidebar"]'
  21. const SELECTOR_FOOTER = '.main-footer'
  22. const SELECTOR_PUSHMENU_BTN = '[data-widget="pushmenu"]'
  23. const SELECTOR_LOGIN_BOX = '.login-box'
  24. const SELECTOR_REGISTER_BOX = '.register-box'
  25. const SELECTOR_PRELOADER = '.preloader'
  26. const CLASS_NAME_SIDEBAR_COLLAPSED = 'sidebar-collapse'
  27. const CLASS_NAME_SIDEBAR_FOCUSED = 'sidebar-focused'
  28. const CLASS_NAME_LAYOUT_FIXED = 'layout-fixed'
  29. const CLASS_NAME_CONTROL_SIDEBAR_SLIDE_OPEN = 'control-sidebar-slide-open'
  30. const CLASS_NAME_CONTROL_SIDEBAR_OPEN = 'control-sidebar-open'
  31. const Default = {
  32. scrollbarTheme: 'os-theme-light',
  33. scrollbarAutoHide: 'l',
  34. panelAutoHeight: true,
  35. panelAutoHeightMode: 'min-height',
  36. preloadDuration: 200,
  37. loginRegisterAutoHeight: true
  38. }
  39. /**
  40. * Class Definition
  41. * ====================================================
  42. */
  43. class Layout {
  44. constructor(element, config) {
  45. this._config = config
  46. this._element = element
  47. }
  48. // Public
  49. fixLayoutHeight(extra = null) {
  50. const $body = $('body')
  51. let controlSidebar = 0
  52. if ($body.hasClass(CLASS_NAME_CONTROL_SIDEBAR_SLIDE_OPEN) || $body.hasClass(CLASS_NAME_CONTROL_SIDEBAR_OPEN) || extra === 'control_sidebar') {
  53. controlSidebar = $(SELECTOR_CONTROL_SIDEBAR_CONTENT).outerHeight()
  54. }
  55. const heights = {
  56. window: $(window).height(),
  57. header: $(SELECTOR_HEADER).length > 0 ? $(SELECTOR_HEADER).outerHeight() : 0,
  58. footer: $(SELECTOR_FOOTER).length > 0 ? $(SELECTOR_FOOTER).outerHeight() : 0,
  59. sidebar: $(SELECTOR_SIDEBAR).length > 0 ? $(SELECTOR_SIDEBAR).height() : 0,
  60. controlSidebar
  61. }
  62. const max = this._max(heights)
  63. let offset = this._config.panelAutoHeight
  64. if (offset === true) {
  65. offset = 0
  66. }
  67. const $contentSelector = $(SELECTOR_CONTENT)
  68. if (offset !== false) {
  69. if (max === heights.controlSidebar) {
  70. $contentSelector.css(this._config.panelAutoHeightMode, (max + offset))
  71. } else if (max === heights.window) {
  72. $contentSelector.css(this._config.panelAutoHeightMode, (max + offset) - heights.header - heights.footer)
  73. } else {
  74. $contentSelector.css(this._config.panelAutoHeightMode, (max + offset) - heights.header)
  75. }
  76. if (this._isFooterFixed()) {
  77. $contentSelector.css(this._config.panelAutoHeightMode, parseFloat($contentSelector.css(this._config.panelAutoHeightMode)) + heights.footer)
  78. }
  79. }
  80. if (!$body.hasClass(CLASS_NAME_LAYOUT_FIXED)) {
  81. return
  82. }
  83. if (typeof $.fn.overlayScrollbars !== 'undefined') {
  84. $(SELECTOR_SIDEBAR).overlayScrollbars({
  85. className: this._config.scrollbarTheme,
  86. sizeAutoCapable: true,
  87. scrollbars: {
  88. autoHide: this._config.scrollbarAutoHide,
  89. clickScrolling: true
  90. }
  91. })
  92. } else {
  93. $(SELECTOR_SIDEBAR).css('overflow-y', 'auto')
  94. }
  95. }
  96. fixLoginRegisterHeight() {
  97. const $body = $('body')
  98. const $selector = $(`${SELECTOR_LOGIN_BOX}, ${SELECTOR_REGISTER_BOX}`)
  99. if ($selector.length === 0) {
  100. $body.css('height', 'auto')
  101. $('html').css('height', 'auto')
  102. } else {
  103. const boxHeight = $selector.height()
  104. if ($body.css(this._config.panelAutoHeightMode) !== boxHeight) {
  105. $body.css(this._config.panelAutoHeightMode, boxHeight)
  106. }
  107. }
  108. }
  109. // Private
  110. _init() {
  111. // Activate layout height watcher
  112. this.fixLayoutHeight()
  113. if (this._config.loginRegisterAutoHeight === true) {
  114. this.fixLoginRegisterHeight()
  115. } else if (this._config.loginRegisterAutoHeight === parseInt(this._config.loginRegisterAutoHeight, 10)) {
  116. setInterval(this.fixLoginRegisterHeight, this._config.loginRegisterAutoHeight)
  117. }
  118. $(SELECTOR_SIDEBAR)
  119. .on('collapsed.lte.treeview expanded.lte.treeview', () => {
  120. this.fixLayoutHeight()
  121. })
  122. $(SELECTOR_MAIN_SIDEBAR)
  123. .on('mouseenter mouseleave', () => {
  124. if ($('body').hasClass(CLASS_NAME_SIDEBAR_COLLAPSED)) {
  125. this.fixLayoutHeight()
  126. }
  127. })
  128. $(SELECTOR_PUSHMENU_BTN)
  129. .on('collapsed.lte.pushmenu shown.lte.pushmenu', () => {
  130. setTimeout(() => {
  131. this.fixLayoutHeight()
  132. }, 300)
  133. })
  134. $(SELECTOR_CONTROL_SIDEBAR_BTN)
  135. .on('collapsed.lte.controlsidebar', () => {
  136. this.fixLayoutHeight()
  137. })
  138. .on('expanded.lte.controlsidebar', () => {
  139. this.fixLayoutHeight('control_sidebar')
  140. })
  141. $(window).resize(() => {
  142. this.fixLayoutHeight()
  143. })
  144. setTimeout(() => {
  145. $('body.hold-transition').removeClass('hold-transition')
  146. }, 50)
  147. setTimeout(() => {
  148. const $preloader = $(SELECTOR_PRELOADER)
  149. if ($preloader) {
  150. $preloader.css('height', 0)
  151. setTimeout(() => {
  152. $preloader.children().hide()
  153. }, 200)
  154. }
  155. }, this._config.preloadDuration)
  156. }
  157. _max(numbers) {
  158. // Calculate the maximum number in a list
  159. let max = 0
  160. Object.keys(numbers).forEach(key => {
  161. if (numbers[key] > max) {
  162. max = numbers[key]
  163. }
  164. })
  165. return max
  166. }
  167. _isFooterFixed() {
  168. return $(SELECTOR_FOOTER).css('position') === 'fixed'
  169. }
  170. // Static
  171. static _jQueryInterface(config = '') {
  172. return this.each(function () {
  173. let data = $(this).data(DATA_KEY)
  174. const _options = $.extend({}, Default, $(this).data())
  175. if (!data) {
  176. data = new Layout($(this), _options)
  177. $(this).data(DATA_KEY, data)
  178. }
  179. if (config === 'init' || config === '') {
  180. data._init()
  181. } else if (config === 'fixLayoutHeight' || config === 'fixLoginRegisterHeight') {
  182. data[config]()
  183. }
  184. })
  185. }
  186. }
  187. /**
  188. * Data API
  189. * ====================================================
  190. */
  191. $(window).on('load', () => {
  192. Layout._jQueryInterface.call($('body'))
  193. })
  194. $(`${SELECTOR_SIDEBAR} a`)
  195. .on('focusin', () => {
  196. $(SELECTOR_MAIN_SIDEBAR).addClass(CLASS_NAME_SIDEBAR_FOCUSED)
  197. })
  198. .on('focusout', () => {
  199. $(SELECTOR_MAIN_SIDEBAR).removeClass(CLASS_NAME_SIDEBAR_FOCUSED)
  200. })
  201. /**
  202. * jQuery API
  203. * ====================================================
  204. */
  205. $.fn[NAME] = Layout._jQueryInterface
  206. $.fn[NAME].Constructor = Layout
  207. $.fn[NAME].noConflict = function () {
  208. $.fn[NAME] = JQUERY_NO_CONFLICT
  209. return Layout._jQueryInterface
  210. }
  211. export default Layout