// 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 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: React.PropTypes.bool, toggleSize: React.PropTypes.func, shrink: React.PropTypes.func, isFlaggedPosts: React.PropTypes.bool, isPinnedPosts: React.PropTypes.bool, channelDisplayName: React.PropTypes.string.isRequired };