Added bingo controls

This commit is contained in:
datalore 2023-11-03 15:21:59 +01:00
parent f871f11fd2
commit 9ccccc1941
2 changed files with 12 additions and 2 deletions

View File

@ -12,7 +12,7 @@ export default function Bingo({size, items}: Props){
rows[i] = items.slice(i * size, (i + 1) * size);
}
return(
<table className='table bg-primary text-primary-content m-auto'>
<table className='w-1/2 table bg-primary text-primary-content m-auto'>
<tbody>
{rows.map((item, index) => <BingoRow key={index} items={item}/>)}
</tbody>

View File

@ -5,12 +5,22 @@ import Bingo from './bingo.tsx'
export default function BingoController(){
const [size, setSize] = React.useState(5);
const [items, setItems] = React.useState(["Cloud", "Cyber", "Distruptive Technology", "AI", "Metaverse", "Gamification", "Web 2.0/3.0", "Industry 4.0", "Internet of Things", "Multiexperience", "Big Data", "Crypto", "[Insert bullshit here] as a service", "Emerging Market", "Streamline"]);
const buzzwords = ["Cloud", "Cyber", "Distruptive Technology", "AI", "Metaverse", "Gamification", "Web 2.0/3.0", "Industry 4.0", "Internet of Things", "Multiexperience", "Big Data", "Crypto", "[Insert bullshit here] as a service", "Emerging Market", "Streamline"];
const [items, setItems] = React.useState(buzzwords);
const sizeError = ((items.length % size) != 0);
return(
<>
<div className="w-3/4 flex flex-row m-auto">
<Bingo size={size} items={items}/>
<form className="w-1/3">
<input type="range" min={3} max={5} value={size} className="range range-primary" step={1} onChange={({target:{value:s}}) => setSize(s)}/>
<div className="w-full flex justify-between text-xs px-2">
<span>3x3</span>
<span>4x4</span>
<span>5x5</span>
</div>
<a className="btn btn-primary">Regenerate</a>
</form>
</div>
{sizeError && <div className="alert alert-warning"><svg xmlns="http://www.w3.org/2000/svg" class="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" /></svg><span>Warning: Mismatch between item count and size</span></div>}
</>