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.
51 lines
1.8 KiB
51 lines
1.8 KiB
11 months ago
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||
|
|
||
|
var vue = require('vue');
|
||
|
var core = require('@vueuse/core');
|
||
|
var scrollbarWidth = require('../../utils/scrollbar-width.js');
|
||
|
var error = require('../../utils/error.js');
|
||
|
var dom = require('../../utils/dom.js');
|
||
|
|
||
|
const useLockscreen = (trigger) => {
|
||
|
if (!vue.isRef(trigger)) {
|
||
|
error.throwError("[useLockscreen]", "You need to pass a ref param to this function");
|
||
|
}
|
||
|
if (!core.isClient || dom.hasClass(document.body, "el-popup-parent--hidden")) {
|
||
|
return;
|
||
|
}
|
||
|
let scrollBarWidth = 0;
|
||
|
let withoutHiddenClass = false;
|
||
|
let bodyPaddingRight = "0";
|
||
|
let computedBodyPaddingRight = 0;
|
||
|
const cleanup = () => {
|
||
|
dom.removeClass(document.body, "el-popup-parent--hidden");
|
||
|
if (withoutHiddenClass) {
|
||
|
document.body.style.paddingRight = bodyPaddingRight;
|
||
|
}
|
||
|
};
|
||
|
vue.watch(trigger, (val) => {
|
||
|
if (!val) {
|
||
|
cleanup();
|
||
|
return;
|
||
|
}
|
||
|
withoutHiddenClass = !dom.hasClass(document.body, "el-popup-parent--hidden");
|
||
|
if (withoutHiddenClass) {
|
||
|
bodyPaddingRight = document.body.style.paddingRight;
|
||
|
computedBodyPaddingRight = parseInt(dom.getStyle(document.body, "paddingRight"), 10);
|
||
|
}
|
||
|
scrollBarWidth = scrollbarWidth["default"]();
|
||
|
const bodyHasOverflow = document.documentElement.clientHeight < document.body.scrollHeight;
|
||
|
const bodyOverflowY = dom.getStyle(document.body, "overflowY");
|
||
|
if (scrollBarWidth > 0 && (bodyHasOverflow || bodyOverflowY === "scroll") && withoutHiddenClass) {
|
||
|
document.body.style.paddingRight = `${computedBodyPaddingRight + scrollBarWidth}px`;
|
||
|
}
|
||
|
dom.addClass(document.body, "el-popup-parent--hidden");
|
||
|
});
|
||
|
vue.onScopeDispose(() => cleanup());
|
||
|
};
|
||
|
|
||
|
exports.useLockscreen = useLockscreen;
|
||
|
//# sourceMappingURL=index.js.map
|