Mixedbread
Using Mixedbread with Fumadocs UI.
Setup
-
Integrate Mixedbread Search.
-
Create a search dialog, update
apiKeyandstoreIdentifierwith your desired values.components/search.tsx 'use client'; import { SearchDialog, SearchDialogClose, SearchDialogContent, SearchDialogFooter, SearchDialogHeader, SearchDialogIcon, SearchDialogInput, SearchDialogList, SearchDialogOverlay, type SharedProps, } from 'fumadocs-ui/components/dialog/search'; import { useDocsSearch } from 'fumadocs-core/search/client'; import { useI18n } from 'fumadocs-ui/contexts/i18n'; import Mixedbread from '@mixedbread/sdk'; const client = new Mixedbread({ apiKey: 'mxb_xxxx', baseURL: 'https://api.example.com', // Optional, defaults to https://api.mixedbread.com }); export default function CustomSearchDialog(props: SharedProps) { const { locale } = useI18n(); // (optional) for i18n const { search, setSearch, query } = useDocsSearch({ type: 'mixedbread', client, storeIdentifier: 'your_store_identifier', locale, }); return ( <SearchDialog search={search} onSearchChange={setSearch} isLoading={query.isLoading} {...props}> <SearchDialogOverlay /> <SearchDialogContent> <SearchDialogHeader> <SearchDialogIcon /> <SearchDialogInput /> <SearchDialogClose /> </SearchDialogHeader> <SearchDialogList items={query.data !== 'empty' ? query.data : null} /> <SearchDialogFooter> <a href="https://mixedbread.com" rel="noreferrer noopener" className="ms-auto text-xs text-fd-muted-foreground" > Search powered by Mixedbread </a> </SearchDialogFooter> </SearchDialogContent> </SearchDialog> ); }
Replace Search Dialog
Replace the search dialog with yours from <RootProvider />:
import { RootProvider } from 'fumadocs-ui/provider/<framework>';
import SearchDialog from '@/components/search';
<RootProvider
search={{
SearchDialog,
}}
>
{children}
</RootProvider>;If it was in a server component, you would need a separate client component for provider to pass functions:
'use client';
import { RootProvider } from 'fumadocs-ui/provider/<framework>';
import SearchDialog from '@/components/search';
import type { ReactNode } from 'react';
export function Provider({ children }: { children: ReactNode }) {
return (
<RootProvider
search={{
SearchDialog,
}}
>
{children}
</RootProvider>
);
}Tag Filter
Optionally, you can add UI for filtering results by tags. Configure Tag Filter on search server and add the following:
'use client';
import {
SearchDialog,
SearchDialogContent,
SearchDialogFooter,
SearchDialogOverlay,
type SharedProps,
TagsList,
TagsListItem,
} from 'fumadocs-ui/components/dialog/search';
import { useState } from 'react';
import { useDocsSearch } from 'fumadocs-core/search/client';
export default function CustomSearchDialog(props: SharedProps) {
const [tag, setTag] = useState<string | undefined>();
const { search, setSearch, query } = useDocsSearch({
tag,
// other options depending on your search engine
});
return (
<SearchDialog>
<SearchDialogOverlay />
<SearchDialogContent>
...
<SearchDialogFooter className="flex flex-row">
<TagsList tag={tag} onTagChange={setTag}>
<TagsListItem value="my-value">My Value</TagsListItem>
</TagsList>
</SearchDialogFooter>
</SearchDialogContent>
</SearchDialog>
);
}How is this guide?
Last updated on
