From 12896bd23eeba79884245c1c29fdc568cf21a7fa Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 14 Mar 2016 08:50:46 -0400 Subject: Converting to Webpack. Stage 1. --- web/react/components/search_results_header.jsx | 75 -------------------------- 1 file changed, 75 deletions(-) delete mode 100644 web/react/components/search_results_header.jsx (limited to 'web/react/components/search_results_header.jsx') diff --git a/web/react/components/search_results_header.jsx b/web/react/components/search_results_header.jsx deleted file mode 100644 index 20fe342dc..000000000 --- a/web/react/components/search_results_header.jsx +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import AppDispatcher from '../dispatcher/app_dispatcher.jsx'; -import Constants from '../utils/constants.jsx'; - -import {FormattedMessage} from 'mm-intl'; - -var ActionTypes = Constants.ActionTypes; - -export default class SearchResultsHeader extends React.Component { - constructor(props) { - super(props); - - this.handleClose = this.handleClose.bind(this); - } - - handleClose(e) { - e.preventDefault(); - - AppDispatcher.handleServerAction({ - type: ActionTypes.RECEIVED_SEARCH, - results: null - }); - - AppDispatcher.handleServerAction({ - type: ActionTypes.RECEIVED_SEARCH_TERM, - term: null, - do_search: false, - is_mention_search: false - }); - - AppDispatcher.handleServerAction({ - type: ActionTypes.RECEIVED_POST_SELECTED, - postId: null - }); - } - - render() { - var title = ( - - ); - - if (this.props.isMentionSearch) { - title = ( - - ); - } - - return ( -
- {title} - -
- ); - } -} - -SearchResultsHeader.propTypes = { - isMentionSearch: React.PropTypes.bool -}; -- cgit v1.2.3-1-g7c22