blob: c7a5c3ff756a26b51aaa06f89930c7bba8ee12f8 (
plain) (
blame)
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
|
import React from 'react';
import moment from 'moment';
import PM from './PM';
import MessageInput from './MessageInput';
import { getChat, pm } from '../api';
export default class Chat extends React.Component {
constructor(props) {
super(props);
this.state = {
chats: []
};
}
componentWillMount() {
this.loadChat(this.props.match.params.user);
}
loadChat = (uname) => {
const { hash } = this.props.visitor;
this.setState({
chats: []
});
if (hash && uname) {
getChat(uname)
.then(response => {
this.setState({
chats: response.data
});
});
}
}
onSend = (template) => {
pm(template.to.uname, template.body)
.then(res => {
this.loadChat(this.props.match.params.user);
}).catch(console.log)
}
render() {
const { chats } = this.state;
const uname = this.props.match.params.user;
return (
<div id="content">
<article>
{uname ? (
<div className="chatroom">
<ul style={chatStyle} ref="chats">
{
chats.map((chat) =>
<PM key={moment.utc(chat.timestamp).valueOf()} chat={chat} />
)
}
</ul>
<MessageInput data={{ mid: 0, timestamp: "0", to: { uname: uname } }} onSend={this.onSend} />
</div>
) : (
<div className="chatroom no-selection"><p>No chat selected</p></div>
)
}
</article>
</div>
)
}
}
const chatStyle = {
boxSizing: 'border-box',
padding: '0 20px',
overflowY: 'scroll',
height: '450px',
display: 'flex',
flexDirection: 'column-reverse',
width: '100%'
}
|