21 lines
865 B
TypeScript
21 lines
865 B
TypeScript
import { useAppDispatch, useAppSelector } from "./useStore"
|
|
import { GamePayload, setPlayerId, updateActiveChallengeId, updateGameState, updateMoney } from "@/utils/features/game/gameSlice"
|
|
|
|
export const useGame = () => useAppSelector((state) => state.game)
|
|
export const useSetPlayerId = () => {
|
|
const dispath = useAppDispatch()
|
|
return (playerId: number) => dispath(setPlayerId(playerId))
|
|
}
|
|
export const useUpdateMoney = () => {
|
|
const dispatch = useAppDispatch()
|
|
return (money: number) => dispatch(updateMoney(money))
|
|
}
|
|
export const useUpdateActiveChallengeId = () => {
|
|
const dispatch = useAppDispatch()
|
|
return (challengeActionId: number) => dispatch(updateActiveChallengeId(challengeActionId))
|
|
}
|
|
export const useUpdateGameState = () => {
|
|
const dispatch = useAppDispatch()
|
|
return (game: GamePayload) => dispatch(updateGameState(game))
|
|
}
|