blob: 5e3c3756f98f5bfbff6a3a405c083c3425256454 [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 */
simon07b4eb02022-09-29 17:50:26 -040018import GroupAddRounded from '@mui/icons-material/GroupAddRounded';
19import { Box, Card, CardContent, Container, Fab, Typography } from '@mui/material';
simon4e7445c2022-11-16 21:18:46 -050020import { useTranslation } from 'react-i18next';
simon5da8ca62022-11-09 15:21:25 -050021import { useNavigate } from 'react-router-dom';
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040022
simon5da8ca62022-11-09 15:21:25 -050023import { useAuthContext } from '../contexts/AuthProvider';
simond8ca2f22022-10-11 23:30:55 -040024import { setRefreshFromSlice } from '../redux/appSlice';
25import { useAppDispatch } from '../redux/hooks';
ervinanoh34eb9472022-09-13 04:20:28 -040026
simonfe1de722022-10-02 00:21:43 -040027type AddContactPageProps = {
simonfe1de722022-10-02 00:21:43 -040028 contactId: string;
29};
30
simon5da8ca62022-11-09 15:21:25 -050031export default function AddContactPage({ contactId }: AddContactPageProps) {
simon4e7445c2022-11-16 21:18:46 -050032 const { t } = useTranslation();
simon94fe53e2022-11-10 12:51:58 -050033 const { axiosInstance } = useAuthContext();
Adrien Béraudab519ff2022-05-03 15:34:48 -040034 const navigate = useNavigate();
simonfe1de722022-10-02 00:21:43 -040035
ervinanoh34eb9472022-09-13 04:20:28 -040036 const dispatch = useAppDispatch();
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040037
simonfe1de722022-10-02 00:21:43 -040038 const handleClick = async () => {
simon94fe53e2022-11-10 12:51:58 -050039 const { data } = await axiosInstance.put(`/contacts/${contactId}`);
40 dispatch(setRefreshFromSlice());
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040041
simon94fe53e2022-11-10 12:51:58 -050042 if (data.conversationId) {
43 navigate(`/conversation/${data.conversationId}`);
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040044 }
simond47ef9e2022-09-28 22:24:28 -040045 };
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040046
47 return (
simond47ef9e2022-09-28 22:24:28 -040048 <Container className="messenger">
49 <Card variant="outlined" style={{ borderRadius: 16, maxWidth: 560, margin: '16px auto' }}>
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040050 <CardContent>
simond47ef9e2022-09-28 22:24:28 -040051 <Typography variant="h6">Jami key ID</Typography>
52 <Typography variant="body1">{contactId}</Typography>
53 <Box style={{ textAlign: 'center', marginTop: 16 }}>
54 <Fab variant="extended" color="primary" onClick={handleClick}>
55 <GroupAddRounded />
simon4e7445c2022-11-16 21:18:46 -050056 {t('conversation_add_contact')}
simond47ef9e2022-09-28 22:24:28 -040057 </Fab>
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040058 </Box>
59 </CardContent>
60 </Card>
simond47ef9e2022-09-28 22:24:28 -040061 </Container>
62 );
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040063}