MatchDays.jsx 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. "use client";
  2. import { useState, useEffect } from "react";
  3. const MatchDays = ({ onSelectMatch }) => {
  4. const [activeIndex, setActiveIndex] = useState(0);
  5. const [matchDays, setMatchDays] = useState([]);
  6. useEffect(() => {
  7. getMatchDays();
  8. }, []);
  9. useEffect(() => {
  10. console.log("matchDays", matchDays);
  11. if (matchDays.length > 0) {
  12. getMatchesByDate(matchDays[0].date);
  13. }
  14. }, [matchDays]);
  15. async function getMatchDays() {
  16. try {
  17. const response = await fetch("/api/match?action=getMatchDays");
  18. if (!response.ok) {
  19. throw new Error("Network response was not ok");
  20. }
  21. const res = await response.json();
  22. console.log("MatchDays", res.data);
  23. setMatchDays(res.data);
  24. } catch (error) {
  25. console.error("Error fetching match days:", error);
  26. throw error;
  27. }
  28. }
  29. // 根据日期获取比赛
  30. async function getMatchesByDate(date) {
  31. console.log("date", date);
  32. try {
  33. const response = await fetch(
  34. `/api/match?action=getMatchesByDate&date=${date}`
  35. );
  36. if (!response.ok) {
  37. throw new Error("Network response was not ok");
  38. }
  39. const res = await response.json();
  40. console.log("Matches", res.data);
  41. onSelectMatch(res.data);
  42. } catch (error) {
  43. console.error("Error fetching matches by date:", error);
  44. throw error;
  45. }
  46. }
  47. // 搜索比赛
  48. const searchMatches = (index, date) => {
  49. setActiveIndex(index);
  50. getMatchesByDate(date);
  51. };
  52. return (
  53. <nav className="bg-blue-500 pt-4 pb-2 px-4 max-w-md mx-auto">
  54. <div className="container text-center text-white overflow-x-auto no-scrollbar whitespace-nowrap">
  55. <ul className="flex space-x-6">
  56. {matchDays.map((item, index) => (
  57. <li key={item.id} className="relative group">
  58. <a
  59. onClick={() => searchMatches(index, item.date)}
  60. className="text-white"
  61. >
  62. <span className="block mb-1">{item.title}</span>
  63. <span className="block text-sm text-white mb-3">
  64. {item.date}
  65. </span>
  66. </a>
  67. {/* </Link> */}
  68. {activeIndex === index && (
  69. <span className="absolute bottom-0 left-0 right-0 block w-full h-1 bg-red-500"></span>
  70. )}
  71. </li>
  72. ))}
  73. </ul>
  74. {/* </div> */}
  75. </div>
  76. </nav>
  77. );
  78. };
  79. export default MatchDays;