types(NoticeBar): add NoticeBarInstance type (#9245)

This commit is contained in:
neverland 2021-08-12 10:10:42 +08:00 committed by GitHub
parent 08c53c82d2
commit a589fc2d12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 74 additions and 23 deletions

View File

@ -1,4 +1,11 @@
import { ref, watch, reactive, PropType, defineComponent } from 'vue'; import {
ref,
watch,
reactive,
PropType,
defineComponent,
ExtractPropTypes,
} from 'vue';
// Utils // Utils
import { isDef, createNamespace } from '../utils'; import { isDef, createNamespace } from '../utils';
@ -17,33 +24,38 @@ import { onPopupReopen } from '../composables/on-popup-reopen';
// Components // Components
import { Icon } from '../icon'; import { Icon } from '../icon';
export type NoticeBarMode = 'closeable' | 'link'; // Types
import { NoticeBarMode } from './types';
const [name, bem] = createNamespace('notice-bar'); const [name, bem] = createNamespace('notice-bar');
const props = {
text: String,
mode: String as PropType<NoticeBarMode>,
color: String,
leftIcon: String,
wrapable: Boolean,
background: String,
scrollable: {
type: Boolean as PropType<boolean | null>,
default: null,
},
delay: {
type: [Number, String],
default: 1,
},
speed: {
type: [Number, String],
default: 60,
},
};
export type NoticeBarProps = ExtractPropTypes<typeof props>;
export default defineComponent({ export default defineComponent({
name, name,
props: { props,
text: String,
mode: String as PropType<NoticeBarMode>,
color: String,
leftIcon: String,
wrapable: Boolean,
background: String,
scrollable: {
type: Boolean as PropType<boolean | null>,
default: null,
},
delay: {
type: [Number, String],
default: 1,
},
speed: {
type: [Number, String],
default: 60,
},
},
emits: ['close', 'replay'], emits: ['close', 'replay'],

View File

@ -115,6 +115,19 @@ Use [ref](https://v3.vuejs.org/guide/component-template-refs.html) to get Notice
| -------------- | --------------- | --------- | ------------ | | -------------- | --------------- | --------- | ------------ |
| reset `v3.1.1` | Reset NoticeBar | - | - | | reset `v3.1.1` | Reset NoticeBar | - | - |
### Types
Get the type definition of the NoticeBar instance through `NoticeBarInstance`.
```ts
import { ref } from 'vue';
import type { NoticeBarInstance } from 'vant';
const noticeBarRef = ref<NoticeBarInstance>();
noticeBarRef.value?.reset();
```
### Slots ### Slots
| Name | Description | | Name | Description |

View File

@ -136,6 +136,19 @@ app.use(NoticeBar);
| -------------- | -------------------- | ---- | ------ | | -------------- | -------------------- | ---- | ------ |
| reset `v3.1.1` | 重置通知栏到初始状态 | - | - | | reset `v3.1.1` | 重置通知栏到初始状态 | - | - |
### 类型定义
通过 `NoticeBarInstance` 获取 NoticeBar 实例的类型定义(从 3.2.0 版本开始支持)。
```ts
import { ref } from 'vue';
import type { NoticeBarInstance } from 'vant';
const noticeBarRef = ref<NoticeBarInstance>();
noticeBarRef.value?.reset();
```
### Slots ### Slots
| 名称 | 内容 | | 名称 | 内容 |

View File

@ -5,4 +5,4 @@ const NoticeBar = withInstall<typeof _NoticeBar>(_NoticeBar);
export default NoticeBar; export default NoticeBar;
export { NoticeBar }; export { NoticeBar };
export type { NoticeBarMode } from './NoticeBar'; export type { NoticeBarMode, NoticeBarInstance } from './types';

13
src/notice-bar/types.ts Normal file
View File

@ -0,0 +1,13 @@
import type { ComponentPublicInstance } from 'vue';
import type { NoticeBarProps } from './NoticeBar';
export type NoticeBarMode = 'closeable' | 'link';
export type NoticeBarExpose = {
reset: () => void;
};
export type NoticeBarInstance = ComponentPublicInstance<
NoticeBarProps,
NoticeBarExpose
>;