summaryrefslogtreecommitdiffstats
path: root/web/react/components/search_results_header.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-09-02 12:41:47 -0700
committerCorey Hulen <corey@hulen.com>2015-09-02 12:41:47 -0700
commitc7cafb6ac7404b62f38b48d3ec5782863abf203a (patch)
treefcf0970fa47942ca3a2431f21919271e1305a925 /web/react/components/search_results_header.jsx
parentb31be3afa70a015afab864677545aafa3af8e1eb (diff)
parent63bc243b179f2c1f7b51ad2252f698907d2cde59 (diff)
downloadchat-c7cafb6ac7404b62f38b48d3ec5782863abf203a.tar.gz
chat-c7cafb6ac7404b62f38b48d3ec5782863abf203a.tar.bz2
chat-c7cafb6ac7404b62f38b48d3ec5782863abf203a.zip
Merge pull request #553 from mattermost/MM-2065
MM-2065 Cosmetic refactoring for ESLint
Diffstat (limited to 'web/react/components/search_results_header.jsx')
-rw-r--r--web/react/components/search_results_header.jsx61
1 files changed, 61 insertions, 0 deletions
diff --git a/web/react/components/search_results_header.jsx b/web/react/components/search_results_header.jsx
new file mode 100644
index 000000000..694f0c55d
--- /dev/null
+++ b/web/react/components/search_results_header.jsx
@@ -0,0 +1,61 @@
+// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+var AppDispatcher = require('../dispatcher/app_dispatcher.jsx');
+var Constants = require('../utils/constants.jsx');
+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.RECIEVED_SEARCH,
+ results: null
+ });
+
+ AppDispatcher.handleServerAction({
+ type: ActionTypes.RECIEVED_SEARCH_TERM,
+ term: null,
+ do_search: false,
+ is_mention_search: false
+ });
+
+ AppDispatcher.handleServerAction({
+ type: ActionTypes.RECIEVED_POST_SELECTED,
+ results: null
+ });
+ }
+
+ render() {
+ var title = 'Search Results';
+
+ if (this.props.isMentionSearch) {
+ title = 'Recent Mentions';
+ }
+
+ return (
+ <div className='sidebar--right__header'>
+ <span className='sidebar--right__title'>{title}</span>
+ <button
+ type='button'
+ className='sidebar--right__close'
+ aria-label='Close'
+ title='Close'
+ onClick={this.handleClose}
+ >
+ </button>
+ </div>
+ );
+ }
+}
+
+SearchResultsHeader.propTypes = {
+ isMentionSearch: React.PropTypes.bool
+}; \ No newline at end of file