From 93a526f7ed5464e18e11137f798d09c0561b16a8 Mon Sep 17 00:00:00 2001 From: Asaad Mahmood Date: Mon, 9 Jan 2017 19:32:27 +0500 Subject: PLT-5179 - Fixing modal overflow for autocomplete (#5002) * PLT-5179 - Fixing modal overflow for autocomplete * PLT-5171 - Fixing search bar popover behaviour --- webapp/components/search_bar.jsx | 61 +++++++++++-------------- webapp/components/suggestion/suggestion_box.jsx | 2 + 2 files changed, 28 insertions(+), 35 deletions(-) (limited to 'webapp/components') diff --git a/webapp/components/search_bar.jsx b/webapp/components/search_bar.jsx index a6fd379ac..a7e9bfcac 100644 --- a/webapp/components/search_bar.jsx +++ b/webapp/components/search_bar.jsx @@ -104,7 +104,6 @@ export default class SearchBar extends React.Component { SearchStore.storeSearchTerm(term); SearchStore.emitSearchTermChange(false); this.setState({searchTerm: term}); - this.refs.searchOverlay.hide(); } handleUserBlur() { @@ -112,9 +111,8 @@ export default class SearchBar extends React.Component { } handleUserFocus() { - $('.search-bar__container').addClass('focused'); - this.setState({focused: true}); + $('.search-bar__container').addClass('focused'); } performSearch(terms, isMentionSearch) { @@ -180,6 +178,11 @@ export default class SearchBar extends React.Component { isSearching = ; } + let helpClass = 'search-help-popover'; + if (!this.state.searchTerm && this.state.focused) { + helpClass += ' visible'; + } + const recentMentionsTooltip = ( ); - const searchPopover = ( - - - - ); - const flaggedTooltip = ( - + {isSearching} + - - - {isSearching} + {mentionBtn} diff --git a/webapp/components/suggestion/suggestion_box.jsx b/webapp/components/suggestion/suggestion_box.jsx index b3f9843c6..fb55b0588 100644 --- a/webapp/components/suggestion/suggestion_box.jsx +++ b/webapp/components/suggestion/suggestion_box.jsx @@ -64,6 +64,7 @@ export default class SuggestionBox extends React.Component { // Delay this slightly so that we don't clear the suggestions before we run click handlers on SuggestionList GlobalActions.emitClearSuggestions(this.suggestionId); }, 100); + this.props.onBlur(); } handleChange(e) { @@ -272,6 +273,7 @@ SuggestionBox.propTypes = { renderDividers: React.PropTypes.bool, // explicitly name any input event handlers we override and need to manually call + onBlur: React.PropTypes.func, onChange: React.PropTypes.func, onKeyDown: React.PropTypes.func, onItemSelected: React.PropTypes.func -- cgit v1.2.3-1-g7c22