Compare commits

..

No commits in common. "6e479ea7450c2abb05f4cceb06b15e09ee6d3617" and "82492e10d91e7ee4a5ae5c4365fb43b6a01e9c3e" have entirely different histories.

View File

@ -1,6 +1,6 @@
import React from "react"; import React from 'react';
import { useState } from "react"; import { useState } from 'react';
import "./style.css"; import './style.css';
function TicTacToe() { function TicTacToe() {
const [gridState, setGridState] = useState(Array(9).fill(0)); const [gridState, setGridState] = useState(Array(9).fill(0));
@ -20,7 +20,7 @@ function TicTacToe() {
const newState = playerState ? 2 : 1; const newState = playerState ? 2 : 1;
updateGridState(index, newState); updateGridState(index, newState);
const winner = checkWinCondition(); const winner = checkWinCondition()
if (winner) { if (winner) {
localWinState = winner; localWinState = winner;
setWinState(winner); setWinState(winner);
@ -31,11 +31,16 @@ function TicTacToe() {
} }
function checkWinCondition() : number { function checkWinCondition() : number {
function getWinningValue(a: number, b: number, c: number) {
if (a === b && b === c && a === c) { function getWinningValue(
a : number,
b : number,
c : number
) {
if ((a === b) && (b === c) && (a === c)) {
return a; return a;
} }
return 0; return 0
} }
/* /*
* Diagonals * Diagonals
@ -76,9 +81,9 @@ function TicTacToe() {
const isDrawState = () => { const isDrawState = () => {
for (let i in gridState) { for (let i in gridState) {
if (!gridState[i]) return false; if (!gridState[i]) return false;
}
return true;
}; };
return true;
}
if (isDrawState()) return 3; if (isDrawState()) return 3;
return 0; return 0;
@ -86,40 +91,45 @@ function TicTacToe() {
let stateString = ""; let stateString = "";
if (localWinState === 3) { if (localWinState === 3) {
stateString = `Game draw.`; stateString = `Game draw.`
} else if (localWinState) { }
else if (localWinState) {
stateString = `Player ${getStateChar(localWinState)} wins.`; stateString = `Player ${getStateChar(localWinState)} wins.`;
} else { }
stateString = `Player ${getStateChar(playerState ? 2 : 1)} turn.`; else {
stateString = `Player ${getStateChar(playerState ? 2 : 1)} turn.`
} }
return ( return (
<div className="TicTacToe"> <div className="TicTacToe">
<h1>{stateString}</h1> <h1>{stateString}</h1>
<div className="TicTacToeGrid"> <div className="TicTacToeGrid">
{gridState.map((item, index) => { {
const getState = () => { gridState.map((item, index) => {
return gridState[index]; const getState = () => { return gridState[index] };
}; const callback = () => { playTurn(index) };
const callback = () => { return (<TicTacToeCell getState={getState} callback={callback}/>);
playTurn(index); })
}; }
return <TicTacToeCell state={gridState[index]} onClick={callback} />;
})}
</div> </div>
</div> </div>
); );
} }
interface CellProps { interface CellProps {
state: number; getState: () => number;
onClick: () => void; callback: () => void;
}
function TicTacToeCell({ getState, callback }: CellProps) {
function handleClick() {
callback()
} }
function TicTacToeCell({ state, onClick }: CellProps) {
return ( return (
<div className={`TicTacToeCell ${getStateClass(state)}`} onClick={onClick}> <div className={`TicTacToeCell ${getStateClass(getState())}`} onClick={handleClick}>
<p>{getStateChar(state)}</p> <p>{getStateChar(getState())}</p>
</div> </div>
); );
} }