From 1c781113bd57ea3e027c654a3638f4898e03d9da Mon Sep 17 00:00:00 2001 From: neverland Date: Sat, 31 Jul 2021 11:29:48 +0800 Subject: [PATCH] types: add ListInstance type (#9159) --- src/list/List.tsx | 44 +++++++++++++++++++++++----------------- src/list/README.md | 13 ++++++++++++ src/list/README.zh-CN.md | 13 ++++++++++++ src/list/index.ts | 2 +- src/list/types.ts | 10 +++++++++ 5 files changed, 62 insertions(+), 20 deletions(-) create mode 100644 src/list/types.ts diff --git a/src/list/List.tsx b/src/list/List.tsx index b42508c14..0a091cc66 100644 --- a/src/list/List.tsx +++ b/src/list/List.tsx @@ -6,6 +6,7 @@ import { onUpdated, onMounted, defineComponent, + ExtractPropTypes, } from 'vue'; // Utils @@ -19,30 +20,35 @@ import { useTabStatus } from '../composables/use-tab-status'; // Components import { Loading } from '../loading'; +// Types +import type { ListExpose, ListDirection } from './types'; + const [name, bem, t] = createNamespace('list'); -export type ListDirection = 'up' | 'down'; +const props = { + error: Boolean, + loading: Boolean, + finished: Boolean, + errorText: String, + loadingText: String, + finishedText: String, + immediateCheck: truthProp, + offset: { + type: [Number, String], + default: 300, + }, + direction: { + type: String as PropType, + default: 'down', + }, +}; + +export type ListProps = ExtractPropTypes; export default defineComponent({ name, - props: { - error: Boolean, - loading: Boolean, - finished: Boolean, - errorText: String, - loadingText: String, - finishedText: String, - immediateCheck: truthProp, - offset: { - type: [Number, String], - default: 300, - }, - direction: { - type: String as PropType, - default: 'down', - }, - }, + props, emits: ['load', 'update:error', 'update:loading'], @@ -157,7 +163,7 @@ export default defineComponent({ } }); - useExpose({ check }); + useExpose({ check }); useEventListener('scroll', check, { target: scrollParent }); diff --git a/src/list/README.md b/src/list/README.md index 7fd2e26df..4bb285cea 100644 --- a/src/list/README.md +++ b/src/list/README.md @@ -191,6 +191,19 @@ Use [ref](https://v3.vuejs.org/guide/component-template-refs.html) to get List i | ----- | --------------------- | --------- | ------------ | | check | Check scroll position | - | - | +### Types + +Get the type definition of the List instance through `ListInstance`. + +```ts +import { ref } from 'vue'; +import type { ListInstance } from 'vant'; + +const listRef = ref(); + +listRef.value?.check(); +``` + ### Slots | Name | Description | diff --git a/src/list/README.zh-CN.md b/src/list/README.zh-CN.md index a701b468f..f168884f1 100644 --- a/src/list/README.zh-CN.md +++ b/src/list/README.zh-CN.md @@ -206,6 +206,19 @@ export default { | --- | --- | --- | --- | | check | 检查当前的滚动位置,若已滚动至底部,则会触发 load 事件 | - | - | +### 类型定义 + +通过 `ListInstance` 获取 List 实例的类型定义。 + +```ts +import { ref } from 'vue'; +import type { ListInstance } from 'vant'; + +const listRef = ref(); + +listRef.value?.check(); +``` + ### Slots | 名称 | 说明 | diff --git a/src/list/index.ts b/src/list/index.ts index 461728b17..762978cc9 100644 --- a/src/list/index.ts +++ b/src/list/index.ts @@ -5,4 +5,4 @@ const List = withInstall(_List); export default List; export { List }; -export type { ListDirection } from './List'; +export type { ListInstance, ListDirection } from './types'; diff --git a/src/list/types.ts b/src/list/types.ts new file mode 100644 index 000000000..9f751131f --- /dev/null +++ b/src/list/types.ts @@ -0,0 +1,10 @@ +import type { ComponentPublicInstance } from 'vue'; +import type { ListProps } from './List'; + +export type ListDirection = 'up' | 'down'; + +export type ListExpose = { + check: () => void; +}; + +export type ListInstance = ComponentPublicInstance;