shellphone.app/app/messages/hooks/use-conversation.ts

20 lines
389 B
TypeScript
Raw Normal View History

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