All files / src/views/favorites FavoriteEventsTab.tsx

100% Statements 14/14
85.71% Branches 12/14
100% Functions 4/4
100% Lines 14/14

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122  1x             1x 1x 1x 1x   1x 6x   6x 1x               5x                   3x   3x               1x                                                           1x                                                                                            
import React from 'react';
import {
  ActivityIndicator,
  FlatList,
  StyleSheet,
  Text,
  View,
} from 'react-native';
import { Ionicons } from '@expo/vector-icons';
import { router, type Href } from 'expo-router';
import ProfileEventCard from '@/components/profile/ProfileEventCard';
import { useFavoriteEventsViewModel } from '@/viewmodels/favorites/useFavoriteEventsViewModel';
 
export default function FavoriteEventsTab() {
  const vm = useFavoriteEventsViewModel();
 
  if (vm.isLoading) {
    return (
      <View style={styles.center}>
        <ActivityIndicator size="large" color="#000000" />
        <Text style={styles.loadingText}>Loading favorites...</Text>
      </View>
    );
  }
 
  return (
    <View style={styles.container}>
      {vm.apiError ? (
        <View style={styles.errorBanner}>
          <Text style={styles.errorText}>{vm.apiError}</Text>
        </View>
      ) : null}
 
      <FlatList
        data={vm.events}
        keyExtractor={(item) => item.id}
        renderItem={({ item }) => (
          <ProfileEventCard
            title={item.title}
            imageUrl={item.image_url}
            categoryLabel={item.category ?? 'Event'}
            startTime={item.start_time}
            locationAddress={item.location_address ?? null}
            status={item.status}
            privacyLevel={item.privacy_level ?? null}
            onPress={() => router.push(`/event/${item.id}` as Href)}
          />
        )}
        contentContainerStyle={styles.listContent}
        showsVerticalScrollIndicator={false}
        onRefresh={vm.refresh}
        refreshing={vm.isRefreshing}
        onEndReachedThreshold={0.35}
        onEndReached={vm.loadMore}
        ListEmptyComponent={vm.apiError ? null : (
          <View style={styles.center}>
            <Ionicons name="heart-outline" size={40} color="#D1D5DB" />
            <Text style={styles.emptyTitle}>No favorite events yet</Text>
            <Text style={styles.emptySubtitle}>
              Tap the heart icon on an event to save it here.
            </Text>
          </View>
        )}
        ListFooterComponent={
          vm.isLoadingMore ? (
            <View style={styles.footerLoader}>
              <ActivityIndicator size="small" color="#111827" />
            </View>
          ) : null
        }
      />
    </View>
  );
}
 
const styles = StyleSheet.create({
  container: {
    flex: 1,
  },
  center: {
    paddingVertical: 48,
    alignItems: 'center',
    justifyContent: 'center',
  },
  loadingText: {
    marginTop: 12,
    color: '#6B7280',
    fontSize: 15,
  },
  errorBanner: {
    backgroundColor: '#FEF2F2',
    borderColor: '#FECACA',
    borderWidth: 1,
    borderRadius: 12,
    padding: 12,
    marginBottom: 8,
  },
  errorText: {
    color: '#DC2626',
    fontSize: 14,
  },
  listContent: {
    paddingBottom: 20,
  },
  footerLoader: {
    paddingVertical: 16,
  },
  emptyTitle: {
    fontSize: 18,
    fontWeight: '700',
    color: '#111827',
    marginTop: 12,
    marginBottom: 8,
  },
  emptySubtitle: {
    fontSize: 14,
    color: '#6B7280',
    textAlign: 'center',
    paddingHorizontal: 24,
  },
});