From 064f675df801c6dce8af1a482dd8cb07d34a15ce Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 2 May 2023 10:05:41 +0800 Subject: [PATCH] feat(Signature): support custom button text (#11798) --- packages/vant/src/signature/README.md | 2 ++ packages/vant/src/signature/README.zh-CN.md | 14 ++++++----- packages/vant/src/signature/Signature.tsx | 12 ++++++---- .../test/__snapshots__/index.spec.ts.snap | 23 +++++++++++++++++++ .../vant/src/signature/test/index.spec.ts | 11 +++++++++ 5 files changed, 51 insertions(+), 11 deletions(-) diff --git a/packages/vant/src/signature/README.md b/packages/vant/src/signature/README.md index 19c816527..c09beb891 100644 --- a/packages/vant/src/signature/README.md +++ b/packages/vant/src/signature/README.md @@ -72,6 +72,8 @@ export default { | pen-color | Color of the brush stroke, default is black | _string_ | `#000` | | line-width | Width of the line | _number_ | `3` | | tips | Text that appears when Canvas is not supported | _string_ | - | +| cancel-button-text | Cancel button text | _string_ | `Cancel` | +| confirm-button-text | Confirm button text | _string_ | `Confirm` | ### Events diff --git a/packages/vant/src/signature/README.zh-CN.md b/packages/vant/src/signature/README.zh-CN.md index de5e1de0e..3a7529549 100644 --- a/packages/vant/src/signature/README.zh-CN.md +++ b/packages/vant/src/signature/README.zh-CN.md @@ -66,12 +66,14 @@ export default { ### Props -| 参数 | 说明 | 类型 | 默认值 | -| ---------- | ------------------------------------ | -------- | ------ | -| type | 导出图片类型 | _string_ | `png` | -| pen-color | 笔触颜色,默认黑色 | _string_ | `#000` | -| line-width | 线条宽度 | _number_ | `3` | -| tips | 当不支持 Canvas 的时候出现的提示文案 | _string_ | - | +| 参数 | 说明 | 类型 | 默认值 | +| --- | --- | --- | --- | +| type | 导出图片类型 | _string_ | `png` | +| pen-color | 笔触颜色,默认黑色 | _string_ | `#000` | +| line-width | 线条宽度 | _number_ | `3` | +| tips | 当不支持 Canvas 的时候出现的提示文案 | _string_ | - | +| cancel-button-text | 取消按钮文案 | _string_ | `取消` | +| confirm-button-text | 确认按钮文案 | _string_ | `确认` | ### Events diff --git a/packages/vant/src/signature/Signature.tsx b/packages/vant/src/signature/Signature.tsx index 358bd70d0..9cebcad5d 100644 --- a/packages/vant/src/signature/Signature.tsx +++ b/packages/vant/src/signature/Signature.tsx @@ -18,10 +18,12 @@ import { Button } from '../button'; const [name, bem, t] = createNamespace('signature'); export const signatureProps = { - type: makeStringProp('png'), - lineWidth: makeNumberProp(3), - penColor: makeStringProp('#000'), tips: String, + type: makeStringProp('png'), + penColor: makeStringProp('#000'), + lineWidth: makeNumberProp(3), + cancelButtonText: String, + confirmButtonText: String, }; export type SignatureProps = ExtractPropTypes; @@ -149,10 +151,10 @@ export default defineComponent({
diff --git a/packages/vant/src/signature/test/__snapshots__/index.spec.ts.snap b/packages/vant/src/signature/test/__snapshots__/index.spec.ts.snap index 2a8aa4069..48da25d34 100644 --- a/packages/vant/src/signature/test/__snapshots__/index.spec.ts.snap +++ b/packages/vant/src/signature/test/__snapshots__/index.spec.ts.snap @@ -1,5 +1,28 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP +exports[`should allow to custom button text 1`] = ` + +`; + exports[`should render tips correctly 1`] = `
diff --git a/packages/vant/src/signature/test/index.spec.ts b/packages/vant/src/signature/test/index.spec.ts index c93b722c8..a7cc20709 100644 --- a/packages/vant/src/signature/test/index.spec.ts +++ b/packages/vant/src/signature/test/index.spec.ts @@ -79,3 +79,14 @@ test('should render tips correctly', async () => { expect(wrapper.html()).toMatchSnapshot(); spy.mockRestore(); }); + +test('should allow to custom button text', async () => { + const wrapper = mount(Signature, { + props: { + confirmButtonText: 'Foo', + cancelButtonText: 'Bar', + }, + }); + + expect(wrapper.find('.van-signature__footer').html()).toMatchSnapshot(); +});