summaryrefslogtreecommitdiffstats
path: root/webapp/components/status_icon.jsx
blob: 3e71344d9497ec105af78c72a8d2dc1953914bd4 (plain)
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
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import Constants from 'utils/constants.jsx';

import React from 'react';

export default class StatusIcon extends React.Component {
    render() {
        const status = this.props.status;
        const type = this.props.type;

        if (!status) {
            return null;
        }

        let statusIcon = '';
        if (type === 'avatar') {
            if (status === 'online') {
                statusIcon = Constants.ONLINE_AVATAR_SVG;
            } else if (status === 'away') {
                statusIcon = Constants.AWAY_AVATAR_SVG;
            } else {
                statusIcon = Constants.OFFLINE_AVATAR_SVG;
            }
        } else if (status === 'online') {
            statusIcon = Constants.ONLINE_ICON_SVG;
        } else if (status === 'away') {
            statusIcon = Constants.AWAY_ICON_SVG;
        } else {
            statusIcon = Constants.OFFLINE_ICON_SVG;
        }

        return (
            <span
                className='status'
                dangerouslySetInnerHTML={{__html: statusIcon}}
            />
        );
    }

}

StatusIcon.propTypes = {
    status: React.PropTypes.string,
    type: React.PropTypes.string
};