mancala/src/components/HeaderBar.tsx

90 lines
3.0 KiB
TypeScript
Raw Normal View History

2022-07-13 22:39:01 +03:00
import * as React from "react";
import { FunctionComponent } from "react";
import { Menu, MenuItem } from "@szhsin/react-menu";
import { MancalaGame } from "mancala.js";
2022-07-14 13:38:00 +03:00
import { Context } from "../context/context";
2022-07-13 22:39:01 +03:00
import { getColorByBrightness } from "../util/ColorUtil";
import Button from "./Button";
import "@szhsin/react-menu/dist/index.css";
import "@szhsin/react-menu/dist/transitions/slide.css";
2022-07-15 17:45:48 +03:00
import HeaderbarIcon from "./headerbar/HeaderbarIcon";
import HeaderbarTitle from "./headerbar/HeaderbarTitle";
import Row from "./Row";
import ThemeSwitchMenu from "./headerbar/ThemeSwitchMenu";
2022-07-13 22:39:01 +03:00
2022-07-14 13:23:15 +03:00
function renderNewGameButton(
2022-07-14 22:59:48 +03:00
context: Context,
game: MancalaGame | undefined,
2022-07-14 13:23:15 +03:00
onNewGameClick: () => void,
userKeyWhoLeave: string | undefined,
crashMessage: string | undefined): JSX.Element {
2022-07-13 22:39:01 +03:00
const newGame = (
<Button
context={context}
text={context.texts.NewGame}
2022-07-13 22:45:06 +03:00
color={context.themeManager.theme.pitColor}
2022-07-13 22:39:01 +03:00
onClick={onNewGameClick}
/>
);
if (userKeyWhoLeave) {
return newGame;
}
if (crashMessage) {
return newGame;
}
if (!game) {
return newGame;
} else if (game.state == "ended") {
return newGame;
}
return <></>;
};
const HeaderBar: FunctionComponent<{
context: Context,
2022-07-14 13:23:15 +03:00
game?: MancalaGame,
userKeyWhoLeave?: string,
crashMessage?: string,
2022-07-13 22:39:01 +03:00
onNewGameClick: () => void,
onLeaveGameClick: () => void
}> = (props) => {
const { context, game, userKeyWhoLeave, crashMessage, onNewGameClick, onLeaveGameClick } = props;
const textColor = getColorByBrightness(
context.themeManager.theme.appBarBgColor,
context.themeManager.theme.textColor,
context.themeManager.theme.textLightColor
);
return (
2022-07-14 22:59:48 +03:00
<div style={{ background: context.themeManager.theme.appBarBgColor }} className="header-bar">
2022-07-15 17:45:48 +03:00
<Row>
<HeaderbarIcon />
<HeaderbarTitle title={context.texts.Mancala} color={textColor} />
</Row>
<Row>
2022-07-14 22:59:48 +03:00
<ThemeSwitchMenu context={context} textColor={textColor} />
2022-07-13 22:39:01 +03:00
{renderNewGameButton(context, game, onNewGameClick, userKeyWhoLeave, crashMessage)}
{game &&
!userKeyWhoLeave &&
!crashMessage &&
(game?.state === "playing" || game?.state === "initial") && (
<Button
context={context}
2022-07-13 22:45:06 +03:00
color={context.themeManager.theme.pitColor}
2022-07-13 22:39:01 +03:00
text={context.texts.Leave}
onClick={onLeaveGameClick} />
)}
2022-07-15 17:45:48 +03:00
</Row>
2022-07-14 22:59:48 +03:00
<style jsx>{`
.header-bar {
padding: 0px 4vw;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
align-self: stretch;
}
2022-07-15 17:45:48 +03:00
`}</style>
2022-07-13 22:39:01 +03:00
</div>)
}
export default HeaderBar;