Compare commits
No commits in common. "c007aec06ec38b05233fe7d4b831ed1c301cf408" and "262fa0636d332b3b292337317a3191e0ee8827c4" have entirely different histories.
c007aec06e
...
262fa0636d
@ -15,31 +15,19 @@ export default function Create() {
|
|||||||
|
|
||||||
const request = ctx.get_GameProposalRequest()
|
const request = ctx.get_GameProposalRequest()
|
||||||
|
|
||||||
ctx.setFetching(true)
|
|
||||||
|
|
||||||
postData("/api/gameproposal", request)
|
postData("/api/gameproposal", request)
|
||||||
.then((responce) => {
|
.then((responce) => {
|
||||||
console.log("responce", responce) // JSON data parsed by `data.json()` call
|
console.log("responce", responce) // JSON data parsed by `data.json()` call
|
||||||
ctx.clear_Message2Opponent()
|
ctx.clear_Message2Opponent()
|
||||||
ctx.setFetching(false)
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("ctx", ctx)
|
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
className={'game-action create'
|
className={'game-action create' + (ctx.isEnabled ? ' enabled' : ' disabled')}
|
||||||
+ (ctx.isEnabled ? ' enabled' : ' disabled')
|
|
||||||
+ (ctx.isFetching === true ? ' woble' : '')
|
|
||||||
}
|
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
>
|
>
|
||||||
<span>C</span>
|
Create
|
||||||
<span>r</span>
|
|
||||||
<span>e</span>
|
|
||||||
<span>a</span>
|
|
||||||
<span>t</span>
|
|
||||||
<span>e</span>
|
|
||||||
</button>
|
</button>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -76,11 +64,8 @@ function Definitions() {
|
|||||||
hasCurrentUser,
|
hasCurrentUser,
|
||||||
isEnabled,
|
isEnabled,
|
||||||
|
|
||||||
isFetching: ctx.newGame.isFetching,
|
|
||||||
setFetching: (status) => { console.log("setFetching: ", status); dispatchCtx({ update: "newGame", isFetching: status }) },
|
|
||||||
|
|
||||||
get_GameProposalRequest,
|
get_GameProposalRequest,
|
||||||
clear_Message2Opponent: () => { dispatchCtx({ update: "newGame", message: '' }) },
|
clear_Message2Opponent: () => { dispatchCtx({ update: "newGame", message: '' }) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
import './GameMessage.css'
|
import './GameMessage.css'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
|
||||||
// import { AppContext } from '../../context/app'
|
import { AppContext } from '../../context/app'
|
||||||
|
|
||||||
export default function GameMessage() {
|
export default function GameMessage() {
|
||||||
|
|
||||||
// const [ctx] = React.useContext(AppContext)
|
const [ctx] = React.useContext(AppContext)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='game-message'>
|
<div className='game-message'>
|
||||||
|
@ -8,14 +8,14 @@ import Proposal from './GameSelector/GameProposal';
|
|||||||
|
|
||||||
export default function GameSelector() {
|
export default function GameSelector() {
|
||||||
const [data] = React.useContext(AppData)
|
const [data] = React.useContext(AppData)
|
||||||
const [/*ctx*/, dispatchCtx] = React.useContext(AppContext)
|
const [ctx, dispatchCtx] = React.useContext(AppContext)
|
||||||
|
|
||||||
const { pathname } = useLocation();
|
const { pathname } = useLocation();
|
||||||
const isProposalPath = matchPath("/game/proposal/*", pathname);
|
const isProposalPath = matchPath("/game/proposal/*", pathname);
|
||||||
const isActivelPath = matchPath("/game/active/*", pathname);
|
const isActivelPath = matchPath("/game/active/*", pathname);
|
||||||
const isArchivePath = matchPath("/game/archive/*", pathname);
|
const isArchivePath = matchPath("/game/archive/*", pathname);
|
||||||
|
|
||||||
// console.log("GameSelector appCtx", ctx)
|
console.log("GameSelector appCtx", ctx)
|
||||||
|
|
||||||
const onClick_proposal = (selectedGame) => {
|
const onClick_proposal = (selectedGame) => {
|
||||||
dispatchCtx({ component: "game-selector", selectedGameProposal: selectedGame })
|
dispatchCtx({ component: "game-selector", selectedGameProposal: selectedGame })
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import './Header.css';
|
import './index.css';
|
||||||
import './woble.css'
|
import './wave.css'
|
||||||
import React from "react"
|
import React from "react"
|
||||||
import { NavLink } from "react-router-dom";
|
import { NavLink } from "react-router-dom";
|
||||||
import OnlineToggle from './OnlineTgl';
|
import OnlineToggle from '../OnlineTgl';
|
||||||
import { AppData } from "../context/data"
|
import { AppData } from "../../context/data"
|
||||||
|
|
||||||
export default function Header() {
|
export default function Header() {
|
||||||
const [data] = React.useContext(AppData)
|
const [data] = React.useContext(AppData)
|
@ -2,6 +2,16 @@
|
|||||||
|
|
||||||
.woble {
|
.woble {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
cursor: pointer;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
/* text-transform: uppercase; */
|
||||||
|
/* font-size: 1.5rem; */
|
||||||
|
/* padding: 1rem 2rem; */
|
||||||
|
/* background-color: black; */
|
||||||
|
/* color: white; */
|
||||||
|
/* border-radius: 100px; */
|
||||||
|
/* gap: 1rem; */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* .wave > span {
|
/* .wave > span {
|
@ -25,7 +25,6 @@ export const initialState = {
|
|||||||
whitePlayer: '',
|
whitePlayer: '',
|
||||||
blackPlayer: '',
|
blackPlayer: '',
|
||||||
message: '',
|
message: '',
|
||||||
isFetching: false,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user