Files
mattermost/webapp/components/status_icon.jsx
Harrison Healey fb6f2a123c PLT-5860 Updated copyright date (#6058)
* PLT-5860 Updated copyright date in about modal

* PLT-5860 Updated copyright notice in JSX files

* PLT-5860 Updated copyright notice in go files

* Fixed misc copyright dates

* Fixed component snapshots
2017-04-12 08:27:57 -04:00

53 lines
1.4 KiB
JavaScript

// Copyright (c) 2015-present 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;
const type = this.props.type;
if (!status) {
return null;
}
let statusIcon = '';
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;
} else {
statusIcon = Constants.OFFLINE_ICON_SVG;
}
return (
<span
className={'status ' + this.props.className}
dangerouslySetInnerHTML={{__html: statusIcon}}
/>
);
}
}
StatusIcon.defaultProps = {
className: ''
};
StatusIcon.propTypes = {
status: React.PropTypes.string,
className: React.PropTypes.string,
type: React.PropTypes.string
};