File size: 2,491 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
import Button from '@material-ui/core/Button';
import Toolbar from '@material-ui/core/Toolbar';
import ArrowBackIcon from '@material-ui/icons/ArrowBack';
import DeleteIcon from '@material-ui/icons/Delete';
import gql from 'graphql-tag';
import React from 'react';
import { useCallback } from 'react';
import styled from 'styled-components';
import { History } from 'history';
import { useRemoveChatMutation } from '../../graphql/types';
import { eraseChat } from '../../services/cache.service';
const Container = styled(Toolbar)`
padding: 0;
display: flex;
flex-direction: row;
background-color: var(--primary-bg);
color: var(--primary-text);
`;
const BackButton = styled(Button)`
svg {
color: var(--primary-text);
}
`;
const Rest = styled.div`
flex: 1;
display: flex;
justify-content: flex-end;
`;
const Picture = styled.img`
height: 40px;
width: 40px;
margin-top: 3px;
margin-left: -22px;
object-fit: cover;
padding: 5px;
border-radius: 50%;
`;
const Name = styled.div`
line-height: 56px;
`;
const DeleteButton = styled(Button)`
color: var(--primary-text) !important;
`;
export const removeChatMutation = gql`
mutation RemoveChat($chatId: ID!) {
removeChat(chatId: $chatId)
}
`;
interface ChatNavbarProps {
history: History;
chat: {
picture?: string | null;
name?: string | null;
id: string;
};
}
const ChatNavbar: React.FC<ChatNavbarProps> = ({ chat, history }) => {
const [removeChat] = useRemoveChatMutation({
variables: {
chatId: chat.id,
},
update: (client, { data }) => {
if (data && data.removeChat) {
eraseChat(client, data.removeChat);
}
},
});
const handleRemoveChat = useCallback(() => {
removeChat().then(() => {
history.replace('/chats');
});
}, [removeChat, history]);
const navBack = useCallback(() => {
history.replace('/chats');
}, [history]);
return (
<Container>
<BackButton data-testid="back-button" onClick={navBack}>
<ArrowBackIcon />
</BackButton>
{chat && chat.picture && chat.name && (
<React.Fragment>
<Picture data-testid="chat-picture" src={chat.picture} />
<Name data-testid="chat-name">{chat.name}</Name>
</React.Fragment>
)}
<Rest>
<DeleteButton data-testid="delete-button" onClick={handleRemoveChat}>
<DeleteIcon />
</DeleteButton>
</Rest>
</Container>
);
};
export default ChatNavbar;
|