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

21 lines
416 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-08-01 07:40:18 +00:00
keepPreviousData: true,
2021-07-31 14:33:18 +00:00
}
);
2021-07-31 14:33:18 +00:00
}