-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
136 lines (113 loc) · 3.03 KB
/
script.js
File metadata and controls
136 lines (113 loc) · 3.03 KB
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
135
136
const CARD_VALUES = [
"+", "+", "=", "=",
"#", "#", "@", "@",
"&", "&", "%", "%",
"<<", "<<", ">>", ">>",
]
function generateCards() {
const shuffledValues = CARD_VALUES.map(item => item)
for (let i = CARD_VALUES.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
let temp = shuffledValues[i];
shuffledValues[i] = shuffledValues[j];
shuffledValues[j] = temp;
}
return shuffledValues.map(value => {
return {
"value": value,
"isOpen": false,
}
})
}
const Title = () => {
return (
<div className="header">
<h1 className="header__title">Memory Game</h1>
</div>
)
}
const Card = ({value, isOpen, cardIndex, onClickCard}) => {
return (
<button
onClick={() => onClickCard(value, cardIndex)}
className={`card ${isOpen ? "card_open" : ""}`}
>
<span className={`card__value ${!isOpen ? "card__value_hide" : ""}`}>{value}</span>
</button>
)
}
const Main = () => {
const [cards, setCards] = React.useState(generateCards())
const [firstOpenedCard, setFirstOpenedCard] = React.useState(null)
const [secondOpenedCard, setSecondOpenedCard] = React.useState(null)
React.useEffect(() => {
if (cards.every(card => card.isOpen)) {
if (confirm("Congratulations! Start again?")) {
location.reload();
}
}
}, [cards])
React.useEffect(() => {
if (!firstOpenedCard || !secondOpenedCard) {
return;
}
if (firstOpenedCard.value !== secondOpenedCard.value) {
setTimeout(() => {
setCards(prevState => {
const newState = [...prevState];
firstOpenedCard.isOpen = false;
secondOpenedCard.isOpen = false;
newState[firstOpenedCard.index] = firstOpenedCard;
newState[secondOpenedCard.index] = secondOpenedCard;
return newState;
})
}, 200)
}
setFirstOpenedCard(null);
setSecondOpenedCard(null);
}, [cards, firstOpenedCard, secondOpenedCard])
const onClickCard = (value, index) => {
const card = cards[index]
if (card.isOpen) {
return;
}
card.isOpen = true;
setCards(prevState => {
const newState = [...prevState];
newState[index] = card;
return newState;
})
if (firstOpenedCard === null) {
setFirstOpenedCard({...card, index})
}
if (firstOpenedCard && secondOpenedCard === null) {
setSecondOpenedCard({...card, index})
}
}
return (
<div className="main">
<div className="field">
{cards.map((card, index) => {
return (
<Card
key={index}
cardIndex={index}
value={card.value}
isOpen={card.isOpen}
onClickCard={onClickCard}
/>
)
})}
</div>
</div>
)
}
const App = () => {
return (
<div className="content">
<Title/>
<Main/>
</div>
)
}
ReactDOM.render(<App/>, document.getElementById("root"))