disabled state to button
This commit is contained in:
parent
049d5e4aee
commit
969f3fcbc8
@ -15,12 +15,12 @@ const GameButton: Component<GameButtonProps> = (
|
|||||||
}) => {
|
}) => {
|
||||||
const currentPlayer = useAtomValue(currentPlayerAtom);
|
const currentPlayer = useAtomValue(currentPlayerAtom);
|
||||||
const thisPlayer = useAtomValue(thisPlayerAtom);
|
const thisPlayer = useAtomValue(thisPlayerAtom);
|
||||||
|
|
||||||
if (currentPlayer === undefined || currentPlayer.State === State.waitingForPlayers) {
|
if (currentPlayer === undefined || currentPlayer.State === State.waitingForPlayers) {
|
||||||
return <button onClick={onReadyClick}>Ready</button>;
|
return <button onClick={onReadyClick}>Ready</button>;
|
||||||
}
|
}
|
||||||
if (!thisPlayer?.isTurn()) {
|
if (!thisPlayer?.isTurn()) {
|
||||||
return <button>Please wait</button>;
|
return <button disabled>Please wait</button>;
|
||||||
}
|
}
|
||||||
return <button onClick={onRollDiceClick}>Roll dice</button>;
|
return <button onClick={onRollDiceClick}>Roll dice</button>;
|
||||||
};
|
};
|
||||||
|
@ -26,3 +26,7 @@ br {
|
|||||||
button, button[type=submit], input[type=button], input[type=submit] {
|
button, button[type=submit], input[type=button], input[type=submit] {
|
||||||
@apply bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded;
|
@apply bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button[disabled] {
|
||||||
|
@apply bg-gray-500;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user