blob: 442b405ee319a470b5bdac91dfcb7d5ebef35e7a [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';
simon94fe53e2022-11-10 12:51:58 -050020import { Trans } 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) {
simon94fe53e2022-11-10 12:51:58 -050032 const { axiosInstance } = useAuthContext();
Adrien Béraudab519ff2022-05-03 15:34:48 -040033 const navigate = useNavigate();
simonfe1de722022-10-02 00:21:43 -040034
ervinanoh34eb9472022-09-13 04:20:28 -040035 const dispatch = useAppDispatch();
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040036
simonfe1de722022-10-02 00:21:43 -040037 const handleClick = async () => {
simon94fe53e2022-11-10 12:51:58 -050038 const { data } = await axiosInstance.put(`/contacts/${contactId}`);
39 dispatch(setRefreshFromSlice());
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040040
simon94fe53e2022-11-10 12:51:58 -050041 if (data.conversationId) {
42 navigate(`/conversation/${data.conversationId}`);
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040043 }
simond47ef9e2022-09-28 22:24:28 -040044 };
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040045
46 return (
simond47ef9e2022-09-28 22:24:28 -040047 <Container className="messenger">
48 <Card variant="outlined" style={{ borderRadius: 16, maxWidth: 560, margin: '16px auto' }}>
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040049 <CardContent>
simond47ef9e2022-09-28 22:24:28 -040050 <Typography variant="h6">Jami key ID</Typography>
51 <Typography variant="body1">{contactId}</Typography>
52 <Box style={{ textAlign: 'center', marginTop: 16 }}>
53 <Fab variant="extended" color="primary" onClick={handleClick}>
54 <GroupAddRounded />
simon94fe53e2022-11-10 12:51:58 -050055 <Trans key="conversation_add_contact" />
simond47ef9e2022-09-28 22:24:28 -040056 </Fab>
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040057 </Box>
58 </CardContent>
59 </Card>
simond47ef9e2022-09-28 22:24:28 -040060 </Container>
61 );
Adrien Béraud35e7d7c2021-04-13 03:28:39 -040062}