import React, { useState, useEffect } from 'react'; import { Carousel } from 'primereact/carousel'; import { parseCourseEvent } from '@/utils/nostr'; import { useNostr } from '@/hooks/useNostr'; import CourseTemplate from '@/components/content/carousels/templates/CourseTemplate'; import TemplateSkeleton from '@/components/content/carousels/skeletons/TemplateSkeleton'; const responsiveOptions = [ { breakpoint: '3000px', numVisible: 3, numScroll: 1 }, { breakpoint: '1462px', numVisible: 2, numScroll: 1 }, { breakpoint: '575px', numVisible: 1, numScroll: 1 } ]; export default function CoursesCarousel() { const [processedCourses, setProcessedCourses] = useState([]); const { fetchCourses, fetchZapsForEvents } = useNostr(); useEffect(() => { const fetch = async () => { try { const fetchedCourses = await fetchCourses(); if (fetchedCourses && fetchedCourses.length > 0) { // First process the courses to be ready for display const processedCourses = fetchedCourses.map(course => parseCourseEvent(course)); // Fetch zaps for all processed courses at once const allZaps = await fetchZapsForEvents(processedCourses); console.log('allZaps:', allZaps); // Process zaps to associate them with their respective courses const coursesWithZaps = processedCourses.map(course => { const relevantZaps = allZaps.filter(zap => { const eTagMatches = zap.tags.find(tag => tag[0] === 'e' && tag[1] === course.id); const aTag = zap.tags.find(tag => tag[0] === 'a'); const aTagMatches = aTag && course.d === aTag[1].split(':').pop(); return eTagMatches || aTagMatches; }); return { ...course, zaps: relevantZaps }; }); setProcessedCourses(coursesWithZaps); } else { console.log('No courses fetched or empty array returned'); } } catch (error) { console.error('Error fetching courses:', error); } }; fetch(); }, [fetchCourses, fetchZapsForEvents]); return ( <>