详情区分运动

This commit is contained in:
xianyi
2026-01-13 11:49:07 +08:00
parent 36fa397bc7
commit 4e7ec81549
6 changed files with 290 additions and 33 deletions

View File

@@ -0,0 +1,150 @@
import { ThemedText } from "@/components/themed-text";
import { MatchDetailData } from "@/types/api";
import React from "react";
import { useTranslation } from "react-i18next";
import { Image, StyleSheet, View } from "react-native";
interface BasketballScoreTableProps {
data: MatchDetailData;
isDark: boolean;
}
export function BasketballScoreTable({ data, isDark }: BasketballScoreTableProps) {
const { t } = useTranslation();
const { match } = data;
const bgColor = isDark ? "#1C1C1E" : "#FFF";
const headerTextColor = isDark ? "#666" : "#999";
// 解析比分 - 篮球通常是 4 节
const parseScore = (scoreString: string) => {
if (!scoreString || scoreString === "-") return [0, 0, 0, 0, 0];
// 假设格式可能是 "25-20,30-28,22-25,28-26" 或类似
// 这里简化处理,实际需要根据 API 返回格式解析
return [0, 0, 0, 0, 0]; // total, q1, q2, q3, q4
};
const homeScores = parseScore(match.eventFinalResult || "-");
const awayScores = parseScore(match.eventFinalResult || "-");
const headers = [
t("detail.score_table.team"),
t("detail.score_table.total"),
"Q1",
"Q2",
"Q3",
"Q4",
];
const rows = [
{
logo: match.homeTeamLogo,
name: match.eventHomeTeam,
total: homeScores[0],
q1: homeScores[1],
q2: homeScores[2],
q3: homeScores[3],
q4: homeScores[4],
},
{
logo: match.awayTeamLogo,
name: match.eventAwayTeam,
total: awayScores[0],
q1: awayScores[1],
q2: awayScores[2],
q3: awayScores[3],
q4: awayScores[4],
},
];
return (
<View style={[styles.container, { backgroundColor: bgColor }]}>
<View style={styles.header}>
{headers.map((h, i) => (
<ThemedText
key={h}
style={[
styles.headerText,
{
color: headerTextColor,
flex: i === 0 ? 3 : 1,
textAlign: i === 0 ? "left" : "center",
},
]}
>
{h}
</ThemedText>
))}
</View>
{rows.map((row, idx) => (
<View key={idx} style={[styles.row, idx === 0 && styles.rowBorder]}>
<View style={styles.teamCell}>
<Image source={{ uri: row.logo }} style={styles.teamLogo} />
<ThemedText style={styles.teamName} numberOfLines={1}>
{row.name}
</ThemedText>
</View>
<ThemedText style={styles.cellText}>{row.total}</ThemedText>
<ThemedText style={styles.cellText}>{row.q1}</ThemedText>
<ThemedText style={styles.cellText}>{row.q2}</ThemedText>
<ThemedText style={styles.cellText}>{row.q3}</ThemedText>
<ThemedText style={styles.cellText}>{row.q4}</ThemedText>
</View>
))}
</View>
);
}
const styles = StyleSheet.create({
container: {
margin: 16,
borderRadius: 12,
padding: 16,
elevation: 2,
shadowColor: "#000",
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.1,
shadowRadius: 4,
},
header: {
flexDirection: "row",
paddingBottom: 12,
borderBottomWidth: StyleSheet.hairlineWidth,
borderBottomColor: "rgba(150,150,150,0.2)",
},
headerText: {
fontSize: 12,
fontWeight: "500",
},
row: {
flexDirection: "row",
alignItems: "center",
paddingVertical: 12,
},
rowBorder: {
borderBottomWidth: StyleSheet.hairlineWidth,
borderBottomColor: "rgba(150,150,150,0.1)",
},
teamCell: {
flex: 3,
flexDirection: "row",
alignItems: "center",
gap: 8,
},
teamLogo: {
width: 24,
height: 24,
resizeMode: "contain",
},
teamName: {
flex: 1,
fontSize: 14,
fontWeight: "500",
},
cellText: {
flex: 1,
textAlign: "center",
fontSize: 14,
fontWeight: "500",
},
});