Correction vidange de la file de géolocalisations à transmettre
This commit is contained in:
parent
986649a070
commit
1fbd8ee5c3
@ -1,4 +1,4 @@
|
||||
import { ReactNode, useEffect } from 'react'
|
||||
import { ReactNode, useEffect, useState } from 'react'
|
||||
import { useAuth } from '@/hooks/useAuth'
|
||||
import { useQueuedLocations, useSetLastPlayerLocations, useUnqueueLocation } from '@/hooks/useLocation'
|
||||
import { useGeolocationMutation } from '@/hooks/mutations/useGeolocationMutation'
|
||||
@ -16,8 +16,8 @@ export default function GeolocationProvider({ children }: { children: ReactNode
|
||||
const setLastPlayerLocations = useSetLastPlayerLocations()
|
||||
const geolocationMutation = useGeolocationMutation({
|
||||
auth,
|
||||
onPostSuccess: (data) => unqueueLocation(data),
|
||||
onError: ({ response, error }) => { console.error(response, error) }
|
||||
onPostSuccess: (data, variables) => unqueueLocation(variables),
|
||||
onError: ({ response, error }) => console.error(response, error),
|
||||
})
|
||||
|
||||
if (Platform.OS !== "web") {
|
||||
|
@ -44,8 +44,8 @@ export const locationSlice = createSlice({
|
||||
const sentLoc = action.payload
|
||||
state.queuedLocations = state.queuedLocations
|
||||
.filter(loc => new Date(loc.timestamp).getTime() !== sentLoc.timestamp
|
||||
|| loc.coords.latitude !== sentLoc.coords.latitude
|
||||
|| loc.coords.longitude !== sentLoc.coords.latitude)
|
||||
&& loc.coords.latitude !== sentLoc.coords.latitude
|
||||
&& loc.coords.longitude !== sentLoc.coords.longitude)
|
||||
},
|
||||
setLastPlayerLocations: (state, action: PayloadAction<PlayerLocation[]>) => {
|
||||
state.lastPlayerLocations = action.payload
|
||||
|
Loading…
Reference in New Issue
Block a user