element-plus/packages/hooks/use-lockscreen/index.ts
三咲智子 6503e55277
refactor(utils): migrate utils (#5949)
* refactor(utils-v2): migrate utils

* refactor(utils-v2): migrate utils

* refactor(utils-v2): migrate utils

* refactor(utils): remove

* refactor(utils): rename

* refactor(utils): move EVENT_CODE to constants

* refactor: remove generic
2022-02-11 11:03:15 +08:00

73 lines
1.9 KiB
TypeScript

import { watch, isRef, onScopeDispose } from 'vue'
import { isClient } from '@vueuse/core'
import {
throwError,
addClass,
removeClass,
hasClass,
getStyle,
getScrollBarWidth,
} from '@element-plus/utils'
import type { Ref } from 'vue'
/**
* Hook that monitoring the ref value to lock or unlock the screen.
* When the trigger became true, it assumes modal is now opened and vice versa.
* @param trigger {Ref<boolean>}
*/
export const useLockscreen = (trigger: Ref<boolean>) => {
if (!isRef(trigger)) {
throwError(
'[useLockscreen]',
'You need to pass a ref param to this function'
)
}
if (!isClient || hasClass(document.body, 'el-popup-parent--hidden')) {
return
}
let scrollBarWidth = 0
let withoutHiddenClass = false
let bodyPaddingRight = '0'
let computedBodyPaddingRight = 0
const cleanup = () => {
removeClass(document.body, 'el-popup-parent--hidden')
if (withoutHiddenClass) {
document.body.style.paddingRight = bodyPaddingRight
}
}
watch(trigger, (val) => {
if (!val) {
cleanup()
return
}
withoutHiddenClass = !hasClass(document.body, 'el-popup-parent--hidden')
if (withoutHiddenClass) {
bodyPaddingRight = document.body.style.paddingRight
computedBodyPaddingRight = parseInt(
getStyle(document.body, 'paddingRight'),
10
)
}
scrollBarWidth = getScrollBarWidth()
const bodyHasOverflow =
document.documentElement.clientHeight < document.body.scrollHeight
const bodyOverflowY = getStyle(document.body, 'overflowY')
if (
scrollBarWidth > 0 &&
(bodyHasOverflow || bodyOverflowY === 'scroll') &&
withoutHiddenClass
) {
document.body.style.paddingRight = `${
computedBodyPaddingRight + scrollBarWidth
}px`
}
addClass(document.body, 'el-popup-parent--hidden')
})
onScopeDispose(() => cleanup())
}