| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- import { Ionicons } from '@expo/vector-icons';
- import { useRouter } from 'expo-router';
- import React, { useCallback, useEffect, useState } from 'react';
- import {
- ActivityIndicator,
- FlatList,
- Image,
- ImageBackground,
- StyleSheet,
- Text,
- TouchableOpacity,
- View,
- } from 'react-native';
- import { useSafeAreaInsets } from 'react-native-safe-area-context';
- import { Images } from '@/constants/images';
- import { getStore } from '@/services/award';
- import event from '@/utils/event';
- const StoreChooseScreen = () => {
- const router = useRouter();
- const insets = useSafeAreaInsets();
- const [list, setList] = useState<any[]>([]);
- const [selectedIds, setSelectedIds] = useState<string[]>([]);
- const [loading, setLoading] = useState(false);
- const [refreshing, setRefreshing] = useState(false);
- const [page, setPage] = useState(1);
- const [hasMore, setHasMore] = useState(true);
- const [tabIndex, setTabIndex] = useState(0);
- const tabs = [
- { title: '全部', value: '' },
- { title: '普通', value: 'D' },
- { title: '隐藏', value: 'C' },
- { title: '欧皇', value: 'B' },
- { title: '超神', value: 'A' },
- ];
- const loadData = useCallback(async (isRefresh = false) => {
- if (loading) return;
- const curPage = isRefresh ? 1 : page;
- setLoading(true);
- console.log('Fetching store data:', curPage, tabs[tabIndex].value);
- try {
- const data = await getStore(curPage, 20, 0, tabs[tabIndex].value);
- console.log('Store data received:', data);
- let records = [];
- if (Array.isArray(data)) {
- records = data;
- } else if (data && data.records) {
- records = data.records;
- }
- console.log('Parsed records length:', records.length);
- if (records.length > 0) {
- setList(prev => (isRefresh ? records : [...prev, ...records]));
- setHasMore(records.length === 20); // Assuming page size is 20
- setPage(curPage + 1);
- } else {
- setList(prev => (isRefresh ? [] : prev));
- setHasMore(false);
- }
- } catch (err) {
- console.error('Fetch store error:', err);
- // Alert.alert('Error', '加载数据失败'); // Optional: show alert
- } finally {
- setLoading(false);
- setRefreshing(false);
- }
- }, [loading, page, tabIndex]);
- useEffect(() => {
- loadData(true);
- }, [tabIndex]);
- const onRefresh = () => {
- setRefreshing(true);
- loadData(true);
- };
- const onEndReached = () => {
- if (hasMore && !loading) {
- loadData();
- }
- };
- const toggleSelect = (id: string) => {
- setSelectedIds(prev =>
- prev.includes(id) ? prev.filter(i => i !== id) : [...prev, id]
- );
- };
- const handleConfirm = () => {
- if (selectedIds.length === 0) {
- router.back();
- return;
- }
- const selectedGoods = list.filter(item => selectedIds.includes(item.id));
- event.emit(event.keys.STORE_CHOOSE, selectedGoods);
- router.back();
- };
- const renderItem = ({ item }: { item: any }) => {
- const isSelected = selectedIds.includes(item.id);
- return (
- <TouchableOpacity
- style={styles.card}
- onPress={() => toggleSelect(item.id)}
- >
- <Image source={{ uri: item.spu.cover }} style={styles.goodsImg} resizeMode="contain" />
- <View style={styles.info}>
- <Text style={styles.goodsName} numberOfLines={2}>{item.spu.name}</Text>
- <View style={styles.tagRow}>
- <Text style={styles.magicText}>{item.magicAmount} 果实</Text>
- </View>
- </View>
- <View style={[styles.checkbox, isSelected && styles.checkboxSelected]}>
- {isSelected && <Ionicons name="checkmark" size={12} color="#000" />}
- </View>
- </TouchableOpacity>
- );
- };
- return (
- <View style={styles.container}>
- <ImageBackground
- source={{ uri: Images.mine.kaixinMineBg }}
- style={styles.background}
- resizeMode="cover"
- >
- <View style={[styles.header, { paddingTop: insets.top }]}>
- <TouchableOpacity style={styles.backBtn} onPress={() => router.back()}>
- <Ionicons name="chevron-back" size={24} color="#fff" />
- </TouchableOpacity>
- <Text style={styles.title}>选择商品</Text>
- <View style={styles.placeholder} />
- </View>
- <View style={styles.tabBar}>
- {tabs.map((tab, index) => (
- <TouchableOpacity
- key={tab.value}
- style={[styles.tabItem, tabIndex === index && styles.tabItemActive]}
- onPress={() => setTabIndex(index)}
- >
- <Text style={[styles.tabText, tabIndex === index && styles.tabTextActive]}>
- {tab.title}
- </Text>
- </TouchableOpacity>
- ))}
- </View>
- <FlatList
- data={list}
- renderItem={renderItem}
- keyExtractor={(item) => item.id.toString()}
- contentContainerStyle={styles.listContent}
- onRefresh={onRefresh}
- refreshing={refreshing}
- onEndReached={onEndReached}
- onEndReachedThreshold={0.5}
- ListEmptyComponent={
- !loading ? (
- <View style={styles.emptyContainer as any}>
- <Text style={styles.emptyText as any}>暂无商品</Text>
- </View>
- ) : null
- }
- ListFooterComponent={() => loading && (
- <ActivityIndicator size="small" color="#fff" style={{ marginVertical: 20 }} />
- )}
- />
- <View style={[styles.footer as any, { paddingBottom: Math.max(insets.bottom, 20) }]}>
- <TouchableOpacity style={styles.submitBtn as any} onPress={handleConfirm}>
- <ImageBackground
- source={{ uri: Images.common.butBgL }}
- style={styles.submitBtnBg as any}
- resizeMode="stretch"
- >
- <Text style={styles.submitBtnText}>确认选择放入赠品池</Text>
- </ImageBackground>
- </TouchableOpacity>
- </View>
- </ImageBackground>
- </View>
- );
- };
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- },
- background: {
- flex: 1,
- },
- header: {
- flexDirection: 'row',
- alignItems: 'center',
- justifyContent: 'space-between',
- paddingHorizontal: 15,
- height: 90,
- },
- backBtn: {
- width: 40,
- height: 40,
- justifyContent: 'center',
- },
- title: {
- fontSize: 18,
- fontWeight: 'bold',
- color: '#fff',
- },
- placeholder: {
- width: 40,
- },
- tabBar: {
- flexDirection: 'row',
- justifyContent: 'space-around',
- paddingVertical: 10,
- backgroundColor: 'rgba(0,0,0,0.3)',
- },
- tabItem: {
- paddingVertical: 6,
- paddingHorizontal: 12,
- borderRadius: 15,
- },
- tabItemActive: {
- backgroundColor: 'rgba(248, 214, 104, 0.2)',
- },
- tabText: {
- color: '#ccc',
- fontSize: 14,
- },
- tabTextActive: {
- color: '#F8D668',
- fontWeight: 'bold',
- },
- listContent: {
- padding: 15,
- paddingBottom: 100,
- },
- card: {
- flexDirection: 'row',
- backgroundColor: '#fff',
- borderRadius: 8,
- padding: 10,
- marginBottom: 12,
- alignItems: 'center',
- position: 'relative',
- },
- goodsImg: {
- width: 80,
- height: 80,
- borderRadius: 4,
- },
- info: {
- flex: 1,
- marginLeft: 12,
- height: 80,
- justifyContent: 'space-around',
- },
- goodsName: {
- fontSize: 14,
- color: '#333',
- fontWeight: 'bold',
- },
- tagRow: {
- flexDirection: 'row',
- alignItems: 'center',
- },
- magicText: {
- color: '#666',
- fontSize: 12,
- },
- checkbox: {
- width: 20,
- height: 20,
- borderRadius: 10,
- borderWidth: 1,
- borderColor: '#ddd',
- justifyContent: 'center',
- alignItems: 'center',
- position: 'absolute',
- right: 10,
- top: 10,
- },
- checkboxSelected: {
- backgroundColor: '#F8D668',
- borderColor: '#F8D668',
- },
- footer: {
- position: 'absolute',
- bottom: 0,
- left: 0,
- right: 0,
- alignItems: 'center',
- paddingTop: 10,
- backgroundColor: 'rgba(0,0,0,0.5)',
- },
- submitBtn: {
- width: 240,
- height: 60,
- },
- submitBtnBg: {
- width: '100%',
- height: '100%',
- justifyContent: 'center',
- alignItems: 'center',
- },
- submitBtnText: {
- fontSize: 15,
- fontWeight: '800',
- color: '#fff',
- },
- emptyContainer: {
- alignItems: 'center',
- paddingTop: 100,
- },
- emptyText: {
- color: '#999',
- fontSize: 14,
- },
- });
- export default StoreChooseScreen;
|