mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
138 lines
3.9 KiB
JavaScript
138 lines
3.9 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
var Utils = require('../utils/utils.jsx');
|
|
var UserStore = require('../stores/user_store.jsx');
|
|
var Popover = ReactBootstrap.Popover;
|
|
var OverlayTrigger = ReactBootstrap.OverlayTrigger;
|
|
|
|
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) {
|
|
$('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 = [];
|
|
dataContent.push(
|
|
<img
|
|
className='user-popover__image'
|
|
src={'/api/v1/users/' + this.state.profile.id + '/image?time=' + this.state.profile.update_at + '&' + Utils.getSessionIndex()}
|
|
height='128'
|
|
width='128'
|
|
key='user-popover-image'
|
|
/>
|
|
);
|
|
|
|
if (!global.window.mm_config.ShowEmailAddress === 'true') {
|
|
dataContent.push(
|
|
<div
|
|
className='text-nowrap'
|
|
key='user-popover-no-email'
|
|
>
|
|
{'Email not shared'}
|
|
</div>
|
|
);
|
|
} else {
|
|
dataContent.push(
|
|
<div
|
|
data-toggle='tooltip'
|
|
title={this.state.profile.email}
|
|
key='user-popover-email'
|
|
>
|
|
<a
|
|
href={'mailto:' + this.state.profile.email}
|
|
className='text-nowrap text-lowercase user-popover__email'
|
|
>
|
|
{this.state.profile.email}
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<OverlayTrigger
|
|
trigger='click'
|
|
placement='right'
|
|
rootClose={true}
|
|
overlay={
|
|
<Popover
|
|
title={this.state.profile.username}
|
|
id='user-profile-popover'
|
|
>
|
|
{dataContent}
|
|
</Popover>
|
|
}
|
|
>
|
|
<div
|
|
className='user-popover'
|
|
id={'profile_' + this.uniqueId}
|
|
>
|
|
{name}
|
|
</div>
|
|
</OverlayTrigger>
|
|
);
|
|
}
|
|
}
|
|
|
|
UserProfile.defaultProps = {
|
|
userId: '',
|
|
overwriteName: '',
|
|
disablePopover: false
|
|
};
|
|
UserProfile.propTypes = {
|
|
userId: React.PropTypes.string,
|
|
overwriteName: React.PropTypes.string,
|
|
disablePopover: React.PropTypes.bool
|
|
};
|