blob: 03f0717d84bb22e720e56923a8c9bb19e881a2af [file] [log] [blame]
/*
* Copyright (C) 2022 Savoir-faire Linux Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation; either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program. If not, see
* <https://www.gnu.org/licenses/>.
*/
import { Divider, Stack, Typography } from '@mui/material';
import { Account, Conversation, ConversationMember } from 'jami-web-common';
import { useContext, useEffect, useMemo, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { useNavigate } from 'react-router';
import { useAuthContext } from '../contexts/AuthProvider';
import { SocketContext } from '../contexts/Socket';
import ChatInterface from '../pages/ChatInterface';
import { useConversationQuery } from '../services/Conversation';
import { translateEnumeration, TranslateEnumerationOptions } from '../utils/translations';
import { AddParticipantButton, ShowOptionsMenuButton, StartAudioCallButton, StartVideoCallButton } from './Button';
import LoadingPage from './Loading';
type ConversationViewProps = {
conversationId: string;
};
const ConversationView = ({ conversationId }: ConversationViewProps) => {
const { account } = useAuthContext();
const socket = useContext(SocketContext);
const [conversation, setConversation] = useState<Conversation | undefined>();
const [isLoading, setIsLoading] = useState(true);
const [error, setError] = useState(false);
const accountId = account.getId();
const conversationQuery = useConversationQuery(conversationId);
useEffect(() => {
if (conversationQuery.isSuccess) {
const conversation = Conversation.from(accountId, conversationQuery.data);
setConversation(conversation);
}
}, [accountId, conversationQuery.isSuccess, conversationQuery.data]);
useEffect(() => {
setIsLoading(conversationQuery.isLoading);
}, [conversationQuery.isLoading]);
useEffect(() => {
setError(conversationQuery.isError);
}, [conversationQuery.isError]);
useEffect(() => {
if (!conversation) return;
console.log(`io set conversation ${conversationId} ` + socket);
if (socket) {
socket.emit('conversation', {
accountId,
conversationId,
});
}
}, [accountId, conversation, conversationId, socket]);
if (isLoading) {
return <LoadingPage />;
} else if (error || !account || !conversation) {
return <div>Error loading {conversationId}</div>;
}
return (
<Stack height="100%">
<ConversationHeader
account={account}
members={conversation.getMembers()}
adminTitle={conversation.infos.title as string}
conversationId={conversationId}
/>
<Divider
sx={{
borderTop: '1px solid #E5E5E5',
}}
/>
<ChatInterface conversationId={conversationId} members={conversation.getMembers()} />
</Stack>
);
};
type ConversationHeaderProps = {
account: Account;
conversationId: string;
members: ConversationMember[];
adminTitle: string | undefined;
};
const ConversationHeader = ({ account, members, adminTitle, conversationId }: ConversationHeaderProps) => {
const { t } = useTranslation();
const navigate = useNavigate();
const title = useMemo(() => {
if (adminTitle) {
return adminTitle;
}
const options: TranslateEnumerationOptions<ConversationMember> = {
elementPartialKey: 'member',
getElementValue: (member) => getMemberName(member),
translaters: [
() =>
// The user is chatting with themself
t('conversation_title_one', { member0: account?.getDisplayName() }),
(interpolations) => t('conversation_title_one', interpolations),
(interpolations) => t('conversation_title_two', interpolations),
(interpolations) => t('conversation_title_three', interpolations),
(interpolations) => t('conversation_title_four', interpolations),
(interpolations) => t('conversation_title_more', interpolations),
],
};
return translateEnumeration<ConversationMember>(members, options);
}, [account, members, adminTitle, t]);
const startCall = (withVideo = false) => {
let url = `/account/call/${conversationId}`;
if (withVideo) {
url += '?video=true';
}
navigate(url);
};
return (
<Stack direction="row" padding="16px" overflow="hidden">
<Stack flex={1} justifyContent="center" whiteSpace="nowrap" overflow="hidden">
<Typography variant="h3" textOverflow="ellipsis">
{title}
</Typography>
</Stack>
<Stack direction="row" spacing="20px">
<StartAudioCallButton onClick={() => startCall(false)} />
<StartVideoCallButton onClick={() => startCall(true)} />
<AddParticipantButton />
<ShowOptionsMenuButton />
</Stack>
</Stack>
);
};
const getMemberName = (member: ConversationMember) => {
const contact = member.contact;
return contact.getDisplayName();
};
export default ConversationView;