Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
35 lines
766 B
JavaScript
35 lines
766 B
JavaScript
/** @type {number | null} */
|
|
let cachedScrollbarWidth = null;
|
|
|
|
/**
|
|
* @returns {number}
|
|
*/
|
|
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.parentNode.removeChild(outer);
|
|
|
|
return scrollbarWidth;
|
|
};
|
|
|
|
/**
|
|
* @returns {number}
|
|
*/
|
|
export const getScrollbarWidth = () => {
|
|
if (cachedScrollbarWidth !== null) {
|
|
return cachedScrollbarWidth;
|
|
}
|
|
|
|
const scrollbarWidth = getActualScrollbarWidth();
|
|
cachedScrollbarWidth = scrollbarWidth;
|
|
|
|
return scrollbarWidth;
|
|
};
|