refactor(Coupon): simplify the checkbox usage (#12771)

This commit is contained in:
neverland 2024-04-06 22:01:01 +08:00 committed by GitHub
parent 3a524e831b
commit fd89f715a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 65 additions and 71 deletions

View File

@ -53,7 +53,6 @@ export function initDemoLocale() {
disabled: '禁用状态', disabled: '禁用状态',
uneditable: '不可编辑', uneditable: '不可编辑',
basicUsage: '基础用法', basicUsage: '基础用法',
checkboxUsage: '多选用法',
usingUrl: '使用图片 URL', usingUrl: '使用图片 URL',
advancedUsage: '高级用法', advancedUsage: '高级用法',
loadingStatus: '加载状态', loadingStatus: '加载状态',
@ -81,7 +80,6 @@ export function initDemoLocale() {
disabled: 'Disabled', disabled: 'Disabled',
uneditable: 'Uneditable', uneditable: 'Uneditable',
basicUsage: 'Basic Usage', basicUsage: 'Basic Usage',
checkboxUsage: 'Checkbox Usage',
usingUrl: 'Using URL', usingUrl: 'Using URL',
advancedUsage: 'Advanced Usage', advancedUsage: 'Advanced Usage',
loadingStatus: 'Loading', loadingStatus: 'Loading',

View File

@ -1,4 +1,4 @@
import { defineComponent, type ExtractPropTypes } from 'vue'; import { defineComponent, type PropType, type ExtractPropTypes } from 'vue';
// Utils // Utils
import { import {
@ -24,46 +24,40 @@ export const couponCellProps = {
coupons: makeArrayProp<CouponInfo>(), coupons: makeArrayProp<CouponInfo>(),
currency: makeStringProp('¥'), currency: makeStringProp('¥'),
chosenCoupon: { chosenCoupon: {
type: [Number, Array], type: [Number, Array] as PropType<number | number[]>,
default: -1, default: -1,
}, },
}; };
export type CouponCellProps = ExtractPropTypes<typeof couponCellProps>; export type CouponCellProps = ExtractPropTypes<typeof couponCellProps>;
function formatValue({ coupons, chosenCoupon, currency }: CouponCellProps) { const getValue = (coupon: CouponInfo) => {
const getValue = (coupon: CouponInfo) => { const { value, denominations } = coupon;
let value = 0; if (isDef(value)) {
const { value: couponValue, denominations } = coupon;
if (isDef(coupon.value)) {
value = couponValue;
} else if (isDef(coupon.denominations)) {
value = denominations as number;
}
return value; return value;
}; }
if (isDef(denominations)) {
return denominations;
}
return 0;
};
let value = 0, function formatValue({ coupons, chosenCoupon, currency }: CouponCellProps) {
isExist = false; let value = 0;
if (Array.isArray(chosenCoupon)) { let isExist = false;
(chosenCoupon as CouponInfo[]).forEach((i) => {
const coupon = coupons[+i]; (Array.isArray(chosenCoupon) ? chosenCoupon : [chosenCoupon]).forEach((i) => {
if (coupon) { const coupon = coupons[+i];
isExist = true;
value += getValue(coupon);
}
});
} else {
const coupon = coupons[+chosenCoupon];
if (coupon) { if (coupon) {
isExist = true; isExist = true;
value = getValue(coupon); value += getValue(coupon);
} }
});
if (isExist) {
return `-${currency} ${(value / 100).toFixed(2)}`;
} }
if (!isExist) { return coupons.length === 0 ? t('noCoupon') : t('count', coupons.length);
return coupons.length === 0 ? t('noCoupon') : t('count', coupons.length);
}
return `-${currency} ${(value / 100).toFixed(2)}`;
} }
export default defineComponent({ export default defineComponent({

View File

@ -4,8 +4,8 @@ import {
computed, computed,
nextTick, nextTick,
onMounted, onMounted,
unref,
defineComponent, defineComponent,
type PropType,
type ExtractPropTypes, type ExtractPropTypes,
} from 'vue'; } from 'vue';
@ -38,7 +38,6 @@ export const couponListProps = {
currency: makeStringProp('¥'), currency: makeStringProp('¥'),
showCount: truthProp, showCount: truthProp,
emptyImage: String, emptyImage: String,
chosenCoupon: [Number, Array],
enabledTitle: String, enabledTitle: String,
disabledTitle: String, disabledTitle: String,
disabledCoupons: makeArrayProp<CouponInfo>(), disabledCoupons: makeArrayProp<CouponInfo>(),
@ -51,6 +50,10 @@ export const couponListProps = {
displayedCouponIndex: makeNumberProp(-1), displayedCouponIndex: makeNumberProp(-1),
exchangeButtonLoading: Boolean, exchangeButtonLoading: Boolean,
exchangeButtonDisabled: Boolean, exchangeButtonDisabled: Boolean,
chosenCoupon: {
type: [Number, Array] as PropType<number | number[]>,
default: -1,
},
}; };
export type CouponListProps = ExtractPropTypes<typeof couponListProps>; export type CouponListProps = ExtractPropTypes<typeof couponListProps>;
@ -134,21 +137,18 @@ export default defineComponent({
}; };
const renderCouponTab = () => { const renderCouponTab = () => {
const { coupons } = props; const { coupons, chosenCoupon } = props;
const count = props.showCount ? ` (${coupons.length})` : ''; const count = props.showCount ? ` (${coupons.length})` : '';
const title = (props.enabledTitle || t('enable')) + count; const title = (props.enabledTitle || t('enable')) + count;
const getChosenCoupon = ( const updateChosenCoupon = (
chosenCoupon: Array<any> = [], currentValues: number[] = [],
value: number = 0, value: number = 0,
): Array<any> => { ) => {
const unrefChosenCoupon = unref(chosenCoupon); if (currentValues.includes(value)) {
const index = unrefChosenCoupon.indexOf(value); return currentValues.filter((item) => item !== value);
if (index === -1) {
return [...unrefChosenCoupon, value];
} }
unrefChosenCoupon.splice(index, 1); return [...currentValues, value];
return [...unrefChosenCoupon];
}; };
return ( return (
@ -163,16 +163,16 @@ export default defineComponent({
ref={setCouponRefs(index)} ref={setCouponRefs(index)}
coupon={coupon} coupon={coupon}
chosen={ chosen={
Array.isArray(props.chosenCoupon) Array.isArray(chosenCoupon)
? props.chosenCoupon.includes(index) ? chosenCoupon.includes(index)
: index === props.chosenCoupon : index === chosenCoupon
} }
currency={props.currency} currency={props.currency}
onClick={() => onClick={() =>
emit( emit(
'change', 'change',
Array.isArray(props.chosenCoupon) Array.isArray(chosenCoupon)
? getChosenCoupon(props.chosenCoupon, index) ? updateChosenCoupon(chosenCoupon, index)
: index, : index,
) )
} }

View File

@ -90,21 +90,21 @@ export default {
### CouponCell Props ### CouponCell Props
| Attribute | Description | Type | Default | | Attribute | Description | Type | Default |
| ------------- | ---------------------------- | ------------------ | -------- | | --- | --- | --- | --- |
| title | Cell title | _string_ | `Coupon` | | title | Cell title | _string_ | `Coupon` |
| chosen-coupon | Index of chosen coupon | _number \| string_ | `-1` | | chosen-coupon | Index of chosen coupon | _number \| number[]_ | `-1` |
| coupons | Coupon list | _Coupon[]_ | `[]` | | coupons | Coupon list | _Coupon[]_ | `[]` |
| editable | Cell editable | _boolean_ | `true` | | editable | Cell editable | _boolean_ | `true` |
| border | Whether to show inner border | _boolean_ | `true` | | border | Whether to show inner border | _boolean_ | `true` |
| currency | Currency symbol | _string_ | `¥` | | currency | Currency symbol | _string_ | `¥` |
### CouponList Props ### CouponList Props
| Attribute | Description | Type | Default | | Attribute | Description | Type | Default |
| --- | --- | --- | --- | | --- | --- | --- | --- |
| v-model | Current exchange code | _string_ | - | | v-model | Current exchange code | _string_ | - |
| chosen-coupon | Index of chosen coupon,support multiple selection(type `[]`) | _number\|number[]_ | `-1` | | chosen-coupon | Index of chosen coupons, support multiple selection (type is `[]`) | _number \| number[]_ | `-1` |
| coupons | Coupon list | _CouponInfo[]_ | `[]` | | coupons | Coupon list | _CouponInfo[]_ | `[]` |
| disabled-coupons | Disabled coupon list | _CouponInfo[]_ | `[]` | | disabled-coupons | Disabled coupon list | _CouponInfo[]_ | `[]` |
| enabled-title | Title of coupon list | _string_ | `Available` | | enabled-title | Title of coupon list | _string_ | `Available` |

View File

@ -90,21 +90,21 @@ export default {
### CouponCell Props ### CouponCell Props
| 参数 | 说明 | 类型 | 默认值 | | 参数 | 说明 | 类型 | 默认值 |
| ------------- | -------------------- | ------------------ | -------- | | ------------- | -------------------- | -------------------- | -------- |
| title | 单元格标题 | _string_ | `优惠券` | | title | 单元格标题 | _string_ | `优惠券` |
| chosen-coupon | 当前选中优惠券的索引 | _number \| string_ | `-1` | | chosen-coupon | 当前选中优惠券的索引 | _number \| number[]_ | `-1` |
| coupons | 可用优惠券列表 | _Coupon[]_ | `[]` | | coupons | 可用优惠券列表 | _Coupon[]_ | `[]` |
| editable | 能否切换优惠券 | _boolean_ | `true` | | editable | 能否切换优惠券 | _boolean_ | `true` |
| border | 是否显示内边框 | _boolean_ | `true` | | border | 是否显示内边框 | _boolean_ | `true` |
| currency | 货币符号 | _string_ | `¥` | | currency | 货币符号 | _string_ | `¥` |
### CouponList Props ### CouponList Props
| 参数 | 说明 | 类型 | 默认值 | | 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- | | --- | --- | --- | --- |
| v-model:code | 当前输入的兑换码 | _string_ | - | | v-model:code | 当前输入的兑换码 | _string_ | - |
| chosen-coupon | 当前选中优惠券的索引,支持多选(类型为`[]` | _number\|number[]_ | `-1` | | chosen-coupon | 当前选中优惠券的索引,支持多选(类型为 `[]` | _number \| number[]_ | `-1` |
| coupons | 可用优惠券列表 | _CouponInfo[]_ | `[]` | | coupons | 可用优惠券列表 | _CouponInfo[]_ | `[]` |
| disabled-coupons | 不可用优惠券列表 | _CouponInfo[]_ | `[]` | | disabled-coupons | 不可用优惠券列表 | _CouponInfo[]_ | `[]` |
| enabled-title | 可用优惠券列表标题 | _string_ | `可使用优惠券` | | enabled-title | 可用优惠券列表标题 | _string_ | `可使用优惠券` |

View File

@ -3,7 +3,7 @@ import VanCouponCell from '../../coupon-cell';
import VanPopup from '../../popup'; import VanPopup from '../../popup';
import VanButton from '../../button'; import VanButton from '../../button';
import VanCouponList from '..'; import VanCouponList from '..';
import { ref, computed, unref } from 'vue'; import { ref, computed } from 'vue';
import { useTranslate } from '../../../docs/site'; import { useTranslate } from '../../../docs/site';
import { CouponInfo } from '../../coupon'; import { CouponInfo } from '../../coupon';
import { showToast } from '../../toast'; import { showToast } from '../../toast';
@ -16,6 +16,7 @@ const t = useTranslate({
description: '描述信息', description: '描述信息',
}, },
exchange: '兑换成功', exchange: '兑换成功',
checkboxUsage: '多选用法',
}, },
'en-US': { 'en-US': {
coupon: { coupon: {
@ -24,6 +25,7 @@ const t = useTranslate({
description: 'Description', description: 'Description',
}, },
exchange: 'Success', exchange: 'Success',
checkboxUsage: 'Checkbox Usage',
}, },
}); });
@ -33,8 +35,8 @@ const getRandomId = (max = 999999) =>
const showList = ref(false); const showList = ref(false);
const showListArray = ref(false); const showListArray = ref(false);
const chosenCoupon = ref(-1); const chosenCoupon = ref(-1);
const chosenCouponArray = ref([]); const chosenCouponArray = ref<number[]>([]);
const chosenCouponArrayResult = ref([]); const chosenCouponArrayResult = ref<number[]>([]);
const exchangedCoupons = ref<CouponInfo[]>([]); const exchangedCoupons = ref<CouponInfo[]>([]);
const coupon = computed(() => ({ const coupon = computed(() => ({
@ -88,13 +90,13 @@ const onChange = (index: number) => {
chosenCoupon.value = index; chosenCoupon.value = index;
}; };
const onChangeArray = (chosenCoupon: []) => { const onChangeArray = (chosenCoupon: number[]) => {
chosenCouponArray.value = chosenCoupon; chosenCouponArray.value = chosenCoupon;
}; };
const onSubmit = () => { const onSubmit = () => {
showListArray.value = false; showListArray.value = false;
chosenCouponArrayResult.value = unref(chosenCouponArray); chosenCouponArrayResult.value = chosenCouponArray.value;
}; };
const onExchange = () => { const onExchange = () => {