mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Popup): lockScroll not work #7738
This commit is contained in:
parent
82acfb2f6e
commit
c114a0ef47
@ -60,7 +60,7 @@
|
|||||||
"@vant/icons": "^1.5.0",
|
"@vant/icons": "^1.5.0",
|
||||||
"@vant/lazyload": "^1.0.2",
|
"@vant/lazyload": "^1.0.2",
|
||||||
"@vant/popperjs": "^1.0.2",
|
"@vant/popperjs": "^1.0.2",
|
||||||
"@vant/use": "^1.0.0"
|
"@vant/use": "^1.0.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"vue": "^3.0.0"
|
"vue": "^3.0.0"
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
|
### v1.0.1
|
||||||
|
|
||||||
|
`2020-12-27`
|
||||||
|
|
||||||
|
- 导出个别内部方法供 Vant 使用
|
||||||
|
|
||||||
### v1.0.0
|
### v1.0.0
|
||||||
|
|
||||||
`2020-12-15`
|
`2020-12-15`
|
||||||
|
@ -28,12 +28,15 @@ export function getScrollParent(el: Element, root: ScrollElement = window) {
|
|||||||
return root;
|
return root;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function useScrollParent(el: Ref<Element | undefined>) {
|
export function useScrollParent(
|
||||||
|
el: Ref<Element | undefined>,
|
||||||
|
root: ScrollElement = window
|
||||||
|
) {
|
||||||
const scrollParent = ref<Element | Window>();
|
const scrollParent = ref<Element | Window>();
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
if (el.value) {
|
if (el.value) {
|
||||||
scrollParent.value = getScrollParent(el.value);
|
scrollParent.value = getScrollParent(el.value, root);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1,22 +1,70 @@
|
|||||||
let count = 0;
|
import { Ref } from 'vue';
|
||||||
|
import { getScrollParent, supportsPassive } from '@vant/use';
|
||||||
|
import { useTouch } from './use-touch';
|
||||||
|
import { preventDefault } from '../utils';
|
||||||
|
|
||||||
const CLASSNAME = 'van-overflow-hidden';
|
let totalLockCount = 0;
|
||||||
|
|
||||||
|
const BODY_LOCK_CLASS = 'van-overflow-hidden';
|
||||||
|
|
||||||
|
export function useLockScroll(
|
||||||
|
rootRef: Ref<HTMLElement | undefined>,
|
||||||
|
shouldLock: () => boolean
|
||||||
|
) {
|
||||||
|
const touch = useTouch();
|
||||||
|
|
||||||
|
const onTouchMove = (event: TouchEvent) => {
|
||||||
|
touch.move(event);
|
||||||
|
|
||||||
|
const direction = touch.deltaY.value > 0 ? '10' : '01';
|
||||||
|
const el = getScrollParent(
|
||||||
|
event.target as Element,
|
||||||
|
rootRef.value
|
||||||
|
) as HTMLElement;
|
||||||
|
const { scrollHeight, offsetHeight, scrollTop } = el;
|
||||||
|
let status = '11';
|
||||||
|
|
||||||
|
if (scrollTop === 0) {
|
||||||
|
status = offsetHeight >= scrollHeight ? '00' : '01';
|
||||||
|
} else if (scrollTop + offsetHeight >= scrollHeight) {
|
||||||
|
status = '10';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
status !== '11' &&
|
||||||
|
touch.isVertical() &&
|
||||||
|
!(parseInt(status, 2) & parseInt(direction, 2))
|
||||||
|
) {
|
||||||
|
preventDefault(event, true);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export function useLockScroll(shouldLock: () => boolean) {
|
|
||||||
const lock = () => {
|
const lock = () => {
|
||||||
if (shouldLock()) {
|
if (shouldLock()) {
|
||||||
if (!count) {
|
document.addEventListener('touchstart', touch.start);
|
||||||
document.body.classList.add(CLASSNAME);
|
document.addEventListener(
|
||||||
|
'touchmove',
|
||||||
|
onTouchMove,
|
||||||
|
supportsPassive ? { passive: false } : false
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!totalLockCount) {
|
||||||
|
document.body.classList.add(BODY_LOCK_CLASS);
|
||||||
}
|
}
|
||||||
count++;
|
|
||||||
|
totalLockCount++;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const unlock = () => {
|
const unlock = () => {
|
||||||
if (shouldLock() && count) {
|
if (shouldLock() && totalLockCount) {
|
||||||
count--;
|
document.removeEventListener('touchstart', touch.start);
|
||||||
if (!count) {
|
document.removeEventListener('touchmove', onTouchMove);
|
||||||
document.body.classList.remove(CLASSNAME);
|
|
||||||
|
totalLockCount--;
|
||||||
|
|
||||||
|
if (!totalLockCount) {
|
||||||
|
document.body.classList.remove(BODY_LOCK_CLASS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -112,7 +112,10 @@ export default createComponent({
|
|||||||
const zIndex = ref();
|
const zIndex = ref();
|
||||||
const popupRef = ref();
|
const popupRef = ref();
|
||||||
|
|
||||||
const [lockScroll, unlockScroll] = useLockScroll(() => props.lockScroll);
|
const [lockScroll, unlockScroll] = useLockScroll(
|
||||||
|
popupRef,
|
||||||
|
() => props.lockScroll
|
||||||
|
);
|
||||||
|
|
||||||
const lazyRender = useLazyRender(() => props.show || !props.lazyRender);
|
const lazyRender = useLazyRender(() => props.show || !props.lazyRender);
|
||||||
|
|
||||||
|
@ -1996,10 +1996,10 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@vant/touch-emulator/-/touch-emulator-1.2.0.tgz#486300b23e57db9ce9231a04e0a0c621c68692d8"
|
resolved "https://registry.yarnpkg.com/@vant/touch-emulator/-/touch-emulator-1.2.0.tgz#486300b23e57db9ce9231a04e0a0c621c68692d8"
|
||||||
integrity sha512-sJ97zU85zOq51qoi7+CpBEcOyH3CitjP1KC7/GQwqaurUJni+EP7/F9n0HMnAh8GXMjgtgDBNJ5z48x+coNKYQ==
|
integrity sha512-sJ97zU85zOq51qoi7+CpBEcOyH3CitjP1KC7/GQwqaurUJni+EP7/F9n0HMnAh8GXMjgtgDBNJ5z48x+coNKYQ==
|
||||||
|
|
||||||
"@vant/use@^1.0.0":
|
"@vant/use@^1.0.1":
|
||||||
version "1.0.0"
|
version "1.0.1"
|
||||||
resolved "https://registry.npm.taobao.org/@vant/use/download/@vant/use-1.0.0.tgz?cache=0&sync_timestamp=1608030568231&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vant%2Fuse%2Fdownload%2F%40vant%2Fuse-1.0.0.tgz#68db22af1130ccf867814fec5ec8c4f7ad94f36d"
|
resolved "https://registry.npm.taobao.org/@vant/use/download/@vant/use-1.0.1.tgz#8b9a037e3340052b5ca829f260bd25c35977a608"
|
||||||
integrity sha1-aNsirxEwzPhngU/sXsjE962U820=
|
integrity sha1-i5oDfjNABStcqCnyYL0lw1l3pgg=
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/runtime" "7.x"
|
"@babel/runtime" "7.x"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user