mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 19:58:09 +08:00
9d142ae129
* fix(utils): add type remove the ts error * fix: optional chaining operator replace non-nullish assertion * chore: try again test
30 lines
780 B
TypeScript
30 lines
780 B
TypeScript
import isServer from './isServer'
|
|
|
|
let scrollBarWidth: number
|
|
|
|
export default function (): number {
|
|
if (isServer) return 0
|
|
if (scrollBarWidth !== undefined) return scrollBarWidth
|
|
|
|
const outer = document.createElement('div')
|
|
outer.className = 'el-scrollbar__wrap'
|
|
outer.style.visibility = 'hidden'
|
|
outer.style.width = '100px'
|
|
outer.style.position = 'absolute'
|
|
outer.style.top = '-9999px'
|
|
document.body.appendChild(outer)
|
|
|
|
const widthNoScroll = outer.offsetWidth
|
|
outer.style.overflow = 'scroll'
|
|
|
|
const inner = document.createElement('div')
|
|
inner.style.width = '100%'
|
|
outer.appendChild(inner)
|
|
|
|
const widthWithScroll = inner.offsetWidth
|
|
outer.parentNode?.removeChild(outer)
|
|
scrollBarWidth = widthNoScroll - widthWithScroll
|
|
|
|
return scrollBarWidth
|
|
}
|