-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(java/ui) Add search suggestions to our search experience (#8710)
- Loading branch information
1 parent
8648126
commit b6141f5
Showing
17 changed files
with
341 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import { RocketOutlined } from '@ant-design/icons'; | ||
import { useHistory } from 'react-router'; | ||
import { Button } from 'antd'; | ||
import React, { useCallback } from 'react'; | ||
import styled from 'styled-components'; | ||
import { ANTD_GRAY_V2 } from '../entity/shared/constants'; | ||
import { navigateToSearchUrl } from './utils/navigateToSearchUrl'; | ||
import analytics, { EventType } from '../analytics'; | ||
import { SuggestedText } from './suggestions/SearchQuerySugggester'; | ||
import useGetSearchQueryInputs from './useGetSearchQueryInputs'; | ||
import { FacetFilterInput, SearchSuggestion } from '../../types.generated'; | ||
import { useUserContext } from '../context/useUserContext'; | ||
|
||
const NoDataContainer = styled.div` | ||
margin: 40px auto; | ||
font-size: 16px; | ||
color: ${ANTD_GRAY_V2[8]}; | ||
`; | ||
|
||
const Section = styled.div` | ||
margin-bottom: 16px; | ||
`; | ||
|
||
function getRefineSearchText(filters: FacetFilterInput[], viewUrn?: string | null) { | ||
let text = ''; | ||
if (filters.length && viewUrn) { | ||
text = 'clearing all filters and selected view'; | ||
} else if (filters.length) { | ||
text = 'clearing all filters'; | ||
} else if (viewUrn) { | ||
text = 'clearing the selected view'; | ||
} | ||
|
||
return text; | ||
} | ||
|
||
interface Props { | ||
suggestions: SearchSuggestion[]; | ||
} | ||
|
||
export default function EmptySearchResults({ suggestions }: Props) { | ||
const { query, filters, viewUrn } = useGetSearchQueryInputs(); | ||
const history = useHistory(); | ||
const userContext = useUserContext(); | ||
const suggestText = suggestions.length > 0 ? suggestions[0].text : ''; | ||
const refineSearchText = getRefineSearchText(filters, viewUrn); | ||
|
||
const onClickExploreAll = useCallback(() => { | ||
analytics.event({ type: EventType.SearchResultsExploreAllClickEvent }); | ||
navigateToSearchUrl({ query: '*', history }); | ||
}, [history]); | ||
|
||
const searchForSuggestion = () => { | ||
navigateToSearchUrl({ query: suggestText, history }); | ||
}; | ||
|
||
const clearFiltersAndView = () => { | ||
navigateToSearchUrl({ query, history }); | ||
userContext.updateLocalState({ | ||
...userContext.localState, | ||
selectedViewUrn: undefined, | ||
}); | ||
}; | ||
|
||
return ( | ||
<NoDataContainer> | ||
<Section>No results found for "{query}"</Section> | ||
{refineSearchText && ( | ||
<> | ||
Try <SuggestedText onClick={clearFiltersAndView}>{refineSearchText}</SuggestedText>{' '} | ||
{suggestText && ( | ||
<> | ||
or searching for <SuggestedText onClick={searchForSuggestion}>{suggestText}</SuggestedText> | ||
</> | ||
)} | ||
</> | ||
)} | ||
{!refineSearchText && suggestText && ( | ||
<> | ||
Did you mean <SuggestedText onClick={searchForSuggestion}>{suggestText}</SuggestedText> | ||
</> | ||
)} | ||
{!refineSearchText && !suggestText && ( | ||
<Button onClick={onClickExploreAll}> | ||
<RocketOutlined /> Explore all | ||
</Button> | ||
)} | ||
</NoDataContainer> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.