Files
mattermost/web/react/components/user_profile.jsx

147 lines
4.2 KiB
React
Raw Normal View History

// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
2015-06-14 23:53:32 -08:00
// See License.txt for license information.
import * as Utils from '../utils/utils.jsx';
import UserStore from '../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;
}
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: '...'}};
}
2015-06-14 23:53:32 -08:00
2015-11-12 12:13:26 -05:00
return {profile};
}
componentDidMount() {
UserStore.addChangeListener(this.onChange);
if (!this.props.disablePopover) {
$('body').tooltip({selector: '[data-toggle=tooltip]', trigger: 'hover click'});
}
}
componentWillUnmount() {
UserStore.removeChangeListener(this.onChange);
}
onChange(userId) {
if (!userId || userId === this.props.userId) {
var newState = this.getStateFromStores(this.props.userId);
if (!Utils.areObjectsEqual(newState, this.state)) {
2015-06-14 23:53:32 -08:00
this.setState(newState);
}
}
}
componentWillReceiveProps(nextProps) {
if (this.props.userId !== nextProps.userId) {
this.setState(this.getStateFromStores(nextProps.userId));
}
}
render() {
var name = Utils.displayUsername(this.state.profile.id);
if (this.props.overwriteName) {
name = this.props.overwriteName;
} else if (!name) {
name = '...';
2015-06-14 23:53:32 -08:00
}
if (this.props.disablePopover) {
return <div>{name}</div>;
}
var profileImg = '/api/v1/users/' + this.state.profile.id + '/image?time=' + this.state.profile.update_at + '&' + Utils.getSessionIndex();
if (this.props.overwriteImage) {
profileImg = this.props.overwriteImage;
}
2015-10-15 22:54:15 +05:00
var dataContent = [];
dataContent.push(
2015-10-16 10:15:52 -04:00
<img
className='user-popover__image'
src={profileImg}
2015-10-15 22:54:15 +05:00
height='128'
width='128'
2015-10-16 10:15:52 -04:00
key='user-popover-image'
2015-10-15 22:54:15 +05:00
/>
);
2015-10-20 15:02:15 -07:00
2015-10-16 09:10:54 -07:00
if (!global.window.mm_config.ShowEmailAddress === 'true') {
2015-10-16 10:15:52 -04:00
dataContent.push(
<div
className='text-nowrap'
key='user-popover-no-email'
>
{'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'
2015-10-19 01:22:19 +02:00
title={this.state.profile.email}
2015-10-16 10:15:52 -04:00
key='user-popover-email'
2015-10-15 22:54:15 +05:00
>
<a
2015-10-19 01:22:19 +02:00
href={'mailto:' + this.state.profile.email}
2015-10-15 22:54:15 +05:00
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
trigger='click'
2015-10-15 22:54:15 +05:00
placement='right'
2015-10-16 10:15:52 -04:00
rootClose={true}
overlay={
<Popover
title={name}
2015-10-16 10:15:52 -04:00
id='user-profile-popover'
>
{dataContent}
</Popover>
}
>
2015-10-16 10:15:52 -04:00
<div
className='user-popover'
id={'profile_' + this.uniqueId}
>
{name}
</div>
2015-10-15 22:54:15 +05:00
</OverlayTrigger>
2015-06-14 23:53:32 -08:00
);
}
}
UserProfile.defaultProps = {
userId: '',
overwriteName: '',
overwriteImage: '',
disablePopover: false
};
UserProfile.propTypes = {
userId: React.PropTypes.string,
overwriteName: React.PropTypes.string,
overwriteImage: React.PropTypes.string,
disablePopover: React.PropTypes.bool
};