manifold/web/hooks/use-contract.ts

38 lines
924 B
TypeScript
Raw Normal View History

2021-12-09 22:05:55 +00:00
import { useEffect, useState } from 'react'
2021-12-17 23:16:42 +00:00
import {
Contract,
getContractFromSlug,
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
}
export const useContractWithPreload = (
2021-12-17 23:16:42 +00:00
slug: string,
initial: Contract | null
) => {
const [contract, setContract] = useState<Contract | null>(initial)
2021-12-17 23:16:42 +00:00
const [contractId, setContractId] = useState<string | undefined | null>(
initial?.id
)
useEffect(() => {
if (contractId) return listenForContract(contractId, setContract)
2021-12-17 23:16:42 +00:00
if (contractId !== null && slug)
2021-12-17 23:16:42 +00:00
getContractFromSlug(slug).then((c) => setContractId(c?.id || null))
}, [contractId, slug])
return contract
}