mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix: failed to get correct height of safe area element (#10827)
* fix: failed to get correct height of safe area element * docs: upd
This commit is contained in:
parent
abce9fdafd
commit
11d25a0b0e
@ -1,7 +1,10 @@
|
||||
import { useRect } from '@vant/use';
|
||||
import { Ref, ref, onMounted, nextTick } from 'vue';
|
||||
|
||||
export const useHeight = (element: Element | Ref<Element | undefined>) => {
|
||||
export const useHeight = (
|
||||
element: Element | Ref<Element | undefined>,
|
||||
withSafeArea?: boolean
|
||||
) => {
|
||||
const height = ref<number>();
|
||||
|
||||
const setHeight = () => {
|
||||
@ -10,8 +13,16 @@ export const useHeight = (element: Element | Ref<Element | undefined>) => {
|
||||
|
||||
onMounted(() => {
|
||||
nextTick(setHeight);
|
||||
|
||||
// If the element is using safe area, the system will not return the correct height on page load.
|
||||
// So we need to wait for the height to be set.
|
||||
// https://github.com/youzan/vant/issues/10131
|
||||
setTimeout(setHeight, 100);
|
||||
// https://stackoverflow.com/questions/64891541
|
||||
if (withSafeArea) {
|
||||
for (let i = 1; i <= 3; i++) {
|
||||
setTimeout(setHeight, 100 * i);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
return height;
|
||||
|
@ -3,7 +3,7 @@ import { useHeight } from './use-height';
|
||||
import type { BEM } from '../utils/create';
|
||||
|
||||
export function usePlaceholder(contentRef: Ref<Element | undefined>, bem: BEM) {
|
||||
const height = useHeight(contentRef);
|
||||
const height = useHeight(contentRef, true);
|
||||
|
||||
return (renderContent: () => JSX.Element) => (
|
||||
<div
|
||||
|
Loading…
x
Reference in New Issue
Block a user