aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Contacts.js
blob: 84a6ec9fc8bc0af2c9b190b211a323e1e4757e2e (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
import React from 'react';

import { getChats } from '../api';


import Contact from './Contact.js';

export default class Contacts extends React.Component {
    constructor(props) {
        super(props);
        this.state = {
            pms: []
        };
    }
    componentDidMount() {
        this.refreshChats();
    }

    refreshChats() {
        getChats()
            .then(response => {
                this.setState({
                    isLoading: false,
                    pms: response.data.pms
                });
            });
    }
    render() {
        const { pms } = this.state;
        return (
            <div className="msgs">
                <div style={wrapperStyle} className="msg-cont">
                    <ul style={chatListStyle}>
                        {
                            pms && pms.map((chat) =>
                                <li key={chat.uname} style={chatTitleStyle}>
                                    <Contact key={chat.uname} user={chat} />
                                </li>
                            )
                        }
                    </ul>
                </div>
            </div>
        );
    }
}

const wrapperStyle = {
    display: 'flex',
    backgroundColor: '#fff'
};

const chatListStyle = {
    boxSizing: 'border-box',
    padding: '0 20px',
    display: 'flex',
    alignItems: 'center',
    flexDirection: 'column',
    width: '100%'
};

const chatTitleStyle = {
    width: '100%',
    padding: '3px 6px',
    textAlign: 'left',
    background: '#fff',
    color: '#222',
    borderBottom: '1px solid #eee'
};