mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
70 lines
2.3 KiB
JavaScript
70 lines
2.3 KiB
JavaScript
// 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');
|
|
|
|
function getStateFromStores(userId) {
|
|
var profile = UserStore.getProfile(userId);
|
|
|
|
if (profile == null) {
|
|
return { profile: { id: "0", username: "..."} };
|
|
} else {
|
|
return { profile: profile };
|
|
}
|
|
}
|
|
|
|
var id = 0;
|
|
|
|
function nextId() {
|
|
id = id + 1;
|
|
return id;
|
|
}
|
|
|
|
|
|
module.exports = React.createClass({
|
|
uniqueId: null,
|
|
componentDidMount: function() {
|
|
UserStore.addChangeListener(this._onChange);
|
|
$("#profile_" + this.uniqueId).popover({placement : 'right', container: 'body', trigger: 'hover', html: true, delay: { "show": 200, "hide": 100 }});
|
|
},
|
|
componentWillUnmount: function() {
|
|
UserStore.removeChangeListener(this._onChange);
|
|
},
|
|
_onChange: function(id) {
|
|
if (id == this.props.userId) {
|
|
var newState = getStateFromStores(this.props.userId);
|
|
if (!utils.areStatesEqual(newState, this.state)) {
|
|
this.setState(newState);
|
|
}
|
|
}
|
|
},
|
|
componentWillReceiveProps: function(nextProps) {
|
|
if (this.props.userId != nextProps.userId) {
|
|
this.setState(getStateFromStores(nextProps.userId));
|
|
}
|
|
},
|
|
getInitialState: function() {
|
|
this.uniqueId = nextId();
|
|
return getStateFromStores(this.props.userId);
|
|
},
|
|
render: function() {
|
|
var name = this.props.overwriteName ? this.props.overwriteName : this.state.profile.username;
|
|
|
|
|
|
var data_content = "<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 (!config.ShowEmail) {
|
|
data_content += "<div class='text-nowrap'>Email not shared</div>";
|
|
} else {
|
|
data_content += "<div><a href='mailto:" + this.state.profile.email + "' class='text-nowrap text-lowercase'>" + this.state.profile.email + "</a></div>";
|
|
}
|
|
|
|
return (
|
|
<div className="user-popover" id={"profile_" + this.uniqueId} data-toggle="popover" data-content={data_content} data-original-title={this.state.profile.username} >
|
|
{ name }
|
|
</div>
|
|
);
|
|
}
|
|
});
|