1
0

Created the Calculate.jsx game state

This commit is contained in:
Mathias Wagner 2023-11-18 23:39:56 +01:00
parent 7aa204e242
commit b53dd16054
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,103 @@
import "./styles.sass";
import {GroupContext} from "@/common/contexts/GroupContext.jsx";
import {useContext, useEffect, useState} from "react";
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
import {faShoppingCart} from "@fortawesome/free-solid-svg-icons";
const localeOptions = {
style: "decimal",
minimumFractionDigits: 2,
maximumFractionDigits: 2,
signDisplay: "never"
}
export const Calculate = ({setState}) => {
const {round, getGroupById, updateCapital, endRound} = useContext(GroupContext);
const [animatedGroups, setAnimatedGroups] = useState([]);
const [nachfrage, setNachfrage] = useState(0);
const animateNext = () => {
const current = round.shift();
if (!current) return;
let sold = current.amount < nachfrage ? current.amount : nachfrage;
setNachfrage(nachfrage => nachfrage - sold);
let profit = sold * current.price - (current.amount * 1000 + 4000);
setAnimatedGroups(old => [...old, {...current, profit, name: getGroupById(current.id).name}]);
console.log(current.id, getGroupById(current.id).capital, profit);
updateCapital(current.id, getGroupById(current.id).capital + profit);
}
useEffect(() => {
if (round.length === 0) {
endRound();
setTimeout(() => setState("waiting"), 8000);
return;
}
const timeout = setTimeout(() => {
animateNext();
}, 3000);
return () => clearTimeout(timeout);
}, [animatedGroups]);
useEffect(() => {
let avg = 0;
round.forEach(r => avg += r.amount);
avg /= round.length;
setNachfrage(avg < 1800 ? 50 : avg > 2200 ? 30 : 40);
setAnimatedGroups([]);
}, []);
return (
<div className="calculate-state">
<div className="calculate-container">
{animatedGroups.length === 0 && <h2 className="hint">Die Kuchen werden verkauft...</h2>}
{animatedGroups.map((r, i) => {
return (
<div key={i} className="glassy round">
<div className="round-item">
<p>Unternehmen</p>
<h2>{r.name}</h2>
</div>
<div className="round-item">
<p>Absatzpreis</p>
<h2>{r.price?.toLocaleString("de-DE", localeOptions)} </h2>
</div>
<div className="round-item">
<p>Menge</p>
<h2>{r.amount} Kisten</h2>
</div>
<div className="round-item">
<p>Gewinn/Verlust</p>
{r.profit > 0 && <h2 className="round-green">+ {r.profit?.toLocaleString("de-DE", localeOptions)} </h2>}
{r.profit < 0 && <h2 className="round-red">- {r.profit?.toLocaleString("de-DE", localeOptions)} </h2>}
{r.profit === 0 && <h2>0 </h2>}
</div>
</div>
)
})}
</div>
<div className="glassy customer" style={{marginTop: (6.2 * animatedGroups.length) + "rem"}}>
<FontAwesomeIcon icon={faShoppingCart} />
<div className="customer-item">
<p>Nachfrage</p>
<h2 className="round-green">{nachfrage}</h2>
</div>
</div>
</div>
);
}