"use client"; import React, { useState, useEffect } from "react"; import Alert from "./components/Alert"; import { useRouter } from "next/navigation"; import { format } from "date-fns"; import zhCN from "date-fns/locale/zh-CN"; import { fetchApi } from "../utils/fetch"; import { Minus, Plus, Play, X, Check, Clock, User } from "lucide-react"; const no_goal_logo = "/images/no_goal_logo.png"; const FootballMatch = ({ selectedDayMatches, currentUser }) => { const router = useRouter(); const [isModalOpen, setIsModalOpen] = useState(false); const [alert, setAlert] = useState(null); const [selectedMatchId, setSelectedMatchId] = useState(null); const [selectedMatch, setSelectedMatch] = useState(null); const [selectedWinTeams, setSelectedWinTeams] = useState({}); // ["home", "away", "draw"] const [totalGoalCountOfMatch, setTotalGoalCountOfMatch] = useState({}); const [selectedFirstTeamToScoreOfMatch, setSelectedFirstTeamToScoreOfMatch] = useState({}); const [predictions, setPredictions] = useState([]); const [selectedFirstTeamToScore, setSelectedFirstTeamToScore] = useState(""); // ["home", "away", "no_goal"] const selectedWinTeam = selectedWinTeams[selectedMatchId] || ""; const predictionMap = predictions.reduce((map, prediction) => { map[prediction.matchId] = prediction; return map; }, {}); useEffect(() => { const fetchPredictions = async () => { try { const res = await fetchApi( `/api/prediction?username=${currentUser?.username || ""}` ); if (res.success) { setPredictions(res.data); } else { setAlert({ type: "error", message: res.error }); } } catch (err) { setAlert({ type: "error", message: err }); } }; if (currentUser?.id) { fetchPredictions(); } }, [currentUser]); useEffect(() => { if (selectedMatchId !== null) { handleSubmitPredictions(); } }, [ selectedWinTeams, totalGoalCountOfMatch, selectedFirstTeamToScoreOfMatch, ]); const incrementGoal = (matchId, whoWillWin, totalGoals, matchStatus) => { if (checkUserLogin()) { return; } if (matchStatus === "进行中") { setAlert({ type: "error", message: "比赛已开始,无法提交预测" }); return; } setSelectedMatchId(matchId); if (!selectedWinTeams[matchId] && whoWillWin == null) { setAlert({ type: "error", message: "请先选择球队" }); return; } setTotalGoalCountOfMatch((prev) => { const currentGoals = prev[matchId] !== undefined ? prev[matchId] : -1; const baseGoals = currentGoals === -1 && totalGoals !== null && totalGoals !== undefined ? totalGoals : currentGoals; return { ...prev, [matchId]: Math.min(baseGoals + 1, 20), }; }); setTimeout(() => { setAlert({ type: "success", message: "预测提交成功" }); }, 1000); }; const decrementGoal = (matchId, whoWillWin, totalGoals, matchStatus) => { if (checkUserLogin()) { return; } if (matchStatus === "进行中") { setAlert({ type: "error", message: "比赛已开始,无法提交预测" }); return; } setSelectedMatchId(matchId); if (!selectedWinTeams[matchId] && whoWillWin == null) { setAlert({ type: "error", message: "请先选择球队" }); return; } setTotalGoalCountOfMatch((prev) => { const currentGoals = prev[matchId] !== undefined ? prev[matchId] : -1; const baseGoals = currentGoals === -1 && totalGoals !== null && totalGoals !== undefined ? totalGoals : currentGoals; return { ...prev, [matchId]: Math.max(baseGoals - 1, 0), }; }); setTimeout(() => { setAlert({ type: "success", message: "预测提交成功" }); }, 1000); }; // 选择who wins const handleWinTeamSelect = (matchId, selectedTeam, matchStatus) => { if (checkUserLogin()) { return; } if (matchStatus === "进行中") { setAlert({ type: "error", message: "比赛已开始,无法提交预测" }); return; } console.log("selectedWhoWinTeam", matchId, selectedTeam); setSelectedMatchId(matchId); setSelectedWinTeams((prevState) => ({ ...prevState, [matchId]: selectedTeam, })); }; // 选择 FirstScoreTeam const handleFirstScoreTeamSelect = (matchId, selectedTeam) => { console.log("selectedFirstScoreTeam", matchId, selectedTeam); setSelectedMatchId(matchId); setSelectedFirstTeamToScore(selectedTeam?.type); setSelectedFirstTeamToScoreOfMatch((prevState) => ({ ...prevState, [matchId]: selectedTeam, })); setIsModalOpen(false); }; // 打开 FirstScoreTeam 选择框 const openSelectFirstTeamModal = (match, whoWillWin, firstTeamToScore) => { if (checkUserLogin()) { return; } if (match.status === "进行中") { setAlert({ type: "error", message: "比赛已开始,无法提交预测" }); return; } const matchId = match._id; setSelectedMatchId(matchId); firstTeamToScore ? setSelectedFirstTeamToScore(firstTeamToScore) : setSelectedFirstTeamToScore(""); if (!selectedWinTeams[matchId] && whoWillWin == null) { setAlert({ type: "error", message: "请先选择球队" }); return; } setSelectedMatch(match); setIsModalOpen(true); }; // 提交预测 const handleSubmitPredictions = async () => { console.log( totalGoalCountOfMatch, selectedWinTeams, selectedFirstTeamToScoreOfMatch ); // 格式化单个预测数据的辅助函数 const formatPrediction = (matchId, existingPrediction = null) => { return { type: "football", matchId, football: { whoWillWin: { prediction: selectedWinTeams[matchId] || existingPrediction?.football?.whoWillWin?.prediction || null, }, firstTeamToScore: { prediction: selectedFirstTeamToScoreOfMatch?.[matchId]?.type || existingPrediction?.football?.firstTeamToScore?.prediction || null, firstTeamToScoreLogo: selectedFirstTeamToScoreOfMatch?.[matchId]?.logo || existingPrediction?.football?.firstTeamToScore ?.firstTeamToScoreLogo || null, }, totalGoals: { prediction: typeof totalGoalCountOfMatch[matchId] === "number" ? totalGoalCountOfMatch[matchId] : existingPrediction?.football?.totalGoals?.prediction || null, }, }, }; }; // 生成预测数据数组 const prediction = Object.keys(selectedWinTeams).length > 0 ? Object.keys(selectedWinTeams).map((matchId) => formatPrediction(matchId) ) : (() => { const existingPrediction = predictions.find( (prediction) => prediction.matchId === selectedMatchId ); return existingPrediction ? [formatPrediction(selectedMatchId, existingPrediction)] : []; })(); try { const res = await fetchApi("/api/prediction", { method: "POST", body: JSON.stringify({ userId: currentUser?.id, predictions: prediction, }), }); if (res.success) { setAlert({ type: "success", message: "预测提交成功" }); } else { setAlert({ type: "error", message: res.error }); } } catch (error) { console.error("Error submitting predictions:", error); } }; const checkUserLogin = () => { if (!currentUser) { setAlert({ type: "error", message: "请先登录" }); return true; } return false; }; return (
赢取额外积分