You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
757 B
31 lines
757 B
import { isMobile } from '../is_mobile'; |
|
|
|
let cachedScrollbarWidth: number | null = null; |
|
|
|
const getActualScrollbarWidth = () => { |
|
const outer = document.createElement('div'); |
|
outer.style.visibility = 'hidden'; |
|
outer.style.overflow = 'scroll'; |
|
document.body.appendChild(outer); |
|
|
|
const inner = document.createElement('div'); |
|
outer.appendChild(inner); |
|
|
|
const scrollbarWidth = outer.offsetWidth - inner.offsetWidth; |
|
outer.remove(); |
|
|
|
return scrollbarWidth; |
|
}; |
|
|
|
export const getScrollbarWidth = () => { |
|
if (cachedScrollbarWidth !== null) { |
|
return cachedScrollbarWidth; |
|
} |
|
|
|
const scrollbarWidth = isMobile(window.innerWidth) |
|
? 0 |
|
: getActualScrollbarWidth(); |
|
cachedScrollbarWidth = scrollbarWidth; |
|
|
|
return scrollbarWidth; |
|
};
|
|
|