Created
January 22, 2022 20:49
-
-
Save gaearon/b543da43290b15c514493da86958d913 to your computer and use it in GitHub Desktop.
wordle v3 (tiny wordle clone i built during a stream) https://www.youtube.com/watch?v=Qxn4-bTOx0g
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="root"></div> | |
<link href="styles.css" rel="stylesheet"></link> | |
<script src="index.js" type="module"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createRoot } from 'react-dom' | |
import Wordle from './Wordle.js' | |
let root = createRoot(document.getElementById('root')) | |
root.render( | |
<Wordle /> | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"parcel": "^2.2.1", | |
"react": "18.0.0-rc.0-next-13036bfbc-20220121", | |
"react-dom": "18.0.0-rc.0-next-13036bfbc-20220121" | |
}, | |
"scripts": { | |
"start": "parcel index.html" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"compilerOptions": { | |
"jsx": "react-jsx" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState, useEffect, useRef, useMemo } from 'react' | |
export default function Wordle() { | |
let [currentAttempt, setCurrentAttempt] = useState('') | |
let [bestColors, setBestColors] = useState(() => new Map()) | |
let [history, setHistory] = usePersistedHistory(h => { | |
waitForAnimation(h) | |
}) | |
useEffect(() => { | |
window.addEventListener('keydown', handleKeyDown) | |
return () => window.removeEventListener('keydown', handleKeyDown) | |
}) | |
function handleKeyDown(e) { | |
if (e.ctrlKey || e.metaKey || e.altKey) { | |
return | |
} | |
handleKey(e.key) | |
} | |
function handleKey(key) { | |
if (history.length === 6) { | |
return | |
} | |
if (animatingRef.current) { | |
return | |
} | |
let letter = key.toLowerCase() | |
if (letter === 'enter') { | |
if (currentAttempt.length < 5) { | |
return | |
} | |
if (!wordList.includes(currentAttempt)) { | |
alert('Not in my thesaurus') | |
return | |
} | |
if ( | |
history.length === 5 && | |
currentAttempt !== secret | |
) { | |
alert(secret) | |
} | |
let newHistory = [ | |
...history, | |
currentAttempt | |
] | |
setHistory(newHistory) | |
setCurrentAttempt('') | |
waitForAnimation(newHistory) | |
} else if (letter === 'backspace') { | |
setCurrentAttempt( | |
currentAttempt.slice(0, currentAttempt.length - 1) | |
) | |
} else if (/^[a-z]$/.test(letter)) { | |
if (currentAttempt.length < 5) { | |
setCurrentAttempt(currentAttempt + letter) | |
} | |
} | |
} | |
let animatingRef = useRef(false) | |
function waitForAnimation(nextHistory) { | |
if (animatingRef.current) { | |
throw Error('should never happen') | |
} | |
animatingRef.current = true | |
setTimeout(() => { | |
animatingRef.current = false | |
setBestColors(calculateBestColors(nextHistory)) | |
}, 2000) | |
} | |
return ( | |
<div id="screen"> | |
<h1>Wordle</h1> | |
<Grid | |
history={history} | |
currentAttempt={currentAttempt} | |
/> | |
<Keyboard | |
bestColors={bestColors} | |
onKey={handleKey} | |
/> | |
</div> | |
) | |
} | |
let wordList = [ | |
'patio', | |
'darts', | |
'piano', | |
'horse', | |
'hello', | |
'water', | |
'pizza', | |
'sushi', | |
'crabs' | |
]; | |
let secret = wordList[0] | |
function Grid({ | |
history, | |
currentAttempt | |
}) { | |
let rows = [] | |
for (let i = 0; i < 6; i++) { | |
if (i < history.length) { | |
rows.push( | |
<Attempt | |
key={i} | |
attempt={history[i]} | |
solved={true} | |
/> | |
) | |
} else if (i === history.length) { | |
rows.push( | |
<Attempt | |
key={i} | |
attempt={currentAttempt} | |
solved={false} | |
/> | |
) | |
} else { | |
rows.push( | |
<Attempt | |
key={i} | |
attempt="" | |
solved={false} | |
/> | |
) | |
} | |
} | |
return ( | |
<div id="grid"> | |
{rows} | |
</div> | |
); | |
} | |
function Attempt({ | |
attempt, | |
solved, | |
}) { | |
let cells = [] | |
for (let i = 0; i < 5; i++) { | |
cells.push( | |
<Cell | |
key={i} | |
index={i} | |
attempt={attempt} | |
solved={solved} | |
/> | |
) | |
} | |
return <div>{cells}</div> | |
} | |
function Cell({ | |
index, | |
attempt, | |
solved, | |
}) { | |
let content | |
let hasLetter = attempt[index] !== undefined | |
let color = getBgColor(attempt, index) | |
if (hasLetter) { | |
content = attempt[index] | |
} else { | |
// lol | |
content = <div style={{opacity: 0}}>X</div> | |
} | |
return ( | |
<div | |
className={ | |
"cell" + (solved ? ' solved' : '') | |
+ (hasLetter ? ' filled': '') | |
} | |
> | |
<div className="surface" style={{ | |
transitionDelay: (index * 300) + 'ms' | |
}}> | |
<div | |
className="front" | |
style={{ | |
backgroundColor: BLACK, | |
borderColor: hasLetter ? MIDDLEGREY : '' | |
}} | |
> | |
{content} | |
</div> | |
<div | |
className="back" | |
style={{ | |
backgroundColor: color, | |
borderColor: color | |
}} | |
> | |
{content} | |
</div> | |
</div> | |
</div> | |
) | |
} | |
function Keyboard({ bestColors, onKey }) { | |
return ( | |
<div id="keyboard"> | |
<KeyboardRow | |
bestColors={bestColors} | |
letters="qwertyuiop" | |
onKey={onKey} | |
isLast={false} | |
/> | |
<KeyboardRow | |
bestColors={bestColors} | |
letters="asdfghjkl" | |
onKey={onKey} | |
isLast={false} | |
/> | |
<KeyboardRow | |
bestColors={bestColors} | |
letters="zxcvbnm" | |
onKey={onKey} | |
isLast={true} | |
/> | |
</div> | |
) | |
} | |
function KeyboardRow({ | |
bestColors, | |
letters, | |
isLast, | |
onKey | |
}) { | |
let buttons = [] | |
if (isLast) { | |
buttons.push( | |
<Button | |
onKey={onKey} | |
key="enter" | |
buttonKey="Enter" | |
> | |
Enter | |
</Button> | |
) | |
} | |
for (let letter of letters) { | |
buttons.push( | |
<Button | |
onKey={onKey} | |
color={bestColors.get(letter)} | |
key={letter} | |
buttonKey={letter} | |
> | |
{letter} | |
</Button> | |
) | |
} | |
if (isLast) { | |
buttons.push( | |
<Button | |
onKey={onKey} | |
key="backspace" | |
buttonKey="Backspace" | |
> | |
Backspace | |
</Button> | |
) | |
} | |
return ( | |
<div> | |
{buttons} | |
</div> | |
) | |
} | |
function Button({ | |
buttonKey, | |
children, | |
color = LIGHTGREY, | |
onKey, | |
}) { | |
return ( | |
<button | |
className="button" | |
style={{ | |
backgroundColor: color, | |
borderColor: color, | |
}} | |
onClick={() => { | |
onKey(buttonKey) | |
}} | |
> | |
{children} | |
</button> | |
) | |
} | |
function usePersistedHistory(onLoad) { | |
let [history, setHistory] = useState([]) | |
let loadedRef = useRef(false) | |
useEffect(() => { | |
if (loadedRef.current) { | |
return | |
} | |
loadedRef.current = true | |
let savedHistory = loadHistory() | |
if (savedHistory) { | |
setHistory(savedHistory) | |
onLoad(savedHistory) | |
} | |
}) | |
useEffect(() => { | |
saveHistory(history) | |
}, [history]) | |
return [history, setHistory] | |
} | |
function getBgColor(attempt, i) { | |
let correctLetter = secret[i] | |
let attemptLetter = attempt[i] | |
if ( | |
attemptLetter === undefined || | |
secret.indexOf(attemptLetter) === -1 | |
) { | |
return GREY | |
} | |
if (correctLetter === attemptLetter) { | |
return GREEN | |
} | |
return YELLOW | |
} | |
function calculateBestColors(history) { | |
let map = new Map() | |
for (let attempt of history) { | |
for (let i = 0; i < attempt.length; i++) { | |
let color = getBgColor(attempt, i) | |
let key = attempt[i] | |
let bestColor = map.get(key) | |
map.set(key, getBetterColor(color, bestColor)) | |
} | |
} | |
return map | |
} | |
function getBetterColor(a, b) { | |
if (a === GREEN || b === GREEN) { | |
return GREEN | |
} | |
if (a === YELLOW || b === YELLOW) { | |
return YELLOW | |
} | |
return GREY | |
} | |
function loadHistory() { | |
let data | |
try { | |
data = JSON.parse(localStorage.getItem('data')) | |
} catch { } | |
if (data != null) { | |
if (data.secret === secret) { | |
return data.history | |
} | |
} | |
} | |
function saveHistory(history) { | |
let data = JSON.stringify({ | |
secret, | |
history | |
}) | |
try { | |
localStorage.setItem('data', data) | |
} catch { } | |
} | |
let BLACK = '#111' | |
let GREY = '#212121' | |
let MIDDLEGREY = '#666' | |
let LIGHTGREY = '#888' | |
let GREEN = '#538d4e' | |
let YELLOW = '#b59f3b' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks !!! <3