From 6b8a83eefc57b7c307c78214d861f48d9d511c26 Mon Sep 17 00:00:00 2001 From: inottn Date: Thu, 22 Jun 2023 21:32:51 +0800 Subject: [PATCH] fix(RollingText): allow different digit lengths for start-num and target-num (#12011) --- .../vant/src/rolling-text/RollingText.tsx | 38 +++++++++---------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/packages/vant/src/rolling-text/RollingText.tsx b/packages/vant/src/rolling-text/RollingText.tsx index d1faecee5..7bdce351b 100644 --- a/packages/vant/src/rolling-text/RollingText.tsx +++ b/packages/vant/src/rolling-text/RollingText.tsx @@ -14,6 +14,7 @@ import { makeNumberProp, makeStringProp, truthProp, + padZero, } from '../utils'; // Composables @@ -56,8 +57,12 @@ export default defineComponent({ () => Array.isArray(props.textList) && props.textList.length ); + const itemLength = computed(() => { + if (isCustomType.value) return props.textList[0].length; + return `${Math.max(props.startNum, props.targetNum!)}`.length; + }); + const getTextArrByIdx = (idx: number) => { - if (!isCustomType.value) return []; const result = []; for (let i = 0; i < props.textList.length; i++) { result.push(props.textList[i][idx]); @@ -66,28 +71,19 @@ export default defineComponent({ }; const targetNumArr = computed(() => { - if (isCustomType.value) - return props.textList[props.textList.length - 1].split(''); - return `${props.targetNum}`.split(''); + if (isCustomType.value) return new Array(itemLength.value).fill(''); + return padZero(props.targetNum!, itemLength.value).split(''); }); - const startNumArr = () => { - const arr = `${props.startNum}`.split(''); - while (arr.length < targetNumArr.value.length) { - arr.unshift('0'); - } - return arr; - }; - - const getTwoFigure = (i: number) => [ - startNumArr()[i], - targetNumArr.value[i], - ]; + const startNumArr = computed(() => + padZero(props.startNum, itemLength.value).split('') + ); const getFigureArr = (i: number) => { - const [start, target] = getTwoFigure(i); + const start = +startNumArr.value[i]; + const target = +targetNumArr.value[i]; const result = []; - for (let i = +start; i <= 9; i++) { + for (let i = start; i <= 9; i++) { result.push(i); } for (let i = 0; i <= CIRCLE_NUM; i++) { @@ -95,7 +91,7 @@ export default defineComponent({ result.push(j); } } - for (let i = 0; i <= +target; i++) { + for (let i = 0; i <= target; i++) { result.push(i); } return result; @@ -136,7 +132,7 @@ export default defineComponent({ return () => (
- {targetNumArr.value.map((figure, i) => ( + {targetNumArr.value.map((_, i) => ( ))}