// 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); $('#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; } var dataContent = ''; if (!global.window.config.ShowEmailAddress) { dataContent += '
Email not shared
'; } else { dataContent += '
' + this.state.profile.email + '
'; } return (
{name}
); } } UserProfile.defaultProps = { userId: '', overwriteName: '' }; UserProfile.propTypes = { userId: React.PropTypes.string, overwriteName: React.PropTypes.string };