| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547 |
- import React, { forwardRef, useCallback, useImperativeHandle, useState } from 'react';
- import {
- ActivityIndicator,
- Alert,
- Dimensions,
- ImageBackground,
- Modal,
- ScrollView,
- StyleSheet,
- Text,
- TouchableOpacity,
- View,
- } from 'react-native';
- import { Images } from '@/constants/images';
- import { getUnavailableSeatNumbers, previewOrder } from '@/services/award';
- const { width: SCREEN_WIDTH } = Dimensions.get('window');
- const ITEM_WIDTH = Math.floor((SCREEN_WIDTH - 28 - 12 * 4) / 5);
- // 等级配置
- const LEVEL_MAP: Record<string, { title: string; color: string }> = {
- A: { title: '超神款', color: '#FF4444' },
- B: { title: '欧皇款', color: '#FF9600' },
- C: { title: '隐藏款', color: '#9B59B6' },
- D: { title: '普通款', color: '#00CCFF' },
- };
- interface BoxData {
- number: string;
- quantity: number;
- lastNumber: number;
- }
- interface NumChooseModalProps {
- poolId: string;
- onPay: (params: { preview: any; seatNumbers: number[]; boxNumber: string }) => void;
- }
- export interface NumChooseModalRef {
- show: (box: BoxData) => void;
- close: () => void;
- }
- export const NumChooseModal = forwardRef<NumChooseModalRef, NumChooseModalProps>(
- ({ poolId, onPay }, ref) => {
- const [visible, setVisible] = useState(false);
- const [box, setBox] = useState<BoxData | null>(null);
- const [tabs, setTabs] = useState<{ title: string; value: number; data: number[] }[]>([]);
- const [currentTab, setCurrentTab] = useState<{ title: string; value: number; data: number[] } | null>(null);
- const [checkMap, setCheckMap] = useState<Record<number, number>>({});
- const [useMap, setUseMap] = useState<Record<number, string>>({});
- const [lockMap, setLockMap] = useState<Record<number, number>>({});
- const [loading, setLoading] = useState(false);
- // 已选择的号码列表
- const chooseData = Object.values(checkMap);
- // 初始化标签页
- const handleTab = useCallback((boxData: BoxData) => {
- const totalData: number[] = [];
- for (let i = 1; i <= boxData.quantity; i++) {
- totalData.push(i);
- }
- const newTabs: { title: string; value: number; data: number[] }[] = [];
- const count = Math.floor(boxData.quantity / 100) + (boxData.quantity % 100 > 0 ? 1 : 0);
- for (let i = 0; i < count; i++) {
- let title = `${100 * i + 1}~${100 * i + 100}`;
- if (100 * (i + 1) > totalData.length) {
- title = `${100 * i + 1}~${totalData.length}`;
- }
- newTabs.push({
- title,
- value: i + 1,
- data: totalData.slice(100 * i, 100 * (i + 1)),
- });
- }
- setTabs(newTabs);
- setCurrentTab(newTabs[0] || null);
- }, []);
- // 获取不可用座位号
- const getData = useCallback(async (boxData: BoxData, tab?: { data: number[] }) => {
- try {
- let startSeatNumber = 1;
- let endSeatNumber = 100;
- if (tab && tab.data.length > 0) {
- startSeatNumber = tab.data[0];
- endSeatNumber = tab.data[tab.data.length - 1];
- }
- const res = await getUnavailableSeatNumbers(poolId, boxData.number, startSeatNumber, endSeatNumber);
- if (res) {
- const nums: number[] = [];
- if (res.usedSeatNumbers) {
- const map: Record<number, string> = {};
- res.usedSeatNumbers.forEach((item: { seatNumber: number; level: string }) => {
- map[item.seatNumber] = item.level;
- nums.push(item.seatNumber);
- });
- setUseMap(map);
- }
- if (res.applyedSeatNumbers) {
- const map: Record<number, number> = {};
- res.applyedSeatNumbers.forEach((item: number) => {
- map[item] = item;
- nums.push(item);
- });
- setLockMap(map);
- }
- // 移除已被占用的选择
- if (nums.length > 0) {
- setCheckMap((prev) => {
- const newMap = { ...prev };
- nums.forEach((n) => delete newMap[n]);
- return newMap;
- });
- }
- }
- } catch (error) {
- console.error('获取座位号失败:', error);
- }
- }, [poolId]);
- useImperativeHandle(ref, () => ({
- show: (boxData: BoxData) => {
- setBox(boxData);
- setCheckMap({});
- setUseMap({});
- setLockMap({});
- setVisible(true);
- handleTab(boxData);
- // 延迟获取数据,等待标签页初始化完成
- setTimeout(() => {
- const totalData: number[] = [];
- for (let i = 1; i <= boxData.quantity; i++) {
- totalData.push(i);
- }
- const firstTabData = totalData.slice(0, 100);
- getData(boxData, { data: firstTabData });
- }, 100);
- },
- close: () => {
- setVisible(false);
- setBox(null);
- setTabs([]);
- setCurrentTab(null);
- setCheckMap({});
- setUseMap({});
- setLockMap({});
- },
- }));
- const close = () => {
- setVisible(false);
- };
- // 切换标签页
- const clickTab = (tab: { title: string; value: number; data: number[] }) => {
- setCurrentTab(tab);
- if (box) getData(box, tab);
- };
- // 选择/取消选择号码
- const choose = (item: number) => {
- if (useMap[item] || lockMap[item]) return;
- setCheckMap((prev) => {
- const newMap = { ...prev };
- if (newMap[item]) {
- delete newMap[item];
- } else {
- if (Object.keys(newMap).length >= 50) {
- Alert.alert('提示', '最多不超过50发');
- return prev;
- }
- newMap[item] = item;
- }
- return newMap;
- });
- };
- // 删除已选择的号码
- const deleteChoose = (item: number) => {
- setCheckMap((prev) => {
- const newMap = { ...prev };
- delete newMap[item];
- return newMap;
- });
- };
- // 预览订单
- const preview = async () => {
- if (!box) return;
- if (chooseData.length <= 0) {
- Alert.alert('提示', '请选择号码');
- return;
- }
- setLoading(true);
- try {
- const res = await previewOrder(poolId, chooseData.length, box.number, chooseData);
- if (res) {
- if (res.duplicateSeatNumbers && res.duplicateSeatNumbers.length > 0) {
- Alert.alert('提示', `${res.duplicateSeatNumbers.join(',')}号被占用`);
- // 移除被占用的号码
- setCheckMap((prev) => {
- const newMap = { ...prev };
- res.duplicateSeatNumbers.forEach((n: number) => delete newMap[n]);
- return newMap;
- });
- getData(box);
- return;
- }
- onPay({ preview: res, seatNumbers: chooseData, boxNumber: box.number });
- close();
- }
- } catch (error: any) {
- Alert.alert('提示', error?.message || '获取订单信息失败');
- } finally {
- setLoading(false);
- }
- };
- return (
- <Modal visible={visible} transparent animationType="slide" onRequestClose={close}>
- <View style={styles.overlay}>
- <TouchableOpacity style={styles.mask} activeOpacity={1} onPress={close} />
- <ImageBackground source={{ uri: Images.box.detail.recordBg }} style={styles.container} resizeMode="cover">
- {/* 标题 */}
- <View style={styles.titleSection}>
- <Text style={styles.title}>换盒</Text>
- <TouchableOpacity style={styles.closeBtn} onPress={close}>
- <Text style={styles.closeText}>×</Text>
- </TouchableOpacity>
- </View>
- {/* 标签页 */}
- {tabs.length > 1 && (
- <ScrollView horizontal showsHorizontalScrollIndicator={false} style={styles.tabsScroll}>
- <View style={styles.tabs}>
- {tabs.map((tab) => (
- <TouchableOpacity
- key={tab.value}
- style={[styles.tabItem, currentTab?.value === tab.value && styles.tabItemActive]}
- onPress={() => clickTab(tab)}
- >
- <Text style={[styles.tabText, currentTab?.value === tab.value && styles.tabTextActive]}>
- {tab.title}
- </Text>
- </TouchableOpacity>
- ))}
- </View>
- </ScrollView>
- )}
- {/* 号码网格 */}
- <ScrollView style={styles.gridScroll} showsVerticalScrollIndicator={false}>
- <View style={styles.grid}>
- {currentTab?.data.map((item) => {
- const isChecked = !!checkMap[item];
- const isUsed = !!useMap[item];
- const isLocked = !!lockMap[item];
- return (
- <TouchableOpacity
- key={item}
- style={[
- styles.gridItem,
- isChecked && styles.gridItemActive,
- isUsed && styles.gridItemUsed,
- isLocked && styles.gridItemLocked,
- ]}
- onPress={() => choose(item)}
- disabled={isUsed || isLocked}
- >
- {isUsed ? (
- <View style={styles.usedContent}>
- <Text style={styles.usedNum}>{item}号</Text>
- <Text style={[styles.levelTitle, { color: LEVEL_MAP[useMap[item]]?.color }]}>
- {LEVEL_MAP[useMap[item]]?.title}
- </Text>
- </View>
- ) : (
- <Text style={[styles.gridItemText, isLocked && styles.gridItemTextLocked]}>
- {item}号
- </Text>
- )}
- {isChecked && (
- <View style={styles.checkIcon}>
- <Text style={styles.checkIconText}>✓</Text>
- </View>
- )}
- {isLocked && (
- <View style={styles.lockIcon}>
- <Text style={styles.lockIconText}>🔒</Text>
- </View>
- )}
- </TouchableOpacity>
- );
- })}
- </View>
- </ScrollView>
- {/* 已选择的号码 */}
- <View style={styles.selectedSection}>
- <ScrollView horizontal showsHorizontalScrollIndicator={false} style={styles.selectedScroll}>
- {chooseData.map((item) => (
- <View key={item} style={styles.selectedItem}>
- <Text style={styles.selectedText}>{item}号</Text>
- <TouchableOpacity style={styles.selectedClose} onPress={() => deleteChoose(item)}>
- <Text style={styles.selectedCloseText}>×</Text>
- </TouchableOpacity>
- </View>
- ))}
- </ScrollView>
- </View>
- {/* 确认按钮 */}
- <View style={styles.btnBox}>
- <TouchableOpacity
- style={[styles.submitBtn, loading && styles.submitBtnDisabled]}
- onPress={preview}
- disabled={loading}
- >
- {loading ? (
- <ActivityIndicator color="#fff" size="small" />
- ) : (
- <>
- <Text style={styles.submitText}>确定选择</Text>
- <Text style={styles.submitSubText}>已选择({chooseData.length})发</Text>
- </>
- )}
- </TouchableOpacity>
- </View>
- </ImageBackground>
- </View>
- </Modal>
- );
- }
- );
- const styles = StyleSheet.create({
- overlay: {
- flex: 1,
- backgroundColor: 'rgba(0,0,0,0.5)',
- justifyContent: 'flex-end',
- },
- mask: { flex: 1 },
- container: {
- borderTopLeftRadius: 15,
- borderTopRightRadius: 15,
- paddingTop: 15,
- paddingBottom: 34,
- maxHeight: '80%',
- },
- titleSection: {
- alignItems: 'center',
- paddingVertical: 15,
- position: 'relative',
- },
- title: {
- fontSize: 16,
- fontWeight: 'bold',
- color: '#fff',
- textShadowColor: '#000',
- textShadowOffset: { width: 1, height: 1 },
- textShadowRadius: 2,
- },
- closeBtn: {
- position: 'absolute',
- right: 15,
- top: 10,
- width: 24,
- height: 24,
- backgroundColor: '#ebebeb',
- borderRadius: 12,
- justifyContent: 'center',
- alignItems: 'center',
- },
- closeText: { fontSize: 18, color: '#a2a2a2', marginTop: -2 },
- tabsScroll: {
- maxHeight: 40,
- marginHorizontal: 10,
- marginBottom: 10,
- },
- tabs: {
- flexDirection: 'row',
- },
- tabItem: {
- paddingHorizontal: 12,
- paddingVertical: 6,
- backgroundColor: 'rgba(255,255,255,0.2)',
- borderRadius: 15,
- marginRight: 8,
- },
- tabItemActive: {
- backgroundColor: '#FFC900',
- },
- tabText: {
- fontSize: 12,
- color: '#fff',
- },
- tabTextActive: {
- color: '#000',
- fontWeight: 'bold',
- },
- gridScroll: {
- height: 350,
- backgroundColor: '#fff',
- marginHorizontal: 10,
- borderRadius: 10,
- },
- grid: {
- flexDirection: 'row',
- flexWrap: 'wrap',
- padding: 10,
- },
- gridItem: {
- width: ITEM_WIDTH,
- height: ITEM_WIDTH / 2,
- backgroundColor: '#FFC900',
- borderWidth: 3,
- borderColor: '#000',
- borderRadius: 4,
- justifyContent: 'center',
- alignItems: 'center',
- margin: 4,
- position: 'relative',
- },
- gridItemActive: {},
- gridItemUsed: {
- backgroundColor: '#e8e8e8',
- },
- gridItemLocked: {
- backgroundColor: 'rgba(98, 99, 115, 0.3)',
- borderWidth: 0,
- },
- gridItemText: {
- fontSize: 12,
- color: '#000',
- fontWeight: 'bold',
- },
- gridItemTextLocked: {
- color: 'rgba(255,255,255,0.3)',
- },
- usedContent: {
- alignItems: 'center',
- },
- usedNum: {
- fontSize: 10,
- color: '#000',
- opacity: 0.5,
- },
- levelTitle: {
- fontSize: 10,
- fontWeight: 'bold',
- },
- checkIcon: {
- position: 'absolute',
- right: 0,
- bottom: 0,
- width: 16,
- height: 14,
- backgroundColor: '#000',
- borderTopLeftRadius: 6,
- justifyContent: 'center',
- alignItems: 'center',
- },
- checkIconText: {
- fontSize: 10,
- color: '#FFC900',
- },
- lockIcon: {
- position: 'absolute',
- right: 0,
- bottom: 0,
- width: 16,
- height: 14,
- justifyContent: 'center',
- alignItems: 'center',
- },
- lockIconText: {
- fontSize: 10,
- },
- selectedSection: {
- height: 40,
- marginHorizontal: 10,
- marginTop: 10,
- },
- selectedScroll: {
- flex: 1,
- },
- selectedItem: {
- flexDirection: 'row',
- alignItems: 'center',
- backgroundColor: '#FFC900',
- borderWidth: 3,
- borderColor: '#000',
- borderRadius: 4,
- paddingHorizontal: 10,
- paddingVertical: 4,
- marginRight: 8,
- height: 32,
- },
- selectedText: {
- fontSize: 12,
- color: '#000',
- fontWeight: 'bold',
- },
- selectedClose: {
- marginLeft: 6,
- width: 16,
- height: 16,
- backgroundColor: 'rgba(255,255,255,0.3)',
- borderRadius: 8,
- justifyContent: 'center',
- alignItems: 'center',
- },
- selectedCloseText: {
- fontSize: 12,
- color: '#000',
- },
- btnBox: {
- paddingHorizontal: 20,
- paddingTop: 15,
- },
- submitBtn: {
- backgroundColor: '#ff9600',
- height: 50,
- borderRadius: 25,
- justifyContent: 'center',
- alignItems: 'center',
- },
- submitBtnDisabled: {
- opacity: 0.6,
- },
- submitText: {
- fontSize: 16,
- fontWeight: 'bold',
- color: '#fff',
- textShadowColor: '#000',
- textShadowOffset: { width: 1, height: 1 },
- textShadowRadius: 1,
- },
- submitSubText: {
- fontSize: 10,
- color: '#fff',
- marginTop: 2,
- },
- });
|