summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_profile.jsx
blob: ceb8f52a7fd82193145c0ca2a7ca81c32f66643c (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
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
86
87
88
89
90
91
92
93
94
95
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

var Utils = require('../utils/utils.jsx');
var UserStore = require('../stores/user_store.jsx');

var id = 0;

function nextId() {
    id = id + 1;
    return id;
}

export default class UserProfile extends React.Component {
    constructor(props) {
        super(props);

        this.uniqueId = nextId();
        this.onChange = this.onChange.bind(this);

        this.state = this.getStateFromStores(this.props.userId);
    }
    getStateFromStores(userId) {
        var profile = UserStore.getProfile(userId);

        if (profile == null) {
            return {profile: {id: '0', username: '...'}};
        }

        return {profile: profile};
    }
    componentDidMount() {
        UserStore.addChangeListener(this.onChange);
        if (!this.props.disablePopover) {
            $('#profile_' + this.uniqueId).popover({placement: 'right', container: 'body', trigger: 'hover', html: true, delay: {show: 200, hide: 100}});
            $('body').tooltip({selector: '[data-toggle=tooltip]', trigger: 'hover click'});
        }
    }
    componentWillUnmount() {
        UserStore.removeChangeListener(this.onChange);
    }
    onChange(userId) {
        if (userId === this.props.userId) {
            var newState = this.getStateFromStores(this.props.userId);
            if (!Utils.areStatesEqual(newState, this.state)) {
                this.setState(newState);
            }
        }
    }
    componentWillReceiveProps(nextProps) {
        if (this.props.userId !== nextProps.userId) {
            this.setState(this.getStateFromStores(nextProps.userId));
        }
    }
    render() {
        var name = this.state.profile.username;
        if (this.props.overwriteName) {
            name = this.props.overwriteName;
        }

        if (this.props.disablePopover) {
            return <div>{name}</div>;
        }

        var dataContent = '<img class="user-popover__image" src="/api/v1/users/' + this.state.profile.id + '/image?time=' + this.state.profile.update_at + '" height="128" width="128" />';
        if (!global.window.config.ShowEmailAddress === 'true') {
            dataContent += '<div class="text-nowrap">Email not shared</div>';
        } else {
            dataContent += '<div data-toggle="tooltip" title="' + this.state.profile.email + '"><a href="mailto:' + this.state.profile.email + '" class="text-nowrap text-lowercase user-popover__email">' + this.state.profile.email + '</a></div>';
        }

        return (
            <div
                className='user-popover'
                id={'profile_' + this.uniqueId}
                data-toggle='popover'
                data-content={dataContent}
                data-original-title={this.state.profile.username}
            >
                {name}
            </div>
        );
    }
}

UserProfile.defaultProps = {
    userId: '',
    overwriteName: '',
    disablePopover: false
};
UserProfile.propTypes = {
    userId: React.PropTypes.string,
    overwriteName: React.PropTypes.string,
    disablePopover: React.PropTypes.bool
};