mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Created profile picture componenet and added statuses to pictures in center channel * PLT-3899 - Updating UI for status indicators (#3823) * PLT-3899 - Updating UI for status indicators * Updating position of timestamps for compact layout
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import React from 'react';
|
|
|
|
export default class ProfilePicture extends React.Component {
|
|
shouldComponentUpdate(nextProps) {
|
|
if (nextProps.src !== this.props.src) {
|
|
return true;
|
|
}
|
|
|
|
if (nextProps.status !== this.props.status) {
|
|
return true;
|
|
}
|
|
|
|
if (nextProps.width !== this.props.width) {
|
|
return true;
|
|
}
|
|
|
|
if (nextProps.height !== this.props.height) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
render() {
|
|
let statusClass = '';
|
|
if (this.props.status) {
|
|
statusClass = 'status-' + this.props.status;
|
|
}
|
|
|
|
return (
|
|
<span className={`status-wrapper ${statusClass}`}>
|
|
<img
|
|
className='more-modal__image'
|
|
width={this.props.width}
|
|
height={this.props.width}
|
|
src={this.props.src}
|
|
/>
|
|
</span>
|
|
);
|
|
}
|
|
}
|
|
|
|
ProfilePicture.defaultProps = {
|
|
width: '36',
|
|
height: '36'
|
|
};
|
|
ProfilePicture.propTypes = {
|
|
src: React.PropTypes.string.isRequired,
|
|
status: React.PropTypes.string,
|
|
width: React.PropTypes.string,
|
|
height: React.PropTypes.string
|
|
};
|