blob: 44c0aae2146110ecd77818e3d2f088ebf8f7d6da [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';
idillon08f77172022-09-13 19:14:17 -040020
simon5da8ca62022-11-09 15:21:25 -050021import { useAuthContext } from '../contexts/AuthProvider';
simon5da8ca62022-11-09 15:21:25 -050022
23export const useConversationQuery = (conversationId: string) => {
simon94fe53e2022-11-10 12:51:58 -050024 const { axiosInstance } = useAuthContext();
25 return useQuery(
26 ['conversation', conversationId],
27 async () => {
Misha Krieger-Raynauldcfa44302022-11-30 18:36:36 -050028 const { data } = await axiosInstance.get<IConversation>(`/conversations/${conversationId}`);
simon94fe53e2022-11-10 12:51:58 -050029 return data;
30 },
31 {
32 enabled: !!conversationId,
33 }
34 );
simond47ef9e2022-09-28 22:24:28 -040035};
idillon08f77172022-09-13 19:14:17 -040036
simon5da8ca62022-11-09 15:21:25 -050037export const useMessagesQuery = (conversationId: string) => {
simon94fe53e2022-11-10 12:51:58 -050038 const { axiosInstance } = useAuthContext();
39 return useQuery(
40 ['messages', conversationId],
41 async () => {
Misha Krieger-Raynauldcfa44302022-11-30 18:36:36 -050042 const { data } = await axiosInstance.get<Message[]>(`/conversations/${conversationId}/messages`);
simon94fe53e2022-11-10 12:51:58 -050043 return data;
44 },
45 {
46 enabled: !!conversationId,
47 }
48 );
simond47ef9e2022-09-28 22:24:28 -040049};
idillon08f77172022-09-13 19:14:17 -040050
simon5da8ca62022-11-09 15:21:25 -050051export const useSendMessageMutation = (conversationId: string) => {
simon94fe53e2022-11-10 12:51:58 -050052 const { axiosInstance } = useAuthContext();
simond47ef9e2022-09-28 22:24:28 -040053 const queryClient = useQueryClient();
54 return useMutation(
simon94fe53e2022-11-10 12:51:58 -050055 (message: string) => axiosInstance.post(`/conversations/${conversationId}/messages`, { message }),
simond47ef9e2022-09-28 22:24:28 -040056 {
simon5da8ca62022-11-09 15:21:25 -050057 onSuccess: () => queryClient.invalidateQueries(['messages', conversationId]),
simond47ef9e2022-09-28 22:24:28 -040058 }
59 );
60};