types(Progress): add ProgressInstance type (#9247)

This commit is contained in:
neverland 2021-08-12 10:19:51 +08:00 committed by GitHub
parent 713be26ed2
commit a02cec0f5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 59 additions and 17 deletions

View File

@ -6,16 +6,14 @@ import {
reactive, reactive,
onMounted, onMounted,
defineComponent, defineComponent,
ExtractPropTypes,
} from 'vue'; } from 'vue';
import { truthProp, createNamespace, addUnit } from '../utils'; import { truthProp, createNamespace, addUnit } from '../utils';
import { useExpose } from '../composables/use-expose'; import { useExpose } from '../composables/use-expose';
const [name, bem] = createNamespace('progress'); const [name, bem] = createNamespace('progress');
export default defineComponent({ const props = {
name,
props: {
color: String, color: String,
inactive: Boolean, inactive: Boolean,
pivotText: String, pivotText: String,
@ -26,10 +24,16 @@ export default defineComponent({
strokeWidth: [Number, String], strokeWidth: [Number, String],
percentage: { percentage: {
type: [Number, String], type: [Number, String],
required: true,
validator: (value: number | string) => value >= 0 && value <= 100, validator: (value: number | string) => value >= 0 && value <= 100,
}, },
}, };
export type ProgressProps = ExtractPropTypes<typeof props>;
export default defineComponent({
name,
props,
setup(props) { setup(props) {
const root = ref<HTMLElement>(); const root = ref<HTMLElement>();
@ -58,7 +62,7 @@ export default defineComponent({
const show = props.showPivot && text; const show = props.showPivot && text;
if (show) { if (show) {
const left = ((rootWidth - pivotWidth) * +percentage) / 100; const left = ((rootWidth - pivotWidth) * +percentage!) / 100;
const style = { const style = {
color: textColor, color: textColor,
left: `${left}px`, left: `${left}px`,
@ -85,7 +89,7 @@ export default defineComponent({
}; };
const portionStyle = { const portionStyle = {
background: background.value, background: background.value,
width: (state.rootWidth * +percentage) / 100 + 'px', width: (state.rootWidth * +percentage!) / 100 + 'px',
}; };
return ( return (

View File

@ -77,6 +77,19 @@ Use [ref](https://vuejs.org/v2/api/#ref) to get Progress instance and call insta
| --- | --- | --- | --- | | --- | --- | --- | --- |
| resize | Resize Progress when container element resized or visibility changed | - | - | | resize | Resize Progress when container element resized or visibility changed | - | - |
### Types
Get the type definition of the Progress instance through `ProgressInstance`.
```ts
import { ref } from 'vue';
import type { ProgressInstance } from 'vant';
const progressRef = ref<ProgressInstance>();
progressRef.value?.resize();
```
### CSS Variables ### CSS Variables
The component provides the following CSS variables, which can be used to customize styles. Please refer to [ConfigProvider component](#/en-US/config-provider). The component provides the following CSS variables, which can be used to customize styles. Please refer to [ConfigProvider component](#/en-US/config-provider).

View File

@ -81,6 +81,19 @@ app.use(Progress);
| ------ | -------------------------------------------- | ---- | ------ | | ------ | -------------------------------------------- | ---- | ------ |
| resize | 外层元素大小变化后,可以调用此方法来触发重绘 | - | - | | resize | 外层元素大小变化后,可以调用此方法来触发重绘 | - | - |
### 类型定义
通过 `ProgressInstance` 获取 Progress 实例的类型定义(从 3.2.0 版本开始支持)。
```ts
import { ref } from 'vue';
import type { ProgressInstance } from 'vant';
const progressRef = ref<ProgressInstance>();
progressRef.value?.resize();
```
### 样式变量 ### 样式变量
组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 [ConfigProvider 组件](#/zh-CN/config-provider)。 组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 [ConfigProvider 组件](#/zh-CN/config-provider)。

View File

@ -5,3 +5,4 @@ const Progress = withInstall<typeof _Progress>(_Progress);
export default Progress; export default Progress;
export { Progress }; export { Progress };
export type { ProgressInstance } from './types';

11
src/progress/types.ts Normal file
View File

@ -0,0 +1,11 @@
import type { ComponentPublicInstance } from 'vue';
import type { ProgressProps } from './Progress';
export type ProgressExpose = {
resize: () => void;
};
export type ProgressInstance = ComponentPublicInstance<
ProgressProps,
ProgressExpose
>;