summaryrefslogtreecommitdiffstats
path: root/webapp/components/status_icon.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-01-30 19:38:06 +0500
committerCorey Hulen <corey@hulen.com>2017-01-30 09:38:06 -0500
commit83ead5cac7bb0d274c84d20d443c125ea0391f37 (patch)
treea241019c84272e07ffb37d09447f3ea71cf934bd /webapp/components/status_icon.jsx
parentc01d9ad6cf3f8bb2ad4145441816598d8ffa2d9e (diff)
downloadchat-83ead5cac7bb0d274c84d20d443c125ea0391f37.tar.gz
chat-83ead5cac7bb0d274c84d20d443c125ea0391f37.tar.bz2
chat-83ead5cac7bb0d274c84d20d443c125ea0391f37.zip
PLT-5122 - Switching to circular status icons (#5049)
* PLT-5122 - Switching to circular status icons * Adding profile pic crop for status indicators * Updating status indicators in LHS * Updating else statements
Diffstat (limited to 'webapp/components/status_icon.jsx')
-rw-r--r--webapp/components/status_icon.jsx14
1 files changed, 12 insertions, 2 deletions
diff --git a/webapp/components/status_icon.jsx b/webapp/components/status_icon.jsx
index 18cfce16c..3e71344d9 100644
--- a/webapp/components/status_icon.jsx
+++ b/webapp/components/status_icon.jsx
@@ -8,13 +8,22 @@ import React from 'react';
export default class StatusIcon extends React.Component {
render() {
const status = this.props.status;
+ const type = this.props.type;
if (!status) {
return null;
}
let statusIcon = '';
- if (status === 'online') {
+ if (type === 'avatar') {
+ if (status === 'online') {
+ statusIcon = Constants.ONLINE_AVATAR_SVG;
+ } else if (status === 'away') {
+ statusIcon = Constants.AWAY_AVATAR_SVG;
+ } else {
+ statusIcon = Constants.OFFLINE_AVATAR_SVG;
+ }
+ } else if (status === 'online') {
statusIcon = Constants.ONLINE_ICON_SVG;
} else if (status === 'away') {
statusIcon = Constants.AWAY_ICON_SVG;
@@ -33,5 +42,6 @@ export default class StatusIcon extends React.Component {
}
StatusIcon.propTypes = {
- status: React.PropTypes.string
+ status: React.PropTypes.string,
+ type: React.PropTypes.string
};