import { useCallback, useEffect, useMemo, useState } from 'react'; import { View, Text, Image, Swiper, SwiperItem } from '@tarojs/components'; import Taro, { useDidShow, usePullDownRefresh, useShareAppMessage, useShareTimeline } from '@tarojs/taro'; import PageShell from '../../components/PageShell'; import TabMainHeader from '../../components/TabMainHeader'; import CouponBadge from '../../components/CouponBadge'; 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 { ensurePayReady } from '../../lib/pay-ready'; import { capturePromoSceneAndTouchScan } from '../../lib/promo'; import { getProductMainImage } from '../../lib/product-images'; import { getCityCodeForCatalog, resolveUserCity } from '../../lib/user-location'; import { DEFAULT_SHARE_DESC, DEFAULT_SHARE_TITLE, toWeappShareMessage, } from '../../lib/wechat-share'; type Product = { id: string; name: string; subtitle?: string; spec?: string; price: number; benefitDisplay?: number; mainImageUrl?: string | null; carouselUrls?: string[] | null; aromaType: string; allowOnSitePickup?: boolean; }; type MiniHomeConfig = { banners: string[]; footerUrl: string | null; }; const AROMA_TABS = [ { key: 'QINGXIANG', label: '清香型' }, { key: 'JIANGXIANG', label: '酱香型' }, { key: 'NONGXIANG', label: '浓香型' }, ] as const; export default function HomePage() { const [tab, setTab] = useState('QINGXIANG'); const [products, setProducts] = useState([]); const [loading, setLoading] = useState(true); const [displayCity, setDisplayCity] = useState('郑州市'); const [cityCode, setCityCode] = useState('410100'); const [miniHome, setMiniHome] = useState({ banners: [], footerUrl: null }); const loadMiniHome = useCallback(() => { return request<{ miniHome?: MiniHomeConfig }>('/common/client-config') .then((cfg) => { const banners = Array.isArray(cfg.miniHome?.banners) ? cfg.miniHome!.banners.filter((u) => typeof u === 'string' && !!u.trim()) : []; const footerUrl = typeof cfg.miniHome?.footerUrl === 'string' && cfg.miniHome.footerUrl.trim() ? cfg.miniHome.footerUrl.trim() : null; setMiniHome({ banners, footerUrl }); }) .catch(() => { /* 首页装饰图失败不阻断商品列表 */ }); }, []); useDidShow(() => { syncTabBarSelected(0); void capturePromoSceneAndTouchScan(); void loadMiniHome(); void resolveUserCity().then((resolved) => { setDisplayCity(resolved.displayCity); setCityCode(getCityCodeForCatalog(resolved)); }); }); const loadProducts = useCallback(() => { setLoading(true); return request(`/catalog/products?cityCode=${encodeURIComponent(cityCode)}`) .then((list) => setProducts(Array.isArray(list) ? list : [])) .catch((e) => toast(e instanceof Error ? e.message : '加载失败')) .finally(() => setLoading(false)); }, [cityCode]); useEffect(() => { void loadProducts(); }, [loadProducts]); usePullDownRefresh(() => { void (async () => { try { const resolved = await resolveUserCity(); setDisplayCity(resolved.displayCity); const nextCode = getCityCodeForCatalog(resolved); setCityCode(nextCode); setLoading(true); const [list] = await Promise.all([ request(`/catalog/products?cityCode=${encodeURIComponent(nextCode)}`), loadMiniHome(), ]); setProducts(Array.isArray(list) ? list : []); } catch (e) { toast(e instanceof Error ? e.message : '加载失败'); } finally { setLoading(false); Taro.stopPullDownRefresh(); } })(); }); function openProductDetail(id: string) { Taro.navigateTo({ url: `/pages/product-detail/index?id=${id}` }); } async function goOnSitePickup(productId: string) { const returnPath = `/pages/order-confirm-pickup/index?productId=${productId}&qty=1`; if (!isLoggedIn()) { goLogin(returnPath); return; } const ready = await ensurePayReady(returnPath); if (!ready) return; Taro.navigateTo({ url: returnPath }); } const filtered = products.filter((p) => p.aromaType === tab); const banners = miniHome.banners; const footerUrl = miniHome.footerUrl; const sharePayload = useMemo( () => ({ title: DEFAULT_SHARE_TITLE, desc: DEFAULT_SHARE_DESC, path: '/pages/home/index', imgUrl: banners[0] || undefined, }), [banners], ); useShareAppMessage(() => toWeappShareMessage(sharePayload)); useShareTimeline(() => ({ title: sharePayload.title || DEFAULT_SHARE_TITLE, query: '', imageUrl: sharePayload.imgUrl, })); return ( {banners.length > 0 ? ( 1} autoplay={banners.length > 1} circular={banners.length > 1} interval={2500} > {banners.map((url) => ( ))} ) : null} {AROMA_TABS.map((t) => ( setTab(t.key)} > {t.label} ))} {displayCity} {loading ? 加载中… : null} {!loading && products.length === 0 ? ( 当前城市暂无在售商品 ) : null} {!loading && products.length > 0 && filtered.length === 0 ? ( 该香型暂未上线 ) : null} {!loading && filtered.map((p) => { const thumb = getProductMainImage(p); const spec = p.subtitle || p.spec || ''; return ( openProductDetail(p.id)} > {thumb ? ( ) : ( )} {p.name} ¥{Number(p.price).toFixed(0)} {spec ? {spec} : null} {p.allowOnSitePickup ? ( { e.stopPropagation?.(); void goOnSitePickup(p.id); }} > 现场取货 ) : null} { e.stopPropagation?.(); openProductDetail(p.id); }} > 立即购买 ); })} {footerUrl ? ( ) : null} {shouldRenderPageTabBar() ? : null} ); }