Flexsearch
Built-in document search of Fumadocs
Fumadocs supports searching document based on Flexsearch.
As the built-in search of Fumadocs, It is the default but also recommended option since it's easier to setup and totally free.
If you're using a CMS, you should use the API provided by the CMS instead.
Simple Search
Index with the raw content of document.
Create the Route Handler
Create a Search Dialog
Use the default Search Dialog from Fumadocs UI.
Advanced Search
Returns a more detailed result with matching headings and contents.
It accepts structured data processed from a markdown/MDX document, and index it with Flexsearch. You can extract the structured data using the Structure remark plugin.
It cannot extract content from rehype plugin generated content (remark plugins are supported).
Usage
Same as simple search, but requires the structuredData
property.
Tag Filter
It's useful for implementing versioned docs, or multi-docs similar to this documentation.
For Fumadocs UI, configure Tag Filter.
On your search client, pass a tag to the hook.
Custom Algorithm
You can port your own search algorithm by returning a list of SortedResult
from your custom /api/search/route.ts
api endpoint, and you can integrate it
with Fumadocs UI later.
Prop | Type | Default |
---|---|---|
id | string | - |
url | string | - |
type | "page" | "text" | "heading" | - |
content | string | - |
Internationalization
Use createI18nSearchAPI
for i18n functionality.
Update the route handler.
Add locale
to search dialog, this will only allow pages with specified
locale to be searched by the user.
You can ignore this, Fumadocs UI handles this when you have i18n configured correctly.
Search Client
useDocsSearch
is a hook that combines debounce value and useSWR
.
Return Type
Prop | Type | Description |
---|---|---|
query | SWRResponse | SWR Query |
search | string | Searching text (not debounced) |
setSearch | (v: string) => void | Set searching text |
Response Data
Type | |
---|---|
empty | If the searching text is empty or blank |
SortedResult[] | Array of matching pages, headings and contents. |
Last updated on