open-nomad/website/components/search
2020-08-07 12:36:38 -04:00
..
img Implement search via Algolia 2020-08-07 12:36:38 -04:00
hits.jsx Implement search via Algolia 2020-08-07 12:36:38 -04:00
index.jsx Implement search via Algolia 2020-08-07 12:36:38 -04:00
legend.jsx Implement search via Algolia 2020-08-07 12:36:38 -04:00
provider.jsx Implement search via Algolia 2020-08-07 12:36:38 -04:00
README.md Implement search via Algolia 2020-08-07 12:36:38 -04:00
search-box.jsx Implement search via Algolia 2020-08-07 12:36:38 -04:00
style.css Implement search via Algolia 2020-08-07 12:36:38 -04:00

HashiCorp Search Component

Properties

placeholder (Optional) string. Default: Search

import Search from '../path/to/components/search'

function Search() {
  return <Search placeholder="Search documentation" />
}

Usage

We rely on the presence of the following environment variables present on the client:

NEXT_PUBLIC_ALGOLIA_APP_ID
NEXT_PUBLIC_ALGOLIA_SEARCH_ONLY_API_KEY
NEXT_PUBLIC_ALGOLIA_INDEX

To use the primary <Search /> component, ensure it exists as a child of the <SearchProvider /> component. For example:

App.jsx

import Search from 'components/search'
import SearchProvider from 'components/search/provider'

function App() {
  return (
    <>
      <SearchProvider>
        <Search />
        <ComponentA>
        <ComponentB>
      </SearchProvider>
      <ComponentC__WithoutSearchContext>
    </>
  )
}

Any child component of <SearchProvider /> can utilize the provided useSearch() hook and access search-specific information. For example:

import { useSearch } from 'components/search/provider'

function ComponentA() {
  const { searchQuery } = useSearch()

  return <code>Search query: {searchQuery}</code>
}

useSearch()

useSearch() exposes the following values:

  • [ Public ] activeOnMobile (boolean) - Indicates whether the mobile toggle has been activated
  • [ Internal ] indexName (string) - The name of the Algolia index that search is performed upon
  • [ Internal ] initAlgoliaInsights (function) - Required to initialize Algolia
  • [ Internal ] logClick (function) - Fires an analytics event via the search-insights package
  • [ Internal ] searchClient (object) - Initialized Algolia client
  • [ Public ] searchQuery (string) - Current search query
  • [ Internal ] setActiveOnMobile (function) - Setter function that toggles the state of mobile activation
  • [ Internal ] setSearchQuery (function) - Setter function that updates the search query