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
|
import React, { useEffect, useState, useCallback } from 'react';
import PropTypes from 'prop-types';
import ReactRouterPropTypes from 'react-router-prop-types';
import { UserType } from './Types';
import moment from 'moment';
import PM from './PM';
import MessageInput from './MessageInput';
import UserInfo from './UserInfo';
import { getChat, pm } from '../api';
import './Chat.css';
export default function Chat(props) {
const [chats, setChats] = useState([]);
useEffect(() => {
if (props.connection.addEventListener) {
props.connection.addEventListener('msg', onMessage);
}
loadChat(props.match.params.user);
console.log(props.connection);
return () => {
if (props.connection.removeEventListener) {
props.connection.removeEventListener('msg', onMessage);
}
};
}, [props.connection, onMessage, loadChat, props.match.params.user]);
let loadChat = useCallback((uname) => {
const { hash } = props.visitor;
setChats([]);
if (hash && uname) {
getChat(uname)
.then(response => {
setChats(response.data);
});
}
}, [props.visitor]);
let onMessage = useCallback((json) => {
const msg = JSON.parse(json.data);
if (msg.user.uname === props.match.params.user) {
setChats((oldChat) => {
return [msg, ...oldChat];
});
}
}, [props.match.params.user]);
let onSend = (template) => {
pm(template.to.uname, template.body)
.then(res => {
loadChat(props.match.params.user);
}).catch(console.log);
};
const uname = props.match.params.user;
return (
<div className="msg-cont">
<UserInfo user={uname} />
{uname ? (
<div className="chatroom">
<ul className="Chat_messages">
{
chats.map((chat) =>
<PM key={moment.utc(chat.timestamp).valueOf()} chat={chat} {...props} />
)
}
</ul>
<MessageInput data={{ mid: 0, timestamp: '0', to: { uname: uname } }} onSend={onSend}>
Reply...
</MessageInput>
</div>
) : (
<div className="chatroom no-selection"><p>No chat selected</p></div>
)
}
</div>
);
}
Chat.propTypes = {
visitor: UserType.isRequired,
match: ReactRouterPropTypes.match.isRequired,
connection: PropTypes.object.isRequired
};
|