disabled state to button

This commit is contained in:
Martin Berg Alstad 2023-07-14 19:38:41 +02:00
parent 049d5e4aee
commit 969f3fcbc8
2 changed files with 6 additions and 2 deletions

View File

@ -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>;
}; };

View File

@ -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;
}