From d6fdd936797890565dff4e6951a6792b7e09831c Mon Sep 17 00:00:00 2001 From: Kevyn Bruyere <6eme.hokage@gmail.com> Date: Wed, 15 Jun 2016 14:30:32 +0200 Subject: PLT-946 Add status icon to the left of the username in DM channel (#3258) Add a StatusIcon component to be able to display a status icon from anywhere --- webapp/components/sidebar.jsx | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) (limited to 'webapp/components/sidebar.jsx') diff --git a/webapp/components/sidebar.jsx b/webapp/components/sidebar.jsx index 1c02c9d98..f6c2a1a5a 100644 --- a/webapp/components/sidebar.jsx +++ b/webapp/components/sidebar.jsx @@ -8,6 +8,7 @@ import MoreDirectChannels from './more_direct_channels.jsx'; import SidebarHeader from './sidebar_header.jsx'; import UnreadChannelIndicator from './unread_channel_indicator.jsx'; import TutorialTip from './tutorial/tutorial_tip.jsx'; +import StatusIcon from './status_icon.jsx'; import ChannelStore from 'stores/channel_store.jsx'; import UserStore from 'stores/user_store.jsx'; @@ -503,30 +504,14 @@ export default class Sidebar extends React.Component { rowClass += ' has-badge'; } - // set up status icon for direct message channels - var status = null; - if (channel.type === 'D') { - var statusIcon = ''; - if (channel.status === 'online') { - statusIcon = Constants.ONLINE_ICON_SVG; - } else if (channel.status === 'away') { - statusIcon = Constants.AWAY_ICON_SVG; - } else { - statusIcon = Constants.OFFLINE_ICON_SVG; - } - status = ( - - ); - } - var icon = null; if (channel.type === 'O') { icon =
; } else if (channel.type === 'P') { icon =
; + } else { + // set up status icon for direct message channels (status is null for other channel types) + icon = ; } let closeButton = null; @@ -581,7 +566,6 @@ export default class Sidebar extends React.Component { className={rowClass} > {icon} - {status} {channel.display_name} {badge} {closeButton} -- cgit v1.2.3-1-g7c22