blob: 94946adaa666ad1d879dc654c4da56389fff56ae [file] [log] [blame]
simon26e79f72022-10-05 22:16:08 -04001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
simond47ef9e2022-09-28 22:24:28 -040018import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
Misha Krieger-Raynauldcfa44302022-11-30 18:36:36 -050019import { IConversation, Message } from 'jami-web-common';
simone35acc22022-12-02 16:51:12 -050020import { useMemo } from 'react';
idillon08f77172022-09-13 19:14:17 -040021
simon5da8ca62022-11-09 15:21:25 -050022import { useAuthContext } from '../contexts/AuthProvider';
simone35acc22022-12-02 16:51:12 -050023import { Conversation } from '../models/conversation';
simon5da8ca62022-11-09 15:21:25 -050024
simone35acc22022-12-02 16:51:12 -050025export const useConversationQuery = (conversationId?: string) => {
simon94fe53e2022-11-10 12:51:58 -050026 const { axiosInstance } = useAuthContext();
simone35acc22022-12-02 16:51:12 -050027 const conversationQuery = useQuery(
simon94fe53e2022-11-10 12:51:58 -050028 ['conversation', conversationId],
29 async () => {
Misha Krieger-Raynauldcfa44302022-11-30 18:36:36 -050030 const { data } = await axiosInstance.get<IConversation>(`/conversations/${conversationId}`);
simon94fe53e2022-11-10 12:51:58 -050031 return data;
32 },
33 {
34 enabled: !!conversationId,
35 }
36 );
simone35acc22022-12-02 16:51:12 -050037
38 const conversation = useMemo(() => {
39 if (conversationQuery.isSuccess) {
40 return Conversation.fromInterface(conversationQuery.data);
41 }
42 }, [conversationQuery.isSuccess, conversationQuery.data]);
43
44 return {
45 conversation,
46 ...conversationQuery,
47 };
simond47ef9e2022-09-28 22:24:28 -040048};
idillon08f77172022-09-13 19:14:17 -040049
simon5da8ca62022-11-09 15:21:25 -050050export const useMessagesQuery = (conversationId: string) => {
simon94fe53e2022-11-10 12:51:58 -050051 const { axiosInstance } = useAuthContext();
52 return useQuery(
53 ['messages', conversationId],
54 async () => {
Misha Krieger-Raynauldcfa44302022-11-30 18:36:36 -050055 const { data } = await axiosInstance.get<Message[]>(`/conversations/${conversationId}/messages`);
simon94fe53e2022-11-10 12:51:58 -050056 return data;
57 },
58 {
59 enabled: !!conversationId,
60 }
61 );
simond47ef9e2022-09-28 22:24:28 -040062};
idillon08f77172022-09-13 19:14:17 -040063
simon5da8ca62022-11-09 15:21:25 -050064export const useSendMessageMutation = (conversationId: string) => {
simon94fe53e2022-11-10 12:51:58 -050065 const { axiosInstance } = useAuthContext();
simond47ef9e2022-09-28 22:24:28 -040066 const queryClient = useQueryClient();
67 return useMutation(
simon94fe53e2022-11-10 12:51:58 -050068 (message: string) => axiosInstance.post(`/conversations/${conversationId}/messages`, { message }),
simond47ef9e2022-09-28 22:24:28 -040069 {
simon5da8ca62022-11-09 15:21:25 -050070 onSuccess: () => queryClient.invalidateQueries(['messages', conversationId]),
simond47ef9e2022-09-28 22:24:28 -040071 }
72 );
73};