Skip to content

Commit

Permalink
fix: knowledge input (langgenius#8065)
Browse files Browse the repository at this point in the history
  • Loading branch information
crazywoola authored and cuiks committed Sep 26, 2024
1 parent d365706 commit 9295806
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions web/app/components/datasets/documents/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ import React, { useMemo, useState } from 'react'
import useSWR from 'swr'
import { useTranslation } from 'react-i18next'
import { useRouter } from 'next/navigation'
import { debounce, groupBy, omit } from 'lodash-es'
import { groupBy, omit } from 'lodash-es'
import { PlusIcon } from '@heroicons/react/24/solid'
import { useDebounce } from 'ahooks'
import List from './list'
import s from './style.module.css'
import Loading from '@/app/components/base/loading'
Expand Down Expand Up @@ -87,9 +88,11 @@ const Documents: FC<IDocumentsProps> = ({ datasetId }) => {
const isDataSourceFile = dataset?.data_source_type === DataSourceType.FILE
const embeddingAvailable = !!dataset?.embedding_available

const debouncedSearchValue = useDebounce(searchValue, { wait: 500 })

const query = useMemo(() => {
return { page: currPage + 1, limit, keyword: searchValue, fetch: isDataSourceNotion ? true : '' }
}, [searchValue, currPage, isDataSourceNotion])
return { page: currPage + 1, limit, keyword: debouncedSearchValue, fetch: isDataSourceNotion ? true : '' }
}, [currPage, debouncedSearchValue, isDataSourceNotion])

const { data: documentsRes, error, mutate } = useSWR(
{
Expand Down Expand Up @@ -204,7 +207,7 @@ const Documents: FC<IDocumentsProps> = ({ datasetId }) => {
showLeftIcon
wrapperClassName='!w-[200px]'
className='!h-8 !text-[13px]'
onChange={debounce(e => setSearchValue(e.target.value), 500)}
onChange={e => setSearchValue(e.target.value)}
value={searchValue}
/>
<div className='flex gap-2 justify-center items-center !h-8'>
Expand Down

0 comments on commit 9295806

Please sign in to comment.