-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
134 lines (120 loc) · 3.92 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import React from 'react';
import ReactDOM from 'react-dom';
import Board from './components/board';
import './styles/index.css';
class Game extends React.Component {
constructor(props) {
super(props);
this.state = {
history: [{
squares: Array(9).fill(null),
clickedField: undefined,
}],
stepNumber: 0,
currentlyViewedMove: null,
xIsNext: true,
};
}
handleClick(i) {//co bedzie mial przekazane?
const history = this.state.history.slice(0, this.state.stepNumber + 1);//przy pierwszym ruchu to jest array o jednym slocie
const current = history[history.length - 1];//wskazuje ostatni ruch - caly obiekt
const squares = current.squares.slice();//kopia arraya
if (squares[i] || calculateWinner(squares).whoWon) {
return;
}
squares[i] = this.state.xIsNext ? 'X' : 'O';
this.setState({
history: history.concat([{
squares: squares,//tu trzeba bylo oblec obiekt w ramki arraya
clickedField: i
}]),
stepNumber: history.length,
xIsNext: !this.state.xIsNext
});
}
jumpTo(step) {
this.setState({
stepNumber: step,
xIsNext: (step % 2) === 0,
});
}
render() {
const history = this.state.history;
console.log("index.js state :");
console.log(this.state);
const current = history[this.state.stepNumber];
const winnerInfo = calculateWinner(current.squares);
const moves = history.map(
(step, move) => {
let klass = "";
if (move === this.state.currentlyViewedMove) {
klass = "bolder";
}
const desc = move ?
'Go to move #' + move + '. It was ' + (step.clickedField % 3 + 1) + ' col and ' + Math.ceil(step.clickedField / 3) + ' row' :
'Go to game start';
return (
<li key={move}>
<button
onClick={
() => {
this.jumpTo(move);
this.setState({currentlyViewedMove: move});
}
}
className={klass}
>{desc}</button>
</li>
);
}
);
//////STATUS//////////
let status;
if (winnerInfo.whoWon) {
status = "Winner: " + winnerInfo.whoWon;
} else {
status = "Next player " + (this.state.xIsNext ? 'X' : 'O');
}
return (
<div className="game">
<div className="game-board">
<Board
squares={current.squares}
onClick={(i) => this.handleClick(i)}
winnerInfo={winnerInfo}
/>
</div>
<div className="game-info">
<div>{status}</div>
<ol>{moves}</ol>
{/*its an array*/}
</div>
</div>
);
}
}
function calculateWinner(squares) {
const lines = [
[0, 1, 2],
[3, 4, 5],
[6, 7, 8],
[0, 3, 6],
[1, 4, 7],
[2, 5, 8],
[0, 4, 8],
[2, 4, 6],
];
for (let i = 0; i < lines.length; i++) {
const [a, b, c] = lines[i];
if (squares[a] &&
squares[a] === squares[b] && squares[a] === squares[c]) {
return {whoWon: squares[a], set: lines[i]};
}
}
return {whoWon: undefined, set: undefined};
}
// ========================================
ReactDOM.render(
<Game/>,
document.getElementById('root')
);