blob: b3deed45fac680858dd6522e697c5f80bb9d51df [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 */
idillonae655dd2022-10-14 18:11:02 -040018import { Divider, Stack, Typography } from '@mui/material';
simone35acc22022-12-02 16:51:12 -050019import { useContext, useMemo } from 'react';
idillonae655dd2022-10-14 18:11:02 -040020import { useTranslation } from 'react-i18next';
simon07b4eb02022-09-29 17:50:26 -040021
simon5da8ca62022-11-09 15:21:25 -050022import { useAuthContext } from '../contexts/AuthProvider';
simone35acc22022-12-02 16:51:12 -050023import { CallManagerContext } from '../contexts/CallManagerProvider';
simon09fe4822022-11-30 23:36:25 -050024import { useConversationContext } from '../contexts/ConversationProvider';
Misha Krieger-Raynauldcfa44302022-11-30 18:36:36 -050025import { ConversationMember } from '../models/conversation';
simone35acc22022-12-02 16:51:12 -050026import CallInterface from '../pages/CallInterface';
idillon6847e252022-11-04 11:50:08 -040027import ChatInterface from '../pages/ChatInterface';
idillonae655dd2022-10-14 18:11:02 -040028import { translateEnumeration, TranslateEnumerationOptions } from '../utils/translations';
29import { AddParticipantButton, ShowOptionsMenuButton, StartAudioCallButton, StartVideoCallButton } from './Button';
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040030
simonf929a362022-11-18 16:53:45 -050031const ConversationView = () => {
simone35acc22022-12-02 16:51:12 -050032 const { conversationId } = useConversationContext();
33 const { callData } = useContext(CallManagerContext);
34
35 if (callData && callData.conversationId === conversationId) {
36 return <CallInterface />;
37 }
38
idillonbef18a52022-09-01 01:51:40 -040039 return (
simon9f814a32022-11-22 21:40:53 -050040 <Stack flexGrow={1} height="100%">
simonf9d78f22022-11-25 15:47:15 -050041 <ConversationHeader />
idillonae655dd2022-10-14 18:11:02 -040042 <Divider
43 sx={{
44 borderTop: '1px solid #E5E5E5',
45 }}
46 />
simonf9d78f22022-11-25 15:47:15 -050047 <ChatInterface />
idillonbef18a52022-09-01 01:51:40 -040048 </Stack>
simond47ef9e2022-09-28 22:24:28 -040049 );
50};
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040051
simonf9d78f22022-11-25 15:47:15 -050052const ConversationHeader = () => {
53 const { account } = useAuthContext();
simon09fe4822022-11-30 23:36:25 -050054 const { conversation, conversationId } = useConversationContext();
simone35acc22022-12-02 16:51:12 -050055 const { startCall } = useContext(CallManagerContext);
idillonae655dd2022-10-14 18:11:02 -040056 const { t } = useTranslation();
57
Misha Krieger-Raynauldcfa44302022-11-30 18:36:36 -050058 const members = conversation.members;
simonf9d78f22022-11-25 15:47:15 -050059 const adminTitle = conversation.infos.title as string;
60
idillonae655dd2022-10-14 18:11:02 -040061 const title = useMemo(() => {
62 if (adminTitle) {
63 return adminTitle;
64 }
65
66 const options: TranslateEnumerationOptions<ConversationMember> = {
67 elementPartialKey: 'member',
68 getElementValue: (member) => getMemberName(member),
69 translaters: [
70 () =>
71 // The user is chatting with themself
72 t('conversation_title_one', { member0: account?.getDisplayName() }),
73 (interpolations) => t('conversation_title_one', interpolations),
74 (interpolations) => t('conversation_title_two', interpolations),
75 (interpolations) => t('conversation_title_three', interpolations),
76 (interpolations) => t('conversation_title_four', interpolations),
77 (interpolations) => t('conversation_title_more', interpolations),
78 ],
79 };
80
81 return translateEnumeration<ConversationMember>(members, options);
82 }, [account, members, adminTitle, t]);
83
84 return (
idillon6847e252022-11-04 11:50:08 -040085 <Stack direction="row" padding="16px" overflow="hidden">
idillonae655dd2022-10-14 18:11:02 -040086 <Stack flex={1} justifyContent="center" whiteSpace="nowrap" overflow="hidden">
87 <Typography variant="h3" textOverflow="ellipsis">
88 {title}
89 </Typography>
90 </Stack>
91 <Stack direction="row" spacing="20px">
simone35acc22022-12-02 16:51:12 -050092 <StartAudioCallButton onClick={() => startCall({ conversationId, role: 'caller' })} />
93 <StartVideoCallButton onClick={() => startCall({ conversationId, role: 'caller', withVideoOn: true })} />
idillonae655dd2022-10-14 18:11:02 -040094 <AddParticipantButton />
95 <ShowOptionsMenuButton />
96 </Stack>
97 </Stack>
98 );
99};
100
101const getMemberName = (member: ConversationMember) => {
102 const contact = member.contact;
103 return contact.getDisplayName();
104};
105
simond47ef9e2022-09-28 22:24:28 -0400106export default ConversationView;