mirror of
https://github.com/basketikun/infinite-canvas.git
synced 2026-07-24 15:24:06 +08:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
'use client';
|
|
import {
|
|
SearchDialog,
|
|
SearchDialogClose,
|
|
SearchDialogContent,
|
|
SearchDialogHeader,
|
|
SearchDialogIcon,
|
|
SearchDialogInput,
|
|
SearchDialogList,
|
|
SearchDialogOverlay,
|
|
type SharedProps,
|
|
} from 'fumadocs-ui/components/dialog/search';
|
|
import { useDocsSearch } from 'fumadocs-core/search/client';
|
|
import { create } from '@orama/orama';
|
|
import { useI18n } from 'fumadocs-ui/contexts/i18n';
|
|
import { createDocsSearchTokenizer } from '@/lib/search-tokenizer';
|
|
|
|
function initOrama() {
|
|
return create({
|
|
schema: { _: 'string' },
|
|
components: {
|
|
tokenizer: createDocsSearchTokenizer(),
|
|
},
|
|
});
|
|
}
|
|
|
|
export default function DefaultSearchDialog(props: SharedProps) {
|
|
const { locale } = useI18n(); // (optional) for i18n
|
|
const { search, setSearch, query } = useDocsSearch({
|
|
type: 'static',
|
|
initOrama,
|
|
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} />
|
|
</SearchDialogContent>
|
|
</SearchDialog>
|
|
);
|
|
}
|