From 1ac48d12b8cbda5270831df606ccecdb05a4e081 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 16 Nov 2021 14:16:05 +0800 Subject: [PATCH] fix(CouponList): incorrect list height (#9874) --- packages/vant/src/coupon-list/CouponList.tsx | 66 ++++++++++--------- packages/vant/src/coupon-list/index.less | 5 -- .../test/__snapshots__/index.spec.ts.snap | 24 +++++-- 3 files changed, 52 insertions(+), 43 deletions(-) diff --git a/packages/vant/src/coupon-list/CouponList.tsx b/packages/vant/src/coupon-list/CouponList.tsx index 1965cb624..18ae0ea07 100644 --- a/packages/vant/src/coupon-list/CouponList.tsx +++ b/packages/vant/src/coupon-list/CouponList.tsx @@ -1,8 +1,8 @@ import { + ref, watch, computed, nextTick, - reactive, onMounted, defineComponent, ExtractPropTypes, @@ -11,6 +11,7 @@ import { // Utils import { truthProp, + windowHeight, makeArrayProp, makeStringProp, makeNumberProp, @@ -26,6 +27,7 @@ import { Tabs } from '../tabs'; import { Field } from '../field'; import { Button } from '../button'; import { Coupon, CouponInfo } from '../coupon'; +import { useRect } from '@vant/use'; const [name, bem, t] = createNamespace('coupon-list'); const EMPTY_IMAGE = 'https://img.yzcdn.cn/vant/coupon-empty.png'; @@ -62,34 +64,40 @@ export default defineComponent({ setup(props, { emit, slots }) { const [couponRefs, setCouponRefs] = useRefs(); - const state = reactive({ - tab: 0, - code: props.code, - }); + const root = ref(); + const barRef = ref(); + const activeTab = ref(0); + const listHeight = ref(0); + const currentCode = ref(props.code); const buttonDisabled = computed( () => !props.exchangeButtonLoading && (props.exchangeButtonDisabled || - !state.code || - state.code.length < props.exchangeMinLength) + !currentCode.value || + currentCode.value.length < props.exchangeMinLength) ); + const updateListHeight = () => { + const TABS_HEIGHT = 44; + const rootHeight = useRect(root).height; + const headerHeight = useRect(barRef).height + TABS_HEIGHT; + listHeight.value = + (rootHeight > headerHeight ? rootHeight : windowHeight.value) - + headerHeight; + }; + const onExchange = () => { - emit('exchange', state.code); + emit('exchange', currentCode.value); // auto clear currentCode when not use v-model if (!props.code) { - state.code = ''; + currentCode.value = ''; } }; const scrollToCoupon = (index: number) => { - nextTick(() => { - if (couponRefs.value[index]) { - couponRefs.value[index].scrollIntoView(); - } - }); + nextTick(() => couponRefs.value[index]?.scrollIntoView()); }; const renderEmpty = () => ( @@ -102,9 +110,9 @@ export default defineComponent({ const renderExchangeBar = () => { if (props.showExchangeBar) { return ( -
+
{coupons.map((coupon, index) => (
{disabledCoupons.map((coupon) => ( props.code, (value) => { - state.code = value; + currentCode.value = value; } ); - watch( - () => state.code, - (value) => emit('update:code', value) - ); - + watch(windowHeight, updateListHeight); + watch(currentCode, (value) => emit('update:code', value)); watch(() => props.displayedCouponIndex, scrollToCoupon); onMounted(() => { + updateListHeight(); scrollToCoupon(props.displayedCouponIndex); }); return () => ( -
+
{renderExchangeBar()} - + {renderCouponTab()} {renderDisabledTab()} diff --git a/packages/vant/src/coupon-list/index.less b/packages/vant/src/coupon-list/index.less index b0208f72a..5935ce447 100644 --- a/packages/vant/src/coupon-list/index.less +++ b/packages/vant/src/coupon-list/index.less @@ -56,15 +56,10 @@ &__list { box-sizing: border-box; - height: calc(100vh - 108px); padding: var(--van-padding-md) 0 var(--van-padding-lg); overflow-y: auto; -webkit-overflow-scrolling: touch; - &--with-bar { - height: calc(100vh - 152px); - } - &--with-bottom { padding-bottom: 50px; } diff --git a/packages/vant/src/coupon-list/test/__snapshots__/index.spec.ts.snap b/packages/vant/src/coupon-list/test/__snapshots__/index.spec.ts.snap index 6c8e40f40..adbb09e98 100644 --- a/packages/vant/src/coupon-list/test/__snapshots__/index.spec.ts.snap +++ b/packages/vant/src/coupon-list/test/__snapshots__/index.spec.ts.snap @@ -59,7 +59,9 @@ exports[`should be the sames as the last snapshot when render coupon list 1`] = class="van-tab__pane" style > -
+
@@ -338,7 +340,9 @@ exports[`should have two "van-coupon-list__empty" classes when render coupon lis class="van-tab__pane" style="display: none;" > -
+

@@ -351,7 +355,9 @@ exports[`should have two "van-coupon-list__empty" classes when render coupon lis class="van-tab__pane" style > -

+

@@ -435,7 +441,9 @@ exports[`should render list-footer slot correctly 1`] = ` class="van-tab__pane" style="display: none;" > -

+

@@ -449,7 +457,9 @@ exports[`should render list-footer slot correctly 1`] = ` class="van-tab__pane" style > -

+

@@ -534,7 +544,9 @@ exports[`should use custom src when using empty-image prop 1`] = ` class="van-tab__pane" style > -

+