Adalt UI provides a good-looking search dialog out-of-the-box.
Open with ⌘ K or Ctrl K .
You can customize the search dialog from Root Provider .
When not specified, it uses the Default Search Client powered by Flexsearch.
It is lazy loaded using next/dynamic
.
This allows a better initial loading performance.
Add custom link items to search dialog.
They are shown as fallbacks when the query is empty.
import { RootProvider } from 'styledsea-docs-interface/root-provider' ;
< RootProvider
search = {{
links : [
[ 'Home' , '/' ] ,
[ 'Docs' , '/docs' ] ,
] ,
}}
>
...
</ RootProvider > ;
To opt-out of document search, disable it from root provider.
import { RootProvider } from 'styledsea-docs-interface/root-provider' ;
< RootProvider
search = {{
enabled : false ,
}}
>
...
</ RootProvider > ;
Customise the hot keys to trigger search dialog.
import { RootProvider } from 'styledsea-docs-interface/root-provider' ;
< RootProvider
search = {{
hotKey : [
{
display : 'K' ,
key : 'k' , // key code, or a function determining whether the key is pressed
},
] ,
}}
>
...
</ RootProvider > ;
Configure Tag Filter on the default search client.
import { RootProvider } from 'styledsea-docs-interface/root-provider' ;
< RootProvider
search = {{
options : {
defaultTag : 'value' ,
tags : [
{
name : 'Tag Name' ,
value : 'value' ,
},
] ,
},
}}
>
...
</ RootProvider > ;
For the setup guide, see Integrate Algolia Search . Make sure you have algoliasearch
installed on your project.
While generally we recommend building your own search with their client-side
SDK, you can also plug the built-in dialog interface.
Create a separate client component for the dialog.
'use client' ;
import algo from 'algoliasearch/lite' ;
import type { SharedProps } from 'styledsea-docs-interface/components/dialog/search' ;
import SearchDialog from 'styledsea-docs-interface/components/dialog/search-algolia' ;
const client = algo (appId , apiKey) ;
const index = client . initIndex (indexName) ;
export default function CustomSearchDialog ( props : SharedProps ) {
return < SearchDialog index = { index } { ... props } /> ;
}
Replace appId
, apiKey
and indexName
with your desired values.
Create a new provider component and use it instead of the original Root Provider in the root layout.
Inside the new provider, lazy load the dialog and pass it to Root Provider.
'use client' ;
import { RootProvider } from 'styledsea-docs-interface/provider' ;
import dynamic from 'next/dynamic' ;
import type { ReactNode } from 'react' ;
const SearchDialog = dynamic ( () => import ( '@/components/search' )) ;
export function Provider ({ children } : { children : ReactNode }) {
return (
< RootProvider
search = {{
SearchDialog ,
}}
>
{ children }
</ RootProvider >
) ;
}
Note
The built-in implementation doesn't use instant search (their official
javascript client).
Same as the default search client, you can configure Tag Filter on the dialog.
import SearchDialog from 'styledsea-docs-interface/components/dialog/search-algolia' ;
< SearchDialog
defaultTag = "value"
tags = { [
{
name : 'Tag Name' ,
value : 'value' ,
},
] }
/> ;
To use other search solutions such as ElasticSearch, you can replace the
default dialog with your own.
Since you cannot pass a function to client components, wrap the provider in another client component, and use the new provider in your root layout instead.
'use client' ;
import { RootProvider } from 'styledsea-docs-interface/provider' ;
import dynamic from 'next/dynamic' ;
const SearchDialog = dynamic ( () => import ( '@/components/search' )) ;
export function Provider ({ children } : { children : React . ReactNode }) {
return (
< RootProvider
search = {{
SearchDialog ,
}}
>
{ children }
</ RootProvider >
) ;
}
If you want to use the built-in search dialog UI instead of building your own,
you may use the SearchDialog
component.
import {
SearchDialog ,
type SharedProps
} from 'styledsea-docs-interface/components/dialog/search'
export default function CustomSearchDialog ( props : SharedProps ) { ... }
Unstable
It is an internal API, might break during iterations