manifold/web/hooks/use-contract.ts

26 lines
696 B
TypeScript
Raw Normal View History

2021-12-09 22:05:55 +00:00
import { useEffect, useState } from 'react'
2022-04-06 17:32:57 +00:00
import { Contract, listenForContract } from '../lib/firebase/contracts'
2021-12-09 22:05:55 +00:00
export const useContract = (contractId: string) => {
2021-12-09 23:23:21 +00:00
const [contract, setContract] = useState<Contract | null | 'loading'>(
'loading'
)
2021-12-09 22:05:55 +00:00
2021-12-09 23:23:21 +00:00
useEffect(() => {
if (contractId) return listenForContract(contractId, setContract)
}, [contractId])
2021-12-09 22:05:55 +00:00
2021-12-09 23:23:21 +00:00
return contract
}
2022-04-06 17:32:57 +00:00
export const useContractWithPreload = (initial: Contract | null) => {
const [contract, setContract] = useState<Contract | null>(initial)
2022-04-06 17:32:57 +00:00
const contractId = initial?.id
useEffect(() => {
if (contractId) return listenForContract(contractId, setContract)
2022-04-06 17:32:57 +00:00
}, [contractId])
return contract
}