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/search_results_header.jsx | 153 ---------------------------- 1 file changed, 153 deletions(-) delete mode 100644 webapp/components/search_results_header.jsx (limited to 'webapp/components/search_results_header.jsx') diff --git a/webapp/components/search_results_header.jsx b/webapp/components/search_results_header.jsx deleted file mode 100644 index b3f77c413..000000000 --- a/webapp/components/search_results_header.jsx +++ /dev/null @@ -1,153 +0,0 @@ -// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import Constants from 'utils/constants.jsx'; -import {Tooltip, OverlayTrigger} from 'react-bootstrap'; -import * as GlobalActions from 'actions/global_actions.jsx'; - -import {FormattedMessage} from 'react-intl'; - -import PropTypes from 'prop-types'; - -import React from 'react'; - -export default class SearchResultsHeader extends React.Component { - constructor(props) { - super(props); - - this.handleClose = this.handleClose.bind(this); - this.toggleSize = this.toggleSize.bind(this); - } - - handleClose(e) { - e.preventDefault(); - - GlobalActions.toggleSideBarAction(false); - - this.props.shrink(); - } - - toggleSize(e) { - e.preventDefault(); - this.props.toggleSize(); - } - - render() { - var title = ( - - ); - - const closeSidebarTooltip = ( - - - - ); - - const expandSidebarTooltip = ( - - - - ); - - const shrinkSidebarTooltip = ( - - - - ); - - if (this.props.isMentionSearch) { - title = ( - - ); - } else if (this.props.isFlaggedPosts) { - title = ( - - ); - } else if (this.props.isPinnedPosts) { - title = ( - - ); - } - - return ( -
- {title} -
- - -
-
- ); - } -} - -SearchResultsHeader.propTypes = { - isMentionSearch: PropTypes.bool, - toggleSize: PropTypes.func, - shrink: PropTypes.func, - isFlaggedPosts: PropTypes.bool, - isPinnedPosts: PropTypes.bool, - channelDisplayName: PropTypes.string.isRequired, - isLoading: PropTypes.bool.isRequired -}; -- cgit v1.2.3-1-g7c22