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

21 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) {
2021-09-24 23:12:16 +00:00
if (!conversations?.[recipient]) {
return null;
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-08-01 12:04:04 +00:00
},
);
2021-07-31 14:33:18 +00:00
}