mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: move useRect to @vant/use
This commit is contained in:
parent
6aa67b6df9
commit
fd92564c27
@ -58,7 +58,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/runtime": "7.x",
|
"@babel/runtime": "7.x",
|
||||||
"@vant/icons": "1.3.0",
|
"@vant/icons": "1.3.0",
|
||||||
"@vant/use": "^0.0.3",
|
"@vant/use": "^0.0.4",
|
||||||
"vue-lazyload": "1.2.3"
|
"vue-lazyload": "1.2.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
|
### v0.0.4
|
||||||
|
|
||||||
|
`2020-10-05`
|
||||||
|
|
||||||
|
- 新增 `useRect` 方法
|
||||||
|
|
||||||
### v0.0.3
|
### v0.0.3
|
||||||
|
|
||||||
`2020-09-27`
|
`2020-09-27`
|
||||||
|
@ -16,7 +16,7 @@ import {
|
|||||||
import { useToggle } from '@vant/use';
|
import { useToggle } from '@vant/use';
|
||||||
import { useRefs } from '../../composition/use-refs';
|
import { useRefs } from '../../composition/use-refs';
|
||||||
import { useExpose } from '../../composition/use-expose';
|
import { useExpose } from '../../composition/use-expose';
|
||||||
import { useRect, useHeight } from '../../composition/use-rect';
|
import { useRect, useHeight } from '../../composition/use-height';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import Day from './Day';
|
import Day from './Day';
|
||||||
|
@ -17,8 +17,8 @@ import {
|
|||||||
} from './utils';
|
} from './utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
|
import { useRect } from '@vant/use';
|
||||||
import { useRefs } from '../composition/use-refs';
|
import { useRefs } from '../composition/use-refs';
|
||||||
import { useRect } from '../composition/use-rect';
|
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
|
@ -1,8 +1,5 @@
|
|||||||
import { Ref, ref, unref, onMounted, nextTick } from 'vue';
|
import { useRect } from '@vant/use';
|
||||||
|
import { Ref, ref, onMounted, nextTick } from 'vue';
|
||||||
export const useRect = (element: Element | Ref<Element>) => {
|
|
||||||
return unref(element).getBoundingClientRect();
|
|
||||||
};
|
|
||||||
|
|
||||||
export const useHeight = (element: Element | Ref<Element>) => {
|
export const useHeight = (element: Element | Ref<Element>) => {
|
||||||
const height = ref();
|
const height = ref();
|
@ -1,4 +1,4 @@
|
|||||||
import { useHeight } from './use-rect';
|
import { useHeight } from './use-height';
|
||||||
import type { Ref, VNode } from 'vue';
|
import type { Ref, VNode } from 'vue';
|
||||||
import type { BEM } from '../utils/create/bem';
|
import type { BEM } from '../utils/create/bem';
|
||||||
|
|
||||||
|
@ -5,12 +5,12 @@ import { createNamespace, isDef } from '../utils';
|
|||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import {
|
import {
|
||||||
|
useRect,
|
||||||
useChildren,
|
useChildren,
|
||||||
useClickAway,
|
useClickAway,
|
||||||
useScrollParent,
|
useScrollParent,
|
||||||
useEventListener,
|
useEventListener,
|
||||||
} from '@vant/use';
|
} from '@vant/use';
|
||||||
import { useRect } from '../composition/use-rect';
|
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('dropdown-menu');
|
const [createComponent, bem] = createNamespace('dropdown-menu');
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ import { INDEX_BAR_KEY } from '../index-bar';
|
|||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useParent } from '@vant/use';
|
import { useParent } from '@vant/use';
|
||||||
import { useHeight } from '../composition/use-rect';
|
import { useHeight } from '../composition/use-height';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('index-anchor');
|
const [createComponent, bem] = createNamespace('index-anchor');
|
||||||
|
@ -13,8 +13,12 @@ import {
|
|||||||
} from '../utils';
|
} from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useChildren, useScrollParent, useEventListener } from '@vant/use';
|
import {
|
||||||
import { useRect } from '../composition/use-rect';
|
useRect,
|
||||||
|
useChildren,
|
||||||
|
useScrollParent,
|
||||||
|
useEventListener,
|
||||||
|
} from '@vant/use';
|
||||||
import { useTouch } from '../composition/use-touch';
|
import { useTouch } from '../composition/use-touch';
|
||||||
|
|
||||||
export const INDEX_BAR_KEY = 'vanIndexBar';
|
export const INDEX_BAR_KEY = 'vanIndexBar';
|
||||||
|
@ -4,8 +4,7 @@ import { ref, watch, nextTick, onUpdated, onMounted } from 'vue';
|
|||||||
import { isHidden, createNamespace } from '../utils';
|
import { isHidden, createNamespace } from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useScrollParent, useEventListener } from '@vant/use';
|
import { useRect, useScrollParent, useEventListener } from '@vant/use';
|
||||||
import { useRect } from '../composition/use-rect';
|
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
@ -44,19 +43,6 @@ export default createComponent({
|
|||||||
const placeholder = ref();
|
const placeholder = ref();
|
||||||
const scrollParent = useScrollParent(root);
|
const scrollParent = useScrollParent(root);
|
||||||
|
|
||||||
const getScrollParentRect = () => {
|
|
||||||
const element = scrollParent.value;
|
|
||||||
if (element.getBoundingClientRect) {
|
|
||||||
return element.getBoundingClientRect();
|
|
||||||
}
|
|
||||||
const height = element.innerHeight;
|
|
||||||
return {
|
|
||||||
top: 0,
|
|
||||||
height,
|
|
||||||
bottom: height,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
const check = () => {
|
const check = () => {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
if (loading.value || props.finished || props.error) {
|
if (loading.value || props.finished || props.error) {
|
||||||
@ -64,7 +50,7 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const { offset, direction } = props;
|
const { offset, direction } = props;
|
||||||
const scrollParentRect = getScrollParentRect();
|
const scrollParentRect = useRect(scrollParent);
|
||||||
|
|
||||||
if (!scrollParentRect.height || isHidden(root)) {
|
if (!scrollParentRect.height || isHidden(root)) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -2,8 +2,7 @@ import { ref, watch, reactive, nextTick, onActivated } from 'vue';
|
|||||||
import { isDef, doubleRaf, createNamespace } from '../utils';
|
import { isDef, doubleRaf, createNamespace } from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useRect } from '../composition/use-rect';
|
import { useRect, useEventListener } from '@vant/use';
|
||||||
import { useEventListener } from '@vant/use';
|
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import Icon from '../icon';
|
import Icon from '../icon';
|
||||||
|
@ -10,7 +10,7 @@ import {
|
|||||||
import { deepClone } from '../utils/deep-clone';
|
import { deepClone } from '../utils/deep-clone';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useRect } from '../composition/use-rect';
|
import { useRect } from '@vant/use';
|
||||||
import { useTouch } from '../composition/use-touch';
|
import { useTouch } from '../composition/use-touch';
|
||||||
import { useLinkField } from '../composition/use-link-field';
|
import { useLinkField } from '../composition/use-link-field';
|
||||||
|
|
||||||
|
@ -5,8 +5,7 @@ import { range, createNamespace, preventDefault } from '../utils';
|
|||||||
import { callInterceptor } from '../utils/interceptor';
|
import { callInterceptor } from '../utils/interceptor';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useClickAway } from '@vant/use';
|
import { useRect, useClickAway } from '@vant/use';
|
||||||
import { useRect } from '../composition/use-rect';
|
|
||||||
import { useTouch } from '../composition/use-touch';
|
import { useTouch } from '../composition/use-touch';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
|
|
||||||
|
@ -19,8 +19,12 @@ import {
|
|||||||
} from '../utils';
|
} from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
import { useChildren, useWindowSize, usePageVisibility } from '@vant/use';
|
import {
|
||||||
import { useRect } from '../composition/use-rect';
|
useRect,
|
||||||
|
useChildren,
|
||||||
|
useWindowSize,
|
||||||
|
usePageVisibility,
|
||||||
|
} from '@vant/use';
|
||||||
import { useTouch } from '../composition/use-touch';
|
import { useTouch } from '../composition/use-touch';
|
||||||
import { useExpose } from '../composition/use-expose';
|
import { useExpose } from '../composition/use-expose';
|
||||||
|
|
||||||
|
@ -2175,10 +2175,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@^0.0.3":
|
"@vant/use@^0.0.4":
|
||||||
version "0.0.3"
|
version "0.0.4"
|
||||||
resolved "https://registry.npmjs.org/@vant/use/-/use-0.0.3.tgz#e3043830206344442a22d302d556c2e36b492eb5"
|
resolved "https://registry.npmjs.org/@vant/use/-/use-0.0.4.tgz#c02fb1b4cec53135efc85b1a7479ab186c0e5e73"
|
||||||
integrity sha512-7B7tmc8OqkNlMsNzZrIBy2hE8pBvQexBdE74+xr8/HtLhFbVkiZeO+YsOmgYTrsnSEvACBreoIkFX2tjRjzdMw==
|
integrity sha512-beX+RH6SCyOIZ9nyod2nIK1/bNSPAAZoOvXQ2OZ0Dv9Dd55MyVnDTBZ1WCgE8Hf/PjgSOuIMp715ekEncSHoEg==
|
||||||
|
|
||||||
"@vue/babel-helper-vue-transform-on@^1.0.0-rc.2":
|
"@vue/babel-helper-vue-transform-on@^1.0.0-rc.2":
|
||||||
version "1.0.0-rc.2"
|
version "1.0.0-rc.2"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user