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/post_view/post_flag_icon.jsx | 95 -------------------------- 1 file changed, 95 deletions(-) delete mode 100644 webapp/components/post_view/post_flag_icon.jsx (limited to 'webapp/components/post_view/post_flag_icon.jsx') diff --git a/webapp/components/post_view/post_flag_icon.jsx b/webapp/components/post_view/post_flag_icon.jsx deleted file mode 100644 index 02f8feb53..000000000 --- a/webapp/components/post_view/post_flag_icon.jsx +++ /dev/null @@ -1,95 +0,0 @@ -// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import React from 'react'; -import PropTypes from 'prop-types'; -import {FormattedMessage} from 'react-intl'; -import {Tooltip, OverlayTrigger} from 'react-bootstrap'; - -import {flagPost, unflagPost} from 'actions/post_actions.jsx'; -import Constants from 'utils/constants.jsx'; -import * as Utils from 'utils/utils.jsx'; - -function flagToolTip(isFlagged) { - return ( - - - - ); -} - -function flagIcon(isFlagged) { - let flagIconSvg = Constants.FLAG_ICON_SVG; - - if (isFlagged) { - flagIconSvg = Constants.FLAG_FILLED_ICON_SVG; - } - - return ( - - ); -} - -export default function PostFlagIcon(props) { - function onFlagPost(e) { - e.preventDefault(); - flagPost(props.postId); - } - - function onUnflagPost(e) { - e.preventDefault(); - unflagPost(props.postId); - } - - const flagFunc = props.isFlagged ? onUnflagPost : onFlagPost; - const flagVisible = props.isFlagged ? 'visible' : ''; - - let flagIconId = null; - if (props.idCount > -1) { - flagIconId = Utils.createSafeId(props.idPrefix + props.idCount); - } - - if (!props.isEphemeral) { - return ( - - - {flagIcon(props.isFlagged)} - - - ); - } - - return null; -} - -PostFlagIcon.propTypes = { - idPrefix: PropTypes.string.isRequired, - idCount: PropTypes.number, - postId: PropTypes.string.isRequired, - isFlagged: PropTypes.bool.isRequired, - isEphemeral: PropTypes.bool -}; - -PostFlagIcon.defaultProps = { - idCount: -1, - postId: '', - isFlagged: false, - isEphemeral: false -}; -- cgit v1.2.3-1-g7c22