mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Update search buttons on mobile * removed commented codes in _mobile.scss * deleted 'search_bar.cancel' from webapp/i18n/en.json
324 lines
10 KiB
JavaScript
324 lines
10 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import $ from 'jquery';
|
|
import * as GlobalActions from 'actions/global_actions.jsx';
|
|
import SearchStore from 'stores/search_store.jsx';
|
|
import UserStore from 'stores/user_store.jsx';
|
|
import AppDispatcher from '../dispatcher/app_dispatcher.jsx';
|
|
import SuggestionBox from './suggestion/suggestion_box.jsx';
|
|
import SearchChannelProvider from './suggestion/search_channel_provider.jsx';
|
|
import SearchSuggestionList from './suggestion/search_suggestion_list.jsx';
|
|
import SearchUserProvider from './suggestion/search_user_provider.jsx';
|
|
import * as Utils from 'utils/utils.jsx';
|
|
import Constants from 'utils/constants.jsx';
|
|
import {getFlaggedPosts, performSearch} from 'actions/post_actions.jsx';
|
|
|
|
import {FormattedMessage, FormattedHTMLMessage} from 'react-intl';
|
|
|
|
var ActionTypes = Constants.ActionTypes;
|
|
import {Tooltip, OverlayTrigger, Popover} from 'react-bootstrap';
|
|
|
|
import React from 'react';
|
|
|
|
export default class SearchBar extends React.Component {
|
|
constructor() {
|
|
super();
|
|
this.mounted = false;
|
|
|
|
this.onListenerChange = this.onListenerChange.bind(this);
|
|
this.handleChange = this.handleChange.bind(this);
|
|
this.handleUserFocus = this.handleUserFocus.bind(this);
|
|
this.handleClear = this.handleClear.bind(this);
|
|
this.handleUserBlur = this.handleUserBlur.bind(this);
|
|
this.performSearch = this.performSearch.bind(this);
|
|
this.handleSubmit = this.handleSubmit.bind(this);
|
|
this.searchMentions = this.searchMentions.bind(this);
|
|
this.getFlagged = this.getFlagged.bind(this);
|
|
|
|
const state = this.getSearchTermStateFromStores();
|
|
state.focused = false;
|
|
state.isPristine = true;
|
|
this.state = state;
|
|
|
|
this.suggestionProviders = [new SearchChannelProvider(), new SearchUserProvider()];
|
|
}
|
|
|
|
getSearchTermStateFromStores() {
|
|
var term = SearchStore.getSearchTerm() || '';
|
|
return {
|
|
searchTerm: term
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
SearchStore.addSearchTermChangeListener(this.onListenerChange);
|
|
this.mounted = true;
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
SearchStore.removeSearchTermChangeListener(this.onListenerChange);
|
|
this.mounted = false;
|
|
}
|
|
|
|
onListenerChange(doSearch, isMentionSearch) {
|
|
if (this.mounted) {
|
|
var newState = this.getSearchTermStateFromStores();
|
|
if (!Utils.areObjectsEqual(newState, this.state)) {
|
|
this.setState(newState);
|
|
}
|
|
if (doSearch) {
|
|
this.performSearch(newState.searchTerm, isMentionSearch);
|
|
}
|
|
}
|
|
}
|
|
|
|
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
|
|
});
|
|
}
|
|
|
|
handleChange(e) {
|
|
var term = e.target.value;
|
|
SearchStore.storeSearchTerm(term);
|
|
SearchStore.emitSearchTermChange(false);
|
|
this.setState({searchTerm: term});
|
|
}
|
|
|
|
handleUserBlur() {
|
|
this.setState({focused: false});
|
|
}
|
|
|
|
handleClear() {
|
|
this.setState({searchTerm: ''});
|
|
}
|
|
|
|
handleUserFocus() {
|
|
this.setState({focused: true});
|
|
}
|
|
|
|
performSearch(terms, isMentionSearch) {
|
|
if (terms.length) {
|
|
this.setState({
|
|
isSearching: true,
|
|
isPristine: false
|
|
});
|
|
|
|
performSearch(
|
|
terms,
|
|
isMentionSearch,
|
|
() => {
|
|
this.setState({isSearching: false});
|
|
|
|
if (Utils.isMobile() && this.search) {
|
|
this.search.value = '';
|
|
}
|
|
},
|
|
() => {
|
|
this.setState({isSearching: false});
|
|
}
|
|
);
|
|
}
|
|
}
|
|
|
|
handleSubmit(e) {
|
|
e.preventDefault();
|
|
this.performSearch(this.state.searchTerm.trim());
|
|
$(this.search).find('input').blur();
|
|
}
|
|
|
|
searchMentions(e) {
|
|
e.preventDefault();
|
|
const user = UserStore.getCurrentUser();
|
|
if (SearchStore.isMentionSearch) {
|
|
// Close
|
|
GlobalActions.toggleSideBarAction(false);
|
|
} else {
|
|
GlobalActions.emitSearchMentionsEvent(user);
|
|
}
|
|
}
|
|
|
|
getFlagged(e) {
|
|
e.preventDefault();
|
|
if (SearchStore.isFlaggedPosts) {
|
|
GlobalActions.toggleSideBarAction(false);
|
|
} else {
|
|
getFlaggedPosts();
|
|
}
|
|
}
|
|
|
|
renderHintPopover(helpClass) {
|
|
if (!this.props.isCommentsPage && Utils.isMobile() && this.state.isPristine) {
|
|
return false;
|
|
}
|
|
|
|
return (
|
|
<Popover
|
|
id='searchbar-help-popup'
|
|
placement='bottom'
|
|
className={helpClass}
|
|
>
|
|
<FormattedHTMLMessage
|
|
id='search_bar.usage'
|
|
defaultMessage='<h4>Search Options</h4><ul><li><span>Use </span><b>"quotation marks"</b><span> to search for phrases</span></li><li><span>Use </span><b>from:</b><span> to find posts from specific users and </span><b>in:</b><span> to find posts in specific channels</span></li></ul>'
|
|
/>
|
|
</Popover>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const flagIcon = Constants.FLAG_ICON_SVG;
|
|
var isSearching = null;
|
|
if (this.state.isSearching) {
|
|
isSearching = <span className={'fa fa-refresh fa-refresh-animate icon--refresh icon--rotate'}/>;
|
|
}
|
|
|
|
let helpClass = 'search-help-popover';
|
|
if (!this.state.searchTerm && this.state.focused) {
|
|
helpClass += ' visible';
|
|
}
|
|
|
|
const recentMentionsTooltip = (
|
|
<Tooltip id='recentMentionsTooltip'>
|
|
<FormattedMessage
|
|
id='channel_header.recentMentions'
|
|
defaultMessage='Recent Mentions'
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
|
|
const flaggedTooltip = (
|
|
<Tooltip id='flaggedTooltip'>
|
|
<FormattedMessage
|
|
id='channel_header.flagged'
|
|
defaultMessage='Flagged Posts'
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
|
|
let mentionBtn;
|
|
let flagBtn;
|
|
if (this.props.showMentionFlagBtns) {
|
|
mentionBtn = (
|
|
<div
|
|
className='dropdown channel-header__links'
|
|
style={{float: 'left', marginTop: '1px'}}
|
|
>
|
|
<OverlayTrigger
|
|
delayShow={Constants.OVERLAY_TIME_DELAY}
|
|
placement='bottom'
|
|
overlay={recentMentionsTooltip}
|
|
>
|
|
<a
|
|
href='#'
|
|
type='button'
|
|
onClick={this.searchMentions}
|
|
>
|
|
{'@'}
|
|
</a>
|
|
</OverlayTrigger>
|
|
</div>
|
|
);
|
|
|
|
flagBtn = (
|
|
<div
|
|
className='dropdown channel-header__links'
|
|
style={{float: 'left', marginTop: '1px'}}
|
|
>
|
|
<OverlayTrigger
|
|
delayShow={Constants.OVERLAY_TIME_DELAY}
|
|
placement='bottom'
|
|
overlay={flaggedTooltip}
|
|
>
|
|
<a
|
|
href='#'
|
|
type='button'
|
|
onClick={this.getFlagged}
|
|
>
|
|
<span
|
|
className='icon icon__flag'
|
|
dangerouslySetInnerHTML={{__html: flagIcon}}
|
|
/>
|
|
</a>
|
|
</OverlayTrigger>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
let clearClass = 'sidebar__clear-icon';
|
|
if (!this.state.isSearching && this.state.searchTerm && this.state.searchTerm.trim() !== '') {
|
|
clearClass += ' visible';
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<div
|
|
className='sidebar__collapse'
|
|
onClick={this.handleClose}
|
|
>
|
|
<span className='fa fa-angle-left'/>
|
|
</div>
|
|
<form
|
|
role='form'
|
|
className='search__form'
|
|
onSubmit={this.handleSubmit}
|
|
style={{overflow: 'visible'}}
|
|
autoComplete='off'
|
|
>
|
|
<span className='fa fa-search sidebar__search-icon'/>
|
|
<SuggestionBox
|
|
ref={(search) => {
|
|
this.search = search;
|
|
}}
|
|
className='form-control search-bar'
|
|
placeholder={Utils.localizeMessage('search_bar.search', 'Search')}
|
|
value={this.state.searchTerm}
|
|
onFocus={this.handleUserFocus}
|
|
onBlur={this.handleUserBlur}
|
|
onChange={this.handleChange}
|
|
listComponent={SearchSuggestionList}
|
|
providers={this.suggestionProviders}
|
|
type='search'
|
|
/>
|
|
<span
|
|
className={clearClass}
|
|
onClick={this.handleClear}
|
|
>
|
|
<i className='fa fa-times'/>
|
|
</span>
|
|
{isSearching}
|
|
{this.renderHintPopover(helpClass)}
|
|
</form>
|
|
|
|
{mentionBtn}
|
|
{flagBtn}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
SearchBar.defaultProps = {
|
|
showMentionFlagBtns: true
|
|
};
|
|
|
|
SearchBar.propTypes = {
|
|
showMentionFlagBtns: React.PropTypes.bool,
|
|
isCommentsPage: React.PropTypes.bool
|
|
};
|