Layout.js 6.9 KB

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