Compare commits

...

2 Commits

Author SHA1 Message Date
b6994554b3 front: GameHeader as one line of elemnts 2023-10-27 13:41:56 +02:00
74c396bea7 front: GameComponent refactoring 2023-10-27 12:51:32 +02:00
9 changed files with 82 additions and 127 deletions

View File

@ -12,7 +12,6 @@ function App() {
return <div className="App">
<BrowserRouter>
<Header />
<div className="Container">
<Routes>
{/* https://stackoverflow.com/questions/40541994/multiple-path-names-for-a-same-component-in-react-router */}
<Route path="/game" element={<Game />} />
@ -24,7 +23,6 @@ function App() {
<Route path="/leaderboard" element={<Leaderboard />} />
<Route path="/about" element={<About />} />
</Routes>
</div>
</BrowserRouter>
</div>
}

View File

@ -1,9 +1,9 @@
.split {
.game {
width: 100%;
float: left;
}
.split .left {
.game .left-side {
float: left;
width: 45%;
/* max-width: 400px; */
@ -15,7 +15,7 @@
align-items: center;
}
.split .right {
.game .right-side {
float: left;
width: 55%;
}

View File

@ -0,0 +1,25 @@
import './Game.css';
import React from 'react';
import GameView from './Game/GameView'
import GameSelector from './Game/GameSelector'
import GameAction from './Game/GameAction'
import GameBoard from './Game/GameBoard'
import NewGame from './Game/NewGame';
export default function Game() {
return (
<div className="game">
<div className='left-side'>
<GameView />
<GameSelector />
<NewGame />
</div>
<div className='right-side'>
<GameAction />
<GameBoard />
</div>
</div>
)
}

View File

@ -1,19 +0,0 @@
import React from 'react';
export function Accept({uuid}) {
return <button className="action" id={uuid} type="submit">
Accept
</button>
}
// export function Reject({uuid}) {
// return <button className="action" id={uuid} type="submit" >
// Reject
// </button>
// }
export function Cancel({uuid}) {
return <button className="action" id={uuid} type="submit">
Cancel
</button>
}

View File

@ -1,24 +0,0 @@
import React, {useState} from 'react';
export default function Cancel({uuid}) {
const [pending, setPending] = useState(new Map())
for (const [key, value] of pending)
console.log("cancel", key, value);
function sendRequest(uuid2reject) {
const nextPending = new Map(pending)
nextPending.set(uuid2reject, null)
setPending(nextPending)
}
const status = pending.get(uuid)
const isPending = status !== undefined
return <button
className={isPending ? "visible" : "action"}
onClick={() => sendRequest(uuid) }>
Cancel
</button>
}

View File

@ -1,25 +0,0 @@
import './index.css';
import React from 'react';
import GameView from './GameView'
import GameSelector from './GameSelector'
import GameAction from './GameAction'
import GameBoard from './GameBoard'
import NewGame from './NewGame';
export default function Game() {
return (
<div className="split">
<div className='split left'>
<GameView />
<GameSelector />
<NewGame />
</div>
<div className='split right'>
<GameAction />
<GameBoard />
</div>
</div>
)
}

View File

@ -1,19 +1,19 @@
h1 {
display: inline-flex;
}
.OnlineTgl {
transform: scale(.25, .25);
width: 1px;
height: 1px;
transform: scale(.5);
margin-left: -19px;
}
.app-header {
padding: auto;
display: flex;
}
.app-header nav {
align-items: center;
justify-content: center;
display: flex;
flex-wrap: wrap;
padding-top: 10px;
}
.app-header a {

View File

@ -8,11 +8,22 @@ import { AppData } from "../../context/data"
export default function Header() {
const [data] = React.useContext(AppData)
return <div>
return (
<div className='app-header'>
<h1 >
CordaCheckers<OnlineToggle />
CordaCheckers
</h1>
<nav className='app-header'>
<OnlineToggle />
<nav>
<NavLink to="/about" className={""}>
About
</NavLink>
<NavLink to="/game" className={data.gamesFetching && "woble"}>
<span>G</span>
<span>a</span>
<span>m</span>
<span>e</span>
</NavLink>
<NavLink to="/leaderboard" className={data.leaderboardFetching && "woble"}>
<span>L</span>
<span>e</span>
@ -26,17 +37,7 @@ export default function Header() {
<span>r</span>
<span>d</span>
</NavLink>
<NavLink to="/game" className={data.gamesFetching && "woble"}>
<span>G</span>
<span>a</span>
<span>m</span>
<span>e</span>
</NavLink>
<NavLink to="/about" className={""}>
About
</NavLink>
</nav>
</div>
)
}

View File

@ -1,4 +1,3 @@
.tgl {
display: none;