shellphone.app/app/messages/hooks/use-conversation.ts
2021-07-31 22:33:18 +08:00

20 lines
384 B
TypeScript

import { useQuery } from "blitz"
import getConversationsQuery from "../queries/get-conversations"
export default function useConversation(recipient: string) {
return useQuery(
getConversationsQuery,
{},
{
select(conversations) {
if (!conversations[recipient]) {
throw new Error("Conversation not found")
}
return conversations[recipient]!
},
}
)
}