From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- webapp/components/common/comment_icon.jsx | 61 ------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 webapp/components/common/comment_icon.jsx (limited to 'webapp/components/common/comment_icon.jsx') diff --git a/webapp/components/common/comment_icon.jsx b/webapp/components/common/comment_icon.jsx deleted file mode 100644 index e3781a4be..000000000 --- a/webapp/components/common/comment_icon.jsx +++ /dev/null @@ -1,61 +0,0 @@ -import PropTypes from 'prop-types'; - -// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import React from 'react'; -import Constants from 'utils/constants.jsx'; -import * as Utils from 'utils/utils.jsx'; - -export default function CommentIcon(props) { - let commentCountSpan = ''; - let iconStyle = 'comment-icon__container'; - if (props.commentCount > 0) { - iconStyle += ' icon--show'; - commentCountSpan = ( - - {props.commentCount} - - ); - } else if (props.searchStyle !== '') { - iconStyle = iconStyle + ' ' + props.searchStyle; - } - - let selectorId = props.idPrefix; - if (props.idCount > -1) { - selectorId += props.idCount; - } - - const id = Utils.createSafeId(props.idPrefix + '_' + props.id); - - return ( - - - {commentCountSpan} - - ); -} - -CommentIcon.propTypes = { - idPrefix: PropTypes.string.isRequired, - idCount: PropTypes.number, - handleCommentClick: PropTypes.func.isRequired, - searchStyle: PropTypes.string, - commentCount: PropTypes.number, - id: PropTypes.string -}; - -CommentIcon.defaultProps = { - idCount: -1, - searchStyle: '', - commentCount: 0, - id: '' -}; -- cgit v1.2.3-1-g7c22