2 Commits

Author SHA1 Message Date
a79ebaf044 feat: Improved layout on mobile devices 2024-02-18 09:05:15 +01:00
c029ed416d fix: Fixed buzzwords nullable issue 2024-02-18 09:01:35 +01:00
5 changed files with 9 additions and 27 deletions

View File

@@ -14,9 +14,8 @@ function FisherYatesShuffle(array:string[]):string[]{
return array;
}
export default function BingoController({buzzwords, maxSize} : {buzzwords?: string[], maxSize?: number}){
if(maxSize == undefined) maxSize = 5;
const [size, setSize] = React.useState(maxSize!);
export default function BingoController({buzzwords} : {buzzwords?: string[]}){
const [size, setSize] = React.useState(5);
if(buzzwords == undefined || buzzwords.length < 1) buzzwords = ["Cloud", "Cyber-[Something]", "Distrupt[ive]", "AI", "Meta [Something]", "Gamification", "Web 2.0/3.0", "Industry 4.0", "Internet of Things", "Multiexperience", "Big Data", "Crypto", "[Something] as a service", "Emerging [Something]", "Streamline", "Ecosystem", "Leverage", "Outside the Box", "Pivot", "Strategic", "Agile", "Smart Tech", "Data Warehouse", "Actionable Insights", "Holistic Approach", "Digital Transformation", "Growth Hacking"];
const [items, setItems] = React.useState(buzzwords);
const sizeError = (items.length < size);
@@ -25,7 +24,7 @@ export default function BingoController({buzzwords, maxSize} : {buzzwords?: stri
<div className="w-full md:w-3/4 flex flex-col m-auto gap-4">
<Bingo size={size} items={items}/>
<form className="w-1/3 m-auto">
<input type="range" min={3} max={maxSize!} value={size} className="range range-xs sm:range-sm md:range-md range-secondary" step={1} onChange={({target:{value:s}}) => setSize(+s)}/>
<input type="range" min={3} max={5} value={size} className="range range-xs sm:range-sm md:range-md range-secondary" step={1} onChange={({target:{value:s}}) => setSize(+s)}/>
<div className="w-full flex justify-between text-sm px-2 mb-2">
<span>3x3</span>
<span>4x4</span>

View File

@@ -9,6 +9,10 @@ export default function BingoItem({text}: Props){
const [clicked, setClicked] = React.useState(false);
return(
<<<<<<< HEAD
<td><a className={clsx("btn btn-xs sm:btn-sm md:btn-md w-full", {"btn-ghost":(!clicked)}, {"btn-accent":clicked})} onClick={() => setClicked(!clicked)}>{text}</a></td>
=======
<td><a className={clsx("btn btn-xs w-full overflow-hidden", {"btn-ghost":(!clicked)}, {"btn-accent":clicked})} onClick={() => setClicked(!clicked)}>{text}</a></td>
>>>>>>> c0e15bc (feat: Improved layout on mobile devices)
);
}

View File

@@ -19,7 +19,6 @@ export default function ThemeSwitcher(){
<li><a onClick={() => setTheme("synthwave")}><DarkIcon/>Synthwave</a></li>
<li><a onClick={() => setTheme("coffee")}><DarkIcon/>Coffee</a></li>
<li><a onClick={() => setTheme("dim")}><DarkIcon/>Dim</a></li>
<li><a onClick={() => setTheme("dielinke")}>Die Linke</a></li>
</ul>
);
}

View File

@@ -1,8 +0,0 @@
import BingoController from '../components/bingocontroller'
export default function Home(){
const buzzwords = ["\"Ohne Frieden ist alles nichts\"", "Wahlordnung muss mehrfach erklärt werden", "Pizza ist da", "Stefan pöbelt", "Mareike pöbelt zurück", "Jemand überzieht die Redezeit", "Machentanz knallt die Tür zu", "GO-Antrag zur Pause", "GO-Antrag zum GO-Antrag", "Doppelte Für-/Gegenreden", "Rita Krüger redet zu Wagenknecht", "Ins Mikrofon schreien", "Karl-Marx-Zitate", "Rosa-Luxemburg-Zitate", "\"Es braucht die Linke\"", "\"In der Tradition von Rosa Luxemburg und Karl Liebknecht\"", "KW sagt \"Ruhe im Saal\""];
return(
<BingoController buzzwords={buzzwords} maxSize={4} />
);
}

View File

@@ -7,21 +7,9 @@ const config: Config = {
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
dielinke: {
"primary": "#ff0000",
"accent": "#6f003c",
"secondary": "#004b5b",
"neutral": "#6f003c",
"base-100": "#f8f8f8",
"--rounded-box": "0",
"--rounded-btn": "0.75rem"
}
},"light", "dark", "synthwave", "cyberpunk", "valentine", "pastel", "aqua", "coffee", "dim"
]
themes: ["light", "dark", "synthwave", "cyberpunk", "valentine", "pastel", "aqua", "coffee", "dim"]
}
};
export default config;