aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-07-15 16:05:47 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-07-15 16:05:47 +0530
commit45bc041389228e43d6845424131292e60934f424 (patch)
tree24f6c0dd029bcb3b08cc9a9158b6f9079da654f3 /src
Initial commit
Diffstat (limited to 'src')
-rw-r--r--src/components/App.tsx37
-rw-r--r--src/components/Box.tsx41
-rw-r--r--src/components/Footer.tsx32
-rw-r--r--src/components/Grid.tsx94
-rw-r--r--src/components/ScoreBoard.tsx36
-rw-r--r--src/components/style.css93
-rw-r--r--src/index.tsx16
-rw-r--r--src/logo.svg1
-rw-r--r--src/react-app-env.d.ts1
-rw-r--r--src/reportWebVitals.ts15
10 files changed, 366 insertions, 0 deletions
diff --git a/src/components/App.tsx b/src/components/App.tsx
new file mode 100644
index 0000000..19d1e8c
--- /dev/null
+++ b/src/components/App.tsx
@@ -0,0 +1,37 @@
+/*
+ * Tic Tac Toe - Minimalistic Tic Tac Toe
+ * Copyright (C) 2021 Vidhu Kant Sharma
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+import React, { useState } from 'react';
+import ScoreBoard from './ScoreBoard';
+import Grid from './Grid';
+import Footer from './Footer';
+import './style.css';
+
+const App: React.FC = () => {
+ const [scoreX, setScoreX] = useState<number>(0);
+ const [scoreO, setScoreO] = useState<number>(0);
+ return (
+ <>
+ <ScoreBoard scoreX={scoreX} scoreO={scoreO}/>
+ <Grid scoreX={scoreX} setScoreX={setScoreX} scoreO={scoreO} setScoreO={setScoreO}/>
+ <Footer/>
+ </>
+ );
+}
+
+export default App;
diff --git a/src/components/Box.tsx b/src/components/Box.tsx
new file mode 100644
index 0000000..abe8b66
--- /dev/null
+++ b/src/components/Box.tsx
@@ -0,0 +1,41 @@
+/*
+ * Tic Tac Toe - Minimalistic Tic Tac Toe
+ * Copyright (C) 2021 Vidhu Kant Sharma
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+import React from 'react';
+import './style.css';
+
+interface Props {
+ sign: number
+ index: number
+ setSign: (index: number) => void
+}
+
+const Box: React.FC<Props> = (props) => {
+ const handleClick = () => {
+ props.sign === 2 &&
+ props.setSign(props.index)
+ }
+
+ return (
+ <div className={"Box"} onClick={handleClick}>
+ {props.sign < 2 ? (props.sign === 1 ? "X" : "O") : ""}
+ </div>
+ );
+}
+
+export default Box;
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
new file mode 100644
index 0000000..3bcaa2a
--- /dev/null
+++ b/src/components/Footer.tsx
@@ -0,0 +1,32 @@
+/*
+ * Tic Tac Toe - Minimalistic Tic Tac Toe
+ * Copyright (C) 2021 Vidhu Kant Sharma
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+import React from 'react';
+import './style.css';
+
+const Footer: React.FC = () => {
+ return (
+ <div className={"Footer"}>
+ <p><a href="https://github.com/MikunoNaka/tic-tac-toe">Tic Tac Toe</a> Copyright (C) 2021 Vidhu Kant Sharma</p>
+ <p>This program comes with ABSOLUTELY NO WARRANTY; for details refer to <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GNU GPL Licence.</a></p>
+ <p>This is free software, and you are welcome to redistribute it under certain conditions; Refer to <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GNU GPL Licence</a> for details</p>
+ </div>
+ );
+}
+
+export default Footer;
diff --git a/src/components/Grid.tsx b/src/components/Grid.tsx
new file mode 100644
index 0000000..9ac881d
--- /dev/null
+++ b/src/components/Grid.tsx
@@ -0,0 +1,94 @@
+/*
+ * Tic Tac Toe - Minimalistic Tic Tac Toe
+ * Copyright (C) 2021 Vidhu Kant Sharma
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+import React, { useState, useEffect, Dispatch, SetStateAction } from 'react';
+import Box from './Box';
+import './style.css';
+
+interface Props {
+ scoreX: number
+ scoreO: number
+ setScoreX: Dispatch<SetStateAction<number>>
+ setScoreO: Dispatch<SetStateAction<number>>
+}
+
+const Grid: React.FC<Props> = (props) => {
+ // 0 is O, 1 is X, 2 is blank
+ const [board, setBoard] = useState<number[]>([2,2,2,2,2,2,2,2,2]);
+ const [turn, setTurn] = useState<number>(1);
+ const [winner, setWinner] = useState<number>(2)
+
+ const getBoard = (index: number) => {
+ setBoard(board.slice(0, index).concat(turn).concat(board.slice(index+1, 9)));
+ setTurn(turn === 1 ? 0 : 1)
+ }
+
+ const allEqual = (arr: number[]) => arr.includes(2) ? false : arr.every(v => v === arr[0])
+
+ const getRow = (r: number) => board.slice(r * 3, (r * 3) + 3);
+
+ const getCol: any = (c: number, arr=board) => arr.length <= 3 ? arr[c] : [arr[c]].concat(getCol(c, arr.slice(3)))
+
+ const getLeftDiagonal: any = (i: number = 0) =>
+ i < 3 ? [getRow(i)[i]].concat(getLeftDiagonal(i+1)) : [];
+
+ const getRightDiagonal: any = (i: number = 2) =>
+ i >= 0 ? [getRow(2-i)[i]].concat(getRightDiagonal(i-1)) : [];
+
+ const checkHorMatch: any = (rowNum: number = 0) =>
+ rowNum <= 2 && (allEqual(getRow(rowNum)) ? setWinner(turn === 1 ? 0 : 1) : checkHorMatch(rowNum+1))
+
+ const checkVerMatch: any = (colNum: number = 0) =>
+ colNum <= 2 && (allEqual(getCol(colNum)) ? setWinner(turn === 1 ? 0 : 1) : checkVerMatch(colNum+1))
+
+ const checkDiagonalMatch: any = () => {
+ (allEqual(getLeftDiagonal()) || allEqual(getRightDiagonal())) && setWinner(turn === 1 ? 0 : 1)
+ }
+
+ const endGame = (winner: number) => {
+ const gameWinner = winner < 2 ? (winner === 1 ? "X" : "O") : "Draw";
+ alert(`WINNER: ${gameWinner}`)
+ gameWinner === "Draw" || gameWinner === "X"
+ ? props.setScoreX(props.scoreX + 1)
+ : props.setScoreO(props.scoreO + 1)
+ // clean up
+ setBoard([2,2,2,2,2,2,2,2,2]);
+ setWinner(2);
+ }
+
+ useEffect(() => {
+ checkHorMatch();
+ checkVerMatch();
+ checkDiagonalMatch();
+ winner < 2 && endGame(winner);
+ board.includes(2) || endGame(2);
+ })
+
+ return (
+ <div className="Grid">
+ {
+ board.map(
+ (i, index) =>
+ <Box key={index} index={index} sign={i} setSign={getBoard}/>
+ )
+ }
+ </div>
+ );
+}
+
+export default Grid;
diff --git a/src/components/ScoreBoard.tsx b/src/components/ScoreBoard.tsx
new file mode 100644
index 0000000..6d51deb
--- /dev/null
+++ b/src/components/ScoreBoard.tsx
@@ -0,0 +1,36 @@
+/*
+ * Tic Tac Toe - Minimalistic Tic Tac Toe
+ * Copyright (C) 2021 Vidhu Kant Sharma
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+import React from 'react';
+import './style.css';
+
+interface Props {
+ scoreX: number
+ scoreO: number
+}
+
+const ScoreBoard: React.FC<Props> = (props) => {
+ return (
+ <div className={"ScoreBoard"}>
+ <span>X: {props.scoreX}</span>
+ <span>O: {props.scoreO}</span>
+ </div>
+ );
+}
+
+export default ScoreBoard;
diff --git a/src/components/style.css b/src/components/style.css
new file mode 100644
index 0000000..4dac3c2
--- /dev/null
+++ b/src/components/style.css
@@ -0,0 +1,93 @@
+/*
+ * Tic Tac Toe - Minimalistic Tic Tac Toe
+ * Copyright (C) 2021 Vidhu Kant Sharma
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+body, #root {
+ margin: 0px;
+ height: 100vh;
+ width: 100vw;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ align-items: center;
+ background-color: #232627;
+ color: white;
+}
+
+.ScoreBoard {
+ display: flex;
+ justify-content: space-between;
+ font-size: 3rem;
+ width: 20rem;
+ margin-bottom: 0.7rem;
+ margin-top: 1rem;
+}
+
+.Grid {
+ display: grid;
+ grid-template-columns: 9rem 9rem 9rem;
+ grid-template-rows: 9rem 9rem 9rem;
+ grid-row-gap: 1.5rem;
+ grid-column-gap: 1.5rem;
+}
+
+.Box {
+ border: 1px solid #5b76b7;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100%;
+ width: 100%;
+ font-size: 7rem;
+}
+
+.Footer {
+ width: 100%;
+ padding: 0.2rem 0;
+ background-color: #0f0f0f;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-align: center;
+}
+
+.Footer p {
+ color: #a75cb8;
+ margin: 0.2rem;
+ width: 90%;
+}
+
+.Footer a {
+ color: white;
+}
+
+@media only screen and (max-width: 600px) {
+ .Grid {
+ grid-template-columns: 6rem 6rem 6rem;
+ grid-template-rows: 6rem 6rem 6rem;
+ grid-row-gap: 1.5rem;
+ grid-column-gap: 1.5rem;
+ }
+ .Box {
+ font-size: 6rem;
+ }
+ .ScoreBoard {
+ font-size: 3.5rem;
+ width: 16rem;
+ padding-top: 1rem;
+ }
+}
diff --git a/src/index.tsx b/src/index.tsx
new file mode 100644
index 0000000..6ca3f59
--- /dev/null
+++ b/src/index.tsx
@@ -0,0 +1,16 @@
+import React from 'react';
+import ReactDOM from 'react-dom';
+import App from './components/App';
+import reportWebVitals from './reportWebVitals';
+
+ReactDOM.render(
+ <React.StrictMode>
+ <App />
+ </React.StrictMode>,
+ document.getElementById('root')
+);
+
+// If you want to start measuring performance in your app, pass a function
+// to log results (for example: reportWebVitals(console.log))
+// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
+reportWebVitals();
diff --git a/src/logo.svg b/src/logo.svg
new file mode 100644
index 0000000..9dfc1c0
--- /dev/null
+++ b/src/logo.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg> \ No newline at end of file
diff --git a/src/react-app-env.d.ts b/src/react-app-env.d.ts
new file mode 100644
index 0000000..6431bc5
--- /dev/null
+++ b/src/react-app-env.d.ts
@@ -0,0 +1 @@
+/// <reference types="react-scripts" />
diff --git a/src/reportWebVitals.ts b/src/reportWebVitals.ts
new file mode 100644
index 0000000..49a2a16
--- /dev/null
+++ b/src/reportWebVitals.ts
@@ -0,0 +1,15 @@
+import { ReportHandler } from 'web-vitals';
+
+const reportWebVitals = (onPerfEntry?: ReportHandler) => {
+ if (onPerfEntry && onPerfEntry instanceof Function) {
+ import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
+ getCLS(onPerfEntry);
+ getFID(onPerfEntry);
+ getFCP(onPerfEntry);
+ getLCP(onPerfEntry);
+ getTTFB(onPerfEntry);
+ });
+ }
+};
+
+export default reportWebVitals;