Téléchargmeent des mises à jour de solde

This commit is contained in:
Emmy D'Anello 2024-12-13 23:07:37 +01:00
parent 4a33963c12
commit 02304527d3
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
7 changed files with 82 additions and 4 deletions

View File

@ -1,6 +1,9 @@
import { useMoneyUpdates } from '@/hooks/useMoneyUpdates'
import { Surface, Text } from 'react-native-paper' import { Surface, Text } from 'react-native-paper'
export default function HistoryScreen() { export default function HistoryScreen() {
const moneyUpdates = useMoneyUpdates()
return ( return (
<Surface> <Surface>
<Text>Ici on aura la gestion de l'historique des trains empruntés et des challenges effectués</Text> <Text>Ici on aura la gestion de l'historique des trains empruntés et des challenges effectués</Text>

View File

@ -2,6 +2,7 @@ import { useAuth } from '@/hooks/useAuth'
import { useChallengeActions, useDownloadChallengeActions } from '@/hooks/useChallengeActions' import { useChallengeActions, useDownloadChallengeActions } from '@/hooks/useChallengeActions'
import { useDownloadChallenges } from '@/hooks/useChallenges' import { useDownloadChallenges } from '@/hooks/useChallenges'
import { useGame, useUpdateActiveChallengeId, useUpdateGameState, useUpdateMoney, useUpdatePenalty } from '@/hooks/useGame' import { useGame, useUpdateActiveChallengeId, useUpdateGameState, useUpdateMoney, useUpdatePenalty } from '@/hooks/useGame'
import { useDownloadMoneyUpdates } from '@/hooks/useMoneyUpdates'
import { useDownloadTrains } from '@/hooks/useTrain' import { useDownloadTrains } from '@/hooks/useTrain'
import { isAuthValid } from '@/utils/features/auth/authSlice' import { isAuthValid } from '@/utils/features/auth/authSlice'
import { ChallengeAction, ChallengeActionPayload } from '@/utils/features/challengeActions/challengeActionsSlice' import { ChallengeAction, ChallengeActionPayload } from '@/utils/features/challengeActions/challengeActionsSlice'
@ -20,6 +21,7 @@ export default function GameProvider({ children }: { children: ReactNode }) {
const downloadTrains = useDownloadTrains() const downloadTrains = useDownloadTrains()
const downloadChallenges = useDownloadChallenges() const downloadChallenges = useDownloadChallenges()
const downloadChallengeActions = useDownloadChallengeActions() const downloadChallengeActions = useDownloadChallengeActions()
const downloadMoneyUpdates = useDownloadMoneyUpdates()
const gameQuery = useQuery({ const gameQuery = useQuery({
queryKey: ['get-game', auth.token], queryKey: ['get-game', auth.token],
@ -63,11 +65,11 @@ export default function GameProvider({ children }: { children: ReactNode }) {
}, [trainsQuery.status, trainsQuery.dataUpdatedAt]) }, [trainsQuery.status, trainsQuery.dataUpdatedAt])
const challengesQuery = useQuery({ const challengesQuery = useQuery({
queryKey: ['get-challenges', game.playerId, auth.token], queryKey: ['get-challenges', auth.token],
queryFn: () => fetch(`${process.env.EXPO_PUBLIC_TRAINTRAPE_MOI_SERVER}/challenges/?size=10000`, { queryFn: () => fetch(`${process.env.EXPO_PUBLIC_TRAINTRAPE_MOI_SERVER}/challenges/?size=10000`, {
headers: { "Authorization": `Bearer ${auth.token}` }} headers: { "Authorization": `Bearer ${auth.token}` }}
).then(resp => resp.json()), ).then(resp => resp.json()),
enabled: isAuthValid(auth) && !!game.playerId, enabled: isAuthValid(auth),
refetchInterval: 5000, refetchInterval: 5000,
}) })
useEffect(() => { useEffect(() => {
@ -79,6 +81,19 @@ export default function GameProvider({ children }: { children: ReactNode }) {
} }
}, [challengesQuery.status, challengesQuery.dataUpdatedAt]) }, [challengesQuery.status, challengesQuery.dataUpdatedAt])
const moneyUpdatesQuery = useQuery({
queryKey: ['get-money-updates', game.playerId, auth.token],
queryFn: () => fetch(`${process.env.EXPO_PUBLIC_TRAINTRAPE_MOI_SERVER}/money-updates/?playerId=${game.playerId}&size=10000`, {
headers: { "Authorization": `Bearer ${auth.token}` }}
).then(resp => resp.json()),
enabled: isAuthValid(auth) && !!game.playerId,
refetchInterval: 5000,
})
useEffect(() => {
if (moneyUpdatesQuery.isSuccess && moneyUpdatesQuery.data)
downloadMoneyUpdates(moneyUpdatesQuery.data)
}, [moneyUpdatesQuery.status, moneyUpdatesQuery.dataUpdatedAt])
useEffect(() => { useEffect(() => {
const now = new Date().getTime() const now = new Date().getTime()
const activeChallenge: ChallengeAction | undefined = challengeActions.challengeActions const activeChallenge: ChallengeAction | undefined = challengeActions.challengeActions

View File

@ -5,6 +5,7 @@ import { useGeolocationMutation } from '@/hooks/mutations/useGeolocationMutation
import { useStartGeolocationServiceEffect } from '@/utils/geolocation' import { useStartGeolocationServiceEffect } from '@/utils/geolocation'
import { Platform } from 'react-native' import { Platform } from 'react-native'
import { useQuery } from '@tanstack/react-query' import { useQuery } from '@tanstack/react-query'
import { isAuthValid } from '@/utils/features/auth/authSlice'
export default function GeolocationProvider({ children }: { children: ReactNode }) { export default function GeolocationProvider({ children }: { children: ReactNode }) {
useStartGeolocationServiceEffect() useStartGeolocationServiceEffect()
@ -36,8 +37,9 @@ export default function GeolocationProvider({ children }: { children: ReactNode
headers: { headers: {
"Authorization": `Bearer ${auth.token}`, "Authorization": `Bearer ${auth.token}`,
"Content-Type": "application/json", "Content-Type": "application/json",
}} },
).then(resp => resp.json()), }).then(resp => resp.json()),
enabled: isAuthValid(auth),
refetchInterval: 5000, refetchInterval: 5000,
}) })
useEffect(() => { useEffect(() => {

View File

@ -40,6 +40,11 @@ export const useGeolocationMutation = ({ auth, onPostSuccess, onError }: PostPro
}, },
networkMode: 'offlineFirst', networkMode: 'offlineFirst',
onSuccess: async (data, location: LocationObject, context: unknown) => { onSuccess: async (data, location: LocationObject, context: unknown) => {
if (data.statusCode) {
if (onError)
onError({ response: data })
return
}
if (onPostSuccess) if (onPostSuccess)
onPostSuccess(data, location, context) onPostSuccess(data, location, context)
}, },

View File

@ -0,0 +1,8 @@
import { useAppDispatch, useAppSelector } from "./useStore"
import { downloadMoneyUpdates, MoneyUpdatesPayload } from "@/utils/features/moneyUpdates/moneyUpdatesSlice"
export const useMoneyUpdates = () => useAppSelector((state) => state.moneyUpdates.moneyUpdates)
export const useDownloadMoneyUpdates = () => {
const dispath = useAppDispatch()
return (moneyUpdatesData: MoneyUpdatesPayload) => dispath(downloadMoneyUpdates(moneyUpdatesData))
}

View File

@ -0,0 +1,43 @@
import { createSlice, PayloadAction } from '@reduxjs/toolkit'
import { PaginationMeta } from '../common'
export interface MoneyUpdate {
id: number
playerId: number
reason: 'START' | 'NEW_RUN' | 'BUY_TRAIN' | 'WIN_CHALLENGE'
timestamp: number
runId: number | null
actionId: number | null
tripId: number | null
}
export interface MoneyUpdatesState {
moneyUpdates: MoneyUpdate[]
}
const initialState: MoneyUpdatesState = {
moneyUpdates: []
}
export interface MoneyUpdatesPayload {
data: MoneyUpdate[]
meta: PaginationMeta
}
export const moneyUpdatesSlice = createSlice({
name: 'moneyUpdates',
initialState: initialState,
reducers: {
downloadMoneyUpdates(state, action: PayloadAction<MoneyUpdatesPayload>) {
state.moneyUpdates = state.moneyUpdates.filter(moneyUpdate => action.payload.data.filter(dlMU => dlMU.id === moneyUpdate.id) === null)
for (const dlMU of action.payload.data) {
state.moneyUpdates.push(dlMU)
}
state.moneyUpdates.sort((mu1, mu2) => mu2.id - mu1.id)
},
},
})
export const { downloadMoneyUpdates } = moneyUpdatesSlice.actions
export default moneyUpdatesSlice.reducer

View File

@ -4,6 +4,7 @@ import challengesReducer from './features/challenges/challengesSlice'
import challengeActionsReducer from './features/challengeActions/challengeActionsSlice' import challengeActionsReducer from './features/challengeActions/challengeActionsSlice'
import gameReducer from './features/game/gameSlice' import gameReducer from './features/game/gameSlice'
import locationReducer from './features/location/locationSlice' import locationReducer from './features/location/locationSlice'
import moneyUpdatesReducer from './features/moneyUpdates/moneyUpdatesSlice'
import trainReducer from './features/train/trainSlice' import trainReducer from './features/train/trainSlice'
const store = configureStore({ const store = configureStore({
@ -13,6 +14,7 @@ const store = configureStore({
challengeActions: challengeActionsReducer, challengeActions: challengeActionsReducer,
game: gameReducer, game: gameReducer,
location: locationReducer, location: locationReducer,
moneyUpdates: moneyUpdatesReducer,
train: trainReducer, train: trainReducer,
}, },
}) })