58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
import { useQueryClient } from 'react-query'
|
|
import { useFirestoreQueryData } from '@react-query-firebase/firestore'
|
|
import { useEffect, useState } from 'react'
|
|
import {
|
|
Bet,
|
|
getUserBets,
|
|
getUserBetsQuery,
|
|
listenForUserContractBets,
|
|
} from 'web/lib/firebase/bets'
|
|
import { MINUTE_MS, sleep } from 'common/util/time'
|
|
|
|
export const usePrefetchUserBets = (userId: string) => {
|
|
const queryClient = useQueryClient()
|
|
return queryClient.prefetchQuery(
|
|
['bets', userId],
|
|
() => sleep(1000).then(() => getUserBets(userId)),
|
|
{ staleTime: MINUTE_MS }
|
|
)
|
|
}
|
|
|
|
export const useUserBets = (userId: string) => {
|
|
const result = useFirestoreQueryData(
|
|
['bets', userId],
|
|
getUserBetsQuery(userId)
|
|
)
|
|
return result.data
|
|
}
|
|
|
|
export const useUserContractBets = (
|
|
userId: string | undefined,
|
|
contractId: string | undefined
|
|
) => {
|
|
const [bets, setBets] = useState<Bet[] | undefined>(undefined)
|
|
|
|
useEffect(() => {
|
|
if (userId && contractId)
|
|
return listenForUserContractBets(userId, contractId, setBets)
|
|
}, [userId, contractId])
|
|
|
|
return bets
|
|
}
|
|
|
|
export const useGetUserBetContractIds = (userId: string | undefined) => {
|
|
const [contractIds, setContractIds] = useState<string[] | undefined>()
|
|
|
|
useEffect(() => {
|
|
if (userId) {
|
|
const key = `user-bet-contractIds-${userId}`
|
|
const userBetContractJson = localStorage.getItem(key)
|
|
if (userBetContractJson) {
|
|
setContractIds(JSON.parse(userBetContractJson))
|
|
}
|
|
}
|
|
}, [userId])
|
|
|
|
return contractIds
|
|
}
|