-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from longbridgeapp/feat/search
Support doc search feature
- Loading branch information
Showing
4 changed files
with
245 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
import React, { useCallback, useMemo, useRef, useState } from 'react' | ||
import { DocSearchButton, useDocSearchKeyboardEvents } from '@docsearch/react' | ||
import Head from '@docusaurus/Head' | ||
import Link from '@docusaurus/Link' | ||
import { useHistory } from '@docusaurus/router' | ||
import { isRegexpStringMatch, useSearchLinkCreator } from '@docusaurus/theme-common' | ||
import { useAlgoliaContextualFacetFilters, useSearchResultUrlProcessor } from '@docusaurus/theme-search-algolia/client' | ||
import Translate from '@docusaurus/Translate' | ||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext' | ||
import { createPortal } from 'react-dom' | ||
import translations from '@theme/SearchTranslations' | ||
|
||
let DocSearchModal = null | ||
|
||
function Hit({ hit, children }) { | ||
return <Link to={hit.url}>{children}</Link> | ||
} | ||
|
||
function ResultsFooter({ state, onClose }) { | ||
const createSearchLink = useSearchLinkCreator() | ||
return ( | ||
<Link to={createSearchLink(state.query)} onClick={onClose}> | ||
<Translate id="theme.SearchBar.seeAll" values={{ count: state.context.nbHits }}> | ||
{'See all {count} results'} | ||
</Translate> | ||
</Link> | ||
) | ||
} | ||
|
||
function mergeFacetFilters(f1, f2) { | ||
const normalize = (f) => (typeof f === 'string' ? [f] : f) | ||
return [...normalize(f1), ...normalize(f2)] | ||
} | ||
|
||
function DocSearch({ contextualSearch, externalUrlRegex, ...props }) { | ||
const { siteMetadata, i18n } = useDocusaurusContext() | ||
const processSearchResultUrl = useSearchResultUrlProcessor() | ||
const contextualSearchFacetFilters = useAlgoliaContextualFacetFilters() | ||
const configFacetFilters = props.searchParameters?.facetFilters ?? [] | ||
const facetFilters = contextualSearch | ||
? // Merge contextual search filters with config filters | ||
mergeFacetFilters(contextualSearchFacetFilters, configFacetFilters) | ||
: // ... or use config facetFilters | ||
configFacetFilters | ||
// We let user override default searchParameters if she wants to | ||
const searchParameters = { | ||
...props.searchParameters, | ||
facetFilters, | ||
} | ||
const history = useHistory() | ||
const searchContainer = useRef(null) | ||
const searchButtonRef = useRef(null) | ||
const [isOpen, setIsOpen] = useState(false) | ||
const [initialQuery, setInitialQuery] = useState(undefined) | ||
const importDocSearchModalIfNeeded = useCallback(() => { | ||
if (DocSearchModal) { | ||
return Promise.resolve() | ||
} | ||
return Promise.all([ | ||
import('@docsearch/react/modal'), | ||
import('@docsearch/react/style'), | ||
import('./styles.css'), | ||
]).then(([{ DocSearchModal: Modal }]) => { | ||
DocSearchModal = Modal | ||
}) | ||
}, []) | ||
const onOpen = useCallback(() => { | ||
importDocSearchModalIfNeeded().then(() => { | ||
searchContainer.current = document.createElement('div') | ||
document.body.insertBefore(searchContainer.current, document.body.firstChild) | ||
setIsOpen(true) | ||
}) | ||
}, [importDocSearchModalIfNeeded, setIsOpen]) | ||
const onClose = useCallback(() => { | ||
setIsOpen(false) | ||
searchContainer.current?.remove() | ||
}, [setIsOpen]) | ||
const onInput = useCallback( | ||
(event) => { | ||
importDocSearchModalIfNeeded().then(() => { | ||
setIsOpen(true) | ||
setInitialQuery(event.key) | ||
}) | ||
}, | ||
[importDocSearchModalIfNeeded, setIsOpen, setInitialQuery] | ||
) | ||
const navigator = useRef({ | ||
navigate({ itemUrl }) { | ||
// Algolia results could contain URL's from other domains which cannot | ||
// be served through history and should navigate with window.location | ||
if (isRegexpStringMatch(externalUrlRegex, itemUrl)) { | ||
window.location.href = itemUrl | ||
} else { | ||
history.push(itemUrl) | ||
} | ||
}, | ||
}).current | ||
const transformItems = useRef((items) => | ||
props.transformItems | ||
? // Custom transformItems | ||
props.transformItems(items) | ||
: // Default transformItems | ||
items.map((item) => ({ | ||
...item, | ||
url: processSearchResultUrl(item.url), | ||
})) | ||
).current | ||
const resultsFooterComponent = useMemo( | ||
() => | ||
// eslint-disable-next-line react/no-unstable-nested-components | ||
(footerProps) => <ResultsFooter {...footerProps} onClose={onClose} />, | ||
[onClose] | ||
) | ||
const transformSearchClient = useCallback( | ||
(searchClient) => { | ||
searchClient.addAlgoliaAgent('docusaurus', siteMetadata.docusaurusVersion) | ||
return searchClient | ||
}, | ||
[siteMetadata.docusaurusVersion] | ||
) | ||
useDocSearchKeyboardEvents({ | ||
isOpen, | ||
onOpen, | ||
onClose, | ||
onInput, | ||
searchButtonRef, | ||
}) | ||
|
||
const indexName = useMemo(() => { | ||
switch (i18n.currentLocale) { | ||
case 'en': | ||
return 'open-longportapp-en' | ||
break | ||
case 'zh-HK': | ||
return 'open-longportapp-zh-HK' | ||
break | ||
default: | ||
return 'open-longportapp' | ||
} | ||
}, [i18n.currentLocale]) | ||
|
||
console.log('DocSearch-142', i18n.currentLocale, indexName) | ||
|
||
return ( | ||
<> | ||
<Head> | ||
{/* This hints the browser that the website will load data from Algolia, | ||
and allows it to preconnect to the DocSearch cluster. It makes the first | ||
query faster, especially on mobile. */} | ||
<link rel="preconnect" href={`https://${props.appId}-dsn.algolia.net`} crossOrigin="anonymous" /> | ||
</Head> | ||
|
||
<DocSearchButton | ||
onTouchStart={importDocSearchModalIfNeeded} | ||
onFocus={importDocSearchModalIfNeeded} | ||
onMouseOver={importDocSearchModalIfNeeded} | ||
onClick={onOpen} | ||
ref={searchButtonRef} | ||
translations={translations.button} | ||
/> | ||
|
||
{isOpen && | ||
DocSearchModal && | ||
searchContainer.current && | ||
createPortal( | ||
<DocSearchModal | ||
onClose={onClose} | ||
initialScrollY={window.scrollY} | ||
initialQuery={initialQuery} | ||
navigator={navigator} | ||
transformItems={transformItems} | ||
hitComponent={Hit} | ||
transformSearchClient={transformSearchClient} | ||
{...(props.searchPagePath && { | ||
resultsFooterComponent, | ||
})} | ||
{...props} | ||
indexName={indexName} | ||
searchParameters={searchParameters} | ||
placeholder={translations.placeholder} | ||
translations={translations.modal} | ||
/>, | ||
searchContainer.current | ||
)} | ||
</> | ||
) | ||
} | ||
|
||
export default function SearchBar() { | ||
const { siteConfig } = useDocusaurusContext() | ||
return <DocSearch {...siteConfig.themeConfig.algolia} /> | ||
} |
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,21 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
:root { | ||
--docsearch-primary-color: var(--ifm-color-primary); | ||
--docsearch-text-color: var(--ifm-font-color-base); | ||
} | ||
|
||
.DocSearch-Button { | ||
margin: 0; | ||
transition: all var(--ifm-transition-fast) | ||
var(--ifm-transition-timing-default); | ||
} | ||
|
||
.DocSearch-Container { | ||
z-index: calc(var(--ifm-z-index-fixed) + 1); | ||
} |