Files
kadi_game/src/Components/KadiGrandTotalRow.tsx

47 lines
1.5 KiB
TypeScript
Executable File

import React, {ReactNode} from "react";
import LocaleContext from "../LocaleContext";
import KadiCell from "./KadiCell";
import {Icon} from "semantic-ui-react";
import {CellScores} from "./KadiBoard";
import {FieldType} from "../../../shared/rulesets";
interface KadiGrandTotalRowProps {
showResults: boolean;
scores: CellScores;
toggleShowResults(): void;
}
const KadiGrandTotalRow: React.FunctionComponent<KadiGrandTotalRowProps> = ({ showResults, toggleShowResults, scores}) => {
const cells: ReactNode[] = [];
const Locale = React.useContext(LocaleContext).strings;
for (const playerId in scores) {
cells.push((
<KadiCell
key={"cell_grandtotal_" + playerId}
location={{blockId: "global", cellId: "grandTotal"}}
fieldType={FieldType.globalTotal}
playerId={playerId}
value={scores[playerId]}
onCellEdit={() => {}}
/>
));
}
return (
<tr
key={"rowContGrandTotal"}
className={"kadiRow " + FieldType.globalTotal + (showResults ? "" : " hideResults")}
>
<td
onClick={toggleShowResults}
className="kadiCell rowLabelCell"
>
{Locale.rowLabels.globalTotal}
<Icon className={"showResultsIcon"} name={showResults ? "hide" : "unhide"} />
</td>
{cells}
</tr>
);
};
export default KadiGrandTotalRow;