2015-10-08 12:27:09 -04:00
|
|
|
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
2015-06-14 23:53:32 -08:00
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
2015-09-01 12:52:18 -04:00
|
|
|
var Utils = require('../utils/utils.jsx');
|
2015-06-14 23:53:32 -08:00
|
|
|
var UserStore = require('../stores/user_store.jsx');
|
2015-10-15 22:54:15 +05:00
|
|
|
var Popover = ReactBootstrap.Popover;
|
|
|
|
|
var OverlayTrigger = ReactBootstrap.OverlayTrigger;
|
2015-06-14 23:53:32 -08:00
|
|
|
|
|
|
|
|
var id = 0;
|
|
|
|
|
|
|
|
|
|
function nextId() {
|
|
|
|
|
id = id + 1;
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-01 12:52:18 -04:00
|
|
|
export default class UserProfile extends React.Component {
|
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
|
|
this.uniqueId = nextId();
|
2015-09-02 12:54:01 -07:00
|
|
|
this.onChange = this.onChange.bind(this);
|
2015-09-01 12:52:18 -04:00
|
|
|
|
|
|
|
|
this.state = this.getStateFromStores(this.props.userId);
|
|
|
|
|
}
|
|
|
|
|
getStateFromStores(userId) {
|
|
|
|
|
var profile = UserStore.getProfile(userId);
|
|
|
|
|
|
|
|
|
|
if (profile == null) {
|
|
|
|
|
return {profile: {id: '0', username: '...'}};
|
|
|
|
|
}
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2015-09-01 12:52:18 -04:00
|
|
|
return {profile: profile};
|
|
|
|
|
}
|
|
|
|
|
componentDidMount() {
|
|
|
|
|
UserStore.addChangeListener(this.onChange);
|
2015-10-02 11:08:00 -04:00
|
|
|
if (!this.props.disablePopover) {
|
|
|
|
|
$('body').tooltip({selector: '[data-toggle=tooltip]', trigger: 'hover click'});
|
|
|
|
|
}
|
2015-09-01 12:52:18 -04:00
|
|
|
}
|
|
|
|
|
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)) {
|
2015-06-14 23:53:32 -08:00
|
|
|
this.setState(newState);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-09-01 12:52:18 -04:00
|
|
|
}
|
|
|
|
|
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;
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2015-10-02 11:08:00 -04:00
|
|
|
if (this.props.disablePopover) {
|
|
|
|
|
return <div>{name}</div>;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-15 22:54:15 +05:00
|
|
|
var dataContent = [];
|
|
|
|
|
dataContent.push(
|
|
|
|
|
<img className='user-popover__image'
|
|
|
|
|
src={'/api/v1/users/' + this.state.profile.id + '/image?time=' + this.state.profile.update_at}
|
|
|
|
|
height='128'
|
|
|
|
|
width='128'
|
|
|
|
|
/>
|
|
|
|
|
);
|
2015-09-21 15:34:09 -07:00
|
|
|
if (!global.window.config.ShowEmailAddress === 'true') {
|
2015-10-15 22:54:15 +05:00
|
|
|
dataContent.push(<div className='text-nowrap'>{'Email not shared'}</div>);
|
2015-06-14 23:53:32 -08:00
|
|
|
} else {
|
2015-10-15 22:54:15 +05:00
|
|
|
dataContent.push(
|
|
|
|
|
<div
|
|
|
|
|
data-toggle='tooltip'
|
|
|
|
|
title="' + this.state.profile.email + '"
|
|
|
|
|
>
|
|
|
|
|
<a
|
|
|
|
|
href="mailto:' + this.state.profile.email + '"
|
|
|
|
|
className='text-nowrap text-lowercase user-popover__email'
|
|
|
|
|
>
|
|
|
|
|
{this.state.profile.email}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
2015-10-15 22:54:15 +05:00
|
|
|
<OverlayTrigger
|
2015-10-15 22:57:07 +05:00
|
|
|
trigger='click'
|
2015-10-15 22:54:15 +05:00
|
|
|
placement='right'
|
|
|
|
|
rootClose='true'
|
|
|
|
|
overlay={<Popover title={this.state.profile.username}>{dataContent}</Popover>}
|
|
|
|
|
>
|
2015-09-01 12:52:18 -04:00
|
|
|
<div
|
|
|
|
|
className='user-popover'
|
|
|
|
|
id={'profile_' + this.uniqueId}
|
|
|
|
|
>
|
|
|
|
|
{name}
|
2015-06-14 23:53:32 -08:00
|
|
|
</div>
|
2015-10-15 22:54:15 +05:00
|
|
|
</OverlayTrigger>
|
2015-06-14 23:53:32 -08:00
|
|
|
);
|
|
|
|
|
}
|
2015-09-01 12:52:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UserProfile.defaultProps = {
|
|
|
|
|
userId: '',
|
2015-10-02 11:08:00 -04:00
|
|
|
overwriteName: '',
|
|
|
|
|
disablePopover: false
|
2015-09-01 12:52:18 -04:00
|
|
|
};
|
|
|
|
|
UserProfile.propTypes = {
|
|
|
|
|
userId: React.PropTypes.string,
|
2015-10-02 11:08:00 -04:00
|
|
|
overwriteName: React.PropTypes.string,
|
|
|
|
|
disablePopover: React.PropTypes.bool
|
2015-09-01 12:52:18 -04:00
|
|
|
};
|