"use client"; import { useState, useEffect } from "react"; const MatchDays = ({ onSelectMatch }) => { const [activeIndex, setActiveIndex] = useState(0); const [matchDays, setMatchDays] = useState([]); useEffect(() => { getMatchDays(); }, []); useEffect(() => { console.log("matchDays", matchDays); if (matchDays.length > 0) { getMatchesByDate(matchDays[0].date); } }, [matchDays]); async function getMatchDays() { try { const response = await fetch("/api/match?action=getMatchDays"); if (!response.ok) { throw new Error("Network response was not ok"); } const res = await response.json(); console.log("MatchDays", res.data); setMatchDays(res.data); } catch (error) { console.error("Error fetching match days:", error); throw error; } } // 根据日期获取比赛 async function getMatchesByDate(date) { console.log("date", date); try { const response = await fetch( `/api/match?action=getMatchesByDate&date=${date}` ); if (!response.ok) { throw new Error("Network response was not ok"); } const res = await response.json(); console.log("Matches", res.data); onSelectMatch(res.data); } catch (error) { console.error("Error fetching matches by date:", error); throw error; } } // 搜索比赛 const searchMatches = (index, date) => { setActiveIndex(index); getMatchesByDate(date); }; return ( ); }; export default MatchDays;