2cd4e25682
Align HQ orders page with partner dual-SMS offline proxy flow; improve mini-user stores session and WeChat confirm-receive handling. Co-authored-by: Cursor <cursoragent@cursor.com>
225 lines
7.8 KiB
TypeScript
225 lines
7.8 KiB
TypeScript
import { useCallback, useMemo, useState } from 'react';
|
|
import { View, Text, Image } from '@tarojs/components';
|
|
import Taro, { useDidShow, usePullDownRefresh, useShareAppMessage, useShareTimeline } from '@tarojs/taro';
|
|
import PageShell from '../../components/PageShell';
|
|
import ShareNavButton from '../../components/ShareNavButton';
|
|
import WechatShareReady from '../../components/WechatShareReady';
|
|
import UserTabBar, { shouldRenderPageTabBar, syncTabBarSelected } from '../../components/UserTabBar';
|
|
import { goLogin } from '../../lib/auth-nav';
|
|
import { isLoggedIn, request, toast } from '../../lib/api';
|
|
import { navBarStyle, tabNavContentStyle, useNavBarMetrics } from '../../lib/nav-bar';
|
|
import {
|
|
DEFAULT_SHARE_DESC,
|
|
DEFAULT_SHARE_TITLE,
|
|
toWeappShareMessage,
|
|
} from '../../lib/wechat-share';
|
|
import iconBenefit from '../../assets/tabbar/benefit-active.png';
|
|
|
|
type BenefitSummary = {
|
|
totalBalance: number;
|
|
maxRedeemAmount: number;
|
|
activeCouponCount: number;
|
|
};
|
|
|
|
type CouponItem = {
|
|
id: string;
|
|
couponNo: string;
|
|
totalAmount: number;
|
|
usedAmount: number;
|
|
balance: number;
|
|
status: string;
|
|
sourceProduct: string;
|
|
};
|
|
|
|
function formatMoney(amount: number) {
|
|
return amount.toLocaleString('zh-CN', { minimumFractionDigits: 2, maximumFractionDigits: 2 });
|
|
}
|
|
|
|
function usagePercent(coupon: CouponItem) {
|
|
const total = Number(coupon.totalAmount);
|
|
if (total <= 0) return 0;
|
|
return Math.min(100, Math.round((Number(coupon.usedAmount) / total) * 100));
|
|
}
|
|
|
|
export default function BenefitPage() {
|
|
const metrics = useNavBarMetrics();
|
|
const [loggedIn, setLoggedIn] = useState(() => isLoggedIn());
|
|
const [summary, setSummary] = useState<BenefitSummary | null>(null);
|
|
const [coupons, setCoupons] = useState<CouponItem[]>([]);
|
|
const [tab, setTab] = useState<'available' | 'history'>('available');
|
|
|
|
const resetGuestState = useCallback(() => {
|
|
setSummary(null);
|
|
setCoupons([]);
|
|
}, []);
|
|
|
|
const loadBenefit = useCallback(() => {
|
|
if (!isLoggedIn()) return Promise.resolve();
|
|
return Promise.all([
|
|
request<BenefitSummary>('/benefit/summary'),
|
|
request<CouponItem[]>('/benefit/coupons'),
|
|
])
|
|
.then(([s, list]) => {
|
|
setSummary(s);
|
|
setCoupons(Array.isArray(list) ? list : []);
|
|
})
|
|
.catch((e) => toast(e instanceof Error ? e.message : '加载失败'));
|
|
}, []);
|
|
|
|
useDidShow(() => {
|
|
syncTabBarSelected(2);
|
|
const loggedInNow = isLoggedIn();
|
|
setLoggedIn(loggedInNow);
|
|
if (loggedInNow) {
|
|
void loadBenefit();
|
|
} else {
|
|
resetGuestState();
|
|
}
|
|
});
|
|
|
|
usePullDownRefresh(() => {
|
|
const loggedInNow = isLoggedIn();
|
|
setLoggedIn(loggedInNow);
|
|
if (!loggedInNow) {
|
|
resetGuestState();
|
|
Taro.stopPullDownRefresh();
|
|
return;
|
|
}
|
|
void loadBenefit().finally(() => Taro.stopPullDownRefresh());
|
|
});
|
|
|
|
const available = coupons.filter((c) => c.status === 'ACTIVE' && c.balance > 0);
|
|
const history = coupons.filter((c) => c.status === 'USED_UP' || c.status === 'VOID');
|
|
const visible = tab === 'available' ? available : history;
|
|
|
|
const sharePayload = useMemo(
|
|
() => ({
|
|
title: '好客权益 · 杜康好客',
|
|
desc: DEFAULT_SHARE_DESC,
|
|
path: '/pages/benefit/index',
|
|
}),
|
|
[],
|
|
);
|
|
|
|
useShareAppMessage(() => toWeappShareMessage(sharePayload));
|
|
useShareTimeline(() => ({
|
|
title: sharePayload.title || DEFAULT_SHARE_TITLE,
|
|
query: '',
|
|
imageUrl: sharePayload.imgUrl,
|
|
}));
|
|
|
|
return (
|
|
<PageShell variant="tab" className="benefit-page">
|
|
<WechatShareReady payload={sharePayload} />
|
|
<View className="benefit-header" style={navBarStyle(metrics)} aria-label="好客权益">
|
|
{process.env.TARO_ENV !== 'h5' ? (
|
|
<Text className="benefit-header-title">好客权益</Text>
|
|
) : null}
|
|
<View
|
|
className="benefit-header__content"
|
|
style={tabNavContentStyle(metrics)}
|
|
>
|
|
<View className="benefit-header-city">
|
|
<View className="benefit-header-city-pin" />
|
|
<Text>郑州市</Text>
|
|
</View>
|
|
<View className="benefit-header__share page-nav-bar__right-slot">
|
|
<ShareNavButton payload={sharePayload} />
|
|
</View>
|
|
</View>
|
|
</View>
|
|
|
|
{!loggedIn ? (
|
|
<View className="benefit-login-gate">
|
|
<View className="u-empty">登录后查看好客权益余额</View>
|
|
<View
|
|
className="u-btn u-btn--block"
|
|
style={{ maxWidth: 240, margin: '0 auto' }}
|
|
onClick={() => goLogin('/pages/benefit/index')}
|
|
>
|
|
<Text>去登录</Text>
|
|
</View>
|
|
</View>
|
|
) : (
|
|
<View className="benefit-main">
|
|
<View className="benefit-hero">
|
|
<View className="benefit-hero-top">
|
|
<View>
|
|
<Text className="benefit-hero-label">当前好客权益余额</Text>
|
|
<View className="benefit-hero-amount">
|
|
<Text className="benefit-hero-symbol">¥</Text>
|
|
<Text className="benefit-hero-value">
|
|
{summary ? formatMoney(summary.totalBalance) : '--'}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
<View className="benefit-hero-logo">
|
|
<Image className="benefit-hero-logo-img" src={iconBenefit} mode="aspectFit" />
|
|
</View>
|
|
</View>
|
|
<View
|
|
className="benefit-hero-cta"
|
|
onClick={() => Taro.navigateTo({ url: '/pages/redeem/index' })}
|
|
>
|
|
<Text>去使用</Text>
|
|
</View>
|
|
</View>
|
|
|
|
<View className="benefit-tabs">
|
|
<Text
|
|
className={`benefit-tab${tab === 'available' ? ' benefit-tab--active' : ''}`}
|
|
onClick={() => setTab('available')}
|
|
>
|
|
可用权益
|
|
</Text>
|
|
<Text
|
|
className={`benefit-tab${tab === 'history' ? ' benefit-tab--active' : ''}`}
|
|
onClick={() => setTab('history')}
|
|
>
|
|
历史记录
|
|
</Text>
|
|
</View>
|
|
|
|
{visible.length === 0 ? (
|
|
<View className="u-empty">{tab === 'available' ? '暂无可用权益' : '暂无历史记录'}</View>
|
|
) : (
|
|
visible.map((c) => (
|
|
<View key={c.id} className="benefit-coupon">
|
|
<View className="benefit-coupon-notch" />
|
|
<View className="benefit-coupon-notch benefit-coupon-notch--right" />
|
|
<View className="benefit-coupon-head">
|
|
<Text className="benefit-coupon-name">{c.sourceProduct || '好客权益'}</Text>
|
|
<Text className="benefit-coupon-balance">¥{formatMoney(c.balance)}</Text>
|
|
</View>
|
|
<Text className="benefit-coupon-no">NO. {c.couponNo}</Text>
|
|
<View className="benefit-progress">
|
|
<View className="benefit-progress-bar" style={{ width: `${usagePercent(c)}%` }} />
|
|
</View>
|
|
<View className="benefit-coupon-footer">
|
|
<Text className="benefit-coupon-meta">
|
|
已用 ¥{formatMoney(c.usedAmount)} / 总额 ¥{formatMoney(c.totalAmount)}
|
|
</Text>
|
|
{tab === 'available' ? (
|
|
<Text
|
|
className="benefit-coupon-btn"
|
|
onClick={() =>
|
|
Taro.navigateTo({
|
|
url: `/pages/redeem/index?couponId=${c.id}&amount=${c.balance}`,
|
|
})
|
|
}
|
|
>
|
|
立即核销
|
|
</Text>
|
|
) : null}
|
|
</View>
|
|
</View>
|
|
))
|
|
)}
|
|
</View>
|
|
)}
|
|
|
|
{shouldRenderPageTabBar() ? <UserTabBar selected={2} /> : null}
|
|
</PageShell>
|
|
);
|
|
}
|