blob: 79425c127ab8be544e489ea75611fe8ce7000ac4 (
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
|
import React from 'react';
import moment from 'moment';
import PM from './PM';
import MessageInput from './MessageInput';
export default class Chat extends React.Component {
constructor(props) {
super(props);
this.state = {
chats: []
};
this.loadChat = this.loadChat.bind(this);
}
componentWillMount() {
this.loadChat(this.props.match.params.user);
}
loadChat(uname) {
const { hash } = this.props.visitor;
this.setState({
chats: []
});
if (hash && uname) {
fetch(`https://api.juick.com/pm?uname=${uname}&hash=${hash}`)
.then(response => response.json())
.then(jsonResponse => {
this.setState({
chats: jsonResponse
});
});
}
}
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={{}} 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%'
}
|