Reformatted user_profile.jsx to meet style guide requirements.
Этот коммит содержится в:
@@ -1,20 +1,9 @@
|
|||||||
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||||
// See License.txt for license information.
|
// See License.txt for license information.
|
||||||
|
|
||||||
|
var Utils = require('../utils/utils.jsx');
|
||||||
var utils = require('../utils/utils.jsx');
|
|
||||||
var UserStore = require('../stores/user_store.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;
|
var id = 0;
|
||||||
|
|
||||||
function nextId() {
|
function nextId() {
|
||||||
@@ -22,49 +11,76 @@ function nextId() {
|
|||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default class UserProfile extends React.Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
|
||||||
module.exports = React.createClass({
|
this.uniqueId = nextId();
|
||||||
uniqueId: null,
|
|
||||||
componentDidMount: function() {
|
this.state = this.getStateFromStores(this.props.userId);
|
||||||
UserStore.addChangeListener(this._onChange);
|
}
|
||||||
$("#profile_" + this.uniqueId).popover({placement : 'right', container: 'body', trigger: 'hover', html: true, delay: { "show": 200, "hide": 100 }});
|
getStateFromStores(userId) {
|
||||||
$('body').tooltip( {selector: '[data-toggle=tooltip]', trigger: 'hover click'} );
|
var profile = UserStore.getProfile(userId);
|
||||||
},
|
|
||||||
componentWillUnmount: function() {
|
if (profile == null) {
|
||||||
UserStore.removeChangeListener(this._onChange);
|
return {profile: {id: '0', username: '...'}};
|
||||||
},
|
}
|
||||||
_onChange: function(id) {
|
|
||||||
if (id == this.props.userId) {
|
return {profile: profile};
|
||||||
var newState = getStateFromStores(this.props.userId);
|
}
|
||||||
if (!utils.areStatesEqual(newState, this.state)) {
|
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);
|
this.setState(newState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
componentWillReceiveProps: function(nextProps) {
|
componentWillReceiveProps(nextProps) {
|
||||||
if (this.props.userId != nextProps.userId) {
|
if (this.props.userId !== nextProps.userId) {
|
||||||
this.setState(getStateFromStores(nextProps.userId));
|
this.setState(this.getStateFromStores(nextProps.userId));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
render() {
|
||||||
|
var name = this.state.profile.username;
|
||||||
|
if (this.props.overwriteName) {
|
||||||
|
name = this.props.overwriteName;
|
||||||
}
|
}
|
||||||
},
|
|
||||||
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 dataContent = '<img class="user-popover__image" src="/api/v1/users/' + this.state.profile.id + '/image?time=' + this.state.profile.update_at + '" height="128" width="128" />';
|
||||||
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) {
|
if (!config.ShowEmail) {
|
||||||
data_content += "<div class='text-nowrap'>Email not shared</div>";
|
dataContent += '<div class="text-nowrap">Email not shared</div>';
|
||||||
} else {
|
} else {
|
||||||
data_content += "<div data-toggle='tooltip' title= '" + this.state.profile.email + "'><a href='mailto:" + this.state.profile.email + "' class='text-nowrap text-lowercase user-popover__email'>" + this.state.profile.email + "</a></div>";
|
dataContent += '<div data-toggle="tooltip" title="' + this.state.profile.email + '"><a href="mailto:' + this.state.profile.email + '" class="text-nowrap text-lowercase user-popover__email">' + this.state.profile.email + '</a></div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="user-popover" id={"profile_" + this.uniqueId} data-toggle="popover" data-content={data_content} data-original-title={this.state.profile.username} >
|
<div
|
||||||
{ name }
|
className='user-popover'
|
||||||
|
id={'profile_' + this.uniqueId}
|
||||||
|
data-toggle='popover'
|
||||||
|
data-content={dataContent}
|
||||||
|
data-original-title={this.state.profile.username}
|
||||||
|
>
|
||||||
|
{name}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
|
|
||||||
|
UserProfile.defaultProps = {
|
||||||
|
userId: '',
|
||||||
|
overwriteName: ''
|
||||||
|
};
|
||||||
|
UserProfile.propTypes = {
|
||||||
|
userId: React.PropTypes.string,
|
||||||
|
overwriteName: React.PropTypes.string
|
||||||
|
};
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||||
// See License.txt for license information.
|
// See License.txt for license information.
|
||||||
|
|
||||||
var Client = require('../Utils/client.jsx');
|
var Client = require('../utils/client.jsx');
|
||||||
var Utils = require('../Utils/Utils.jsx');
|
var Utils = require('../utils/utils.jsx');
|
||||||
|
|
||||||
export default class ViewImageModal extends React.Component {
|
export default class ViewImageModal extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user