2022-08-28 23:03:00 +00:00
|
|
|
import { useFirestoreQueryData } from '@react-query-firebase/firestore'
|
2021-12-14 05:40:38 +00:00
|
|
|
import { useEffect, useState } from 'react'
|
2022-03-02 03:31:48 +00:00
|
|
|
import {
|
|
|
|
Bet,
|
2022-08-28 23:03:00 +00:00
|
|
|
getUserBetsQuery,
|
2022-03-02 03:31:48 +00:00
|
|
|
listenForUserContractBets,
|
2022-05-09 13:04:36 +00:00
|
|
|
} from 'web/lib/firebase/bets'
|
2021-12-14 05:40:38 +00:00
|
|
|
|
2022-08-28 23:03:00 +00:00
|
|
|
export const useUserBets = (userId: string) => {
|
|
|
|
const result = useFirestoreQueryData(
|
|
|
|
['bets', userId],
|
|
|
|
getUserBetsQuery(userId),
|
|
|
|
{ subscribe: true, includeMetadataChanges: true },
|
|
|
|
// Temporary workaround for react-query bug:
|
|
|
|
// https://github.com/invertase/react-query-firebase/issues/25
|
|
|
|
{ refetchOnMount: 'always' }
|
|
|
|
)
|
|
|
|
return result.data
|
2021-12-14 05:40:38 +00:00
|
|
|
}
|
2022-02-04 23:24:54 +00:00
|
|
|
|
2022-03-02 03:31:48 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2022-04-09 23:10:58 +00:00
|
|
|
export const useGetUserBetContractIds = (userId: string | undefined) => {
|
2022-04-20 21:59:34 +00:00
|
|
|
const [contractIds, setContractIds] = useState<string[] | undefined>()
|
2022-04-09 23:10:58 +00:00
|
|
|
|
|
|
|
useEffect(() => {
|
2022-04-20 21:59:34 +00:00
|
|
|
if (userId) {
|
|
|
|
const key = `user-bet-contractIds-${userId}`
|
|
|
|
const userBetContractJson = localStorage.getItem(key)
|
|
|
|
if (userBetContractJson) {
|
|
|
|
setContractIds(JSON.parse(userBetContractJson))
|
|
|
|
}
|
2022-04-09 23:10:58 +00:00
|
|
|
}
|
|
|
|
}, [userId])
|
|
|
|
|
|
|
|
return contractIds
|
|
|
|
}
|