Files
mattermost/webapp/components/status_icon.jsx
Kevyn Bruyere d6fdd93679 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
2016-06-15 06:30:32 -06:00

37 lines
883 B
JavaScript

// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import Constants from 'utils/constants.jsx';
import React from 'react';
export default class StatusIcon extends React.Component {
render() {
const status = this.props.status;
if (!status) {
return null;
}
let statusIcon = '';
if (status === 'online') {
statusIcon = Constants.ONLINE_ICON_SVG;
} else if (status === 'away') {
statusIcon = Constants.AWAY_ICON_SVG;
} else {
statusIcon = Constants.OFFLINE_ICON_SVG;
}
return (
<span
className='status'
dangerouslySetInnerHTML={{__html: statusIcon}}
/>
);
}
}
StatusIcon.propTypes = {
status: React.PropTypes.string.isRequired
};