diff --git a/web/src/hooks/knowledge-hooks.ts b/web/src/hooks/knowledge-hooks.ts index 80ae8fdea..f26bfa689 100644 --- a/web/src/hooks/knowledge-hooks.ts +++ b/web/src/hooks/knowledge-hooks.ts @@ -69,7 +69,7 @@ export const useFetchKnowledgeBaseConfiguration = () => { export const useNextFetchKnowledgeList = ( shouldFilterListWithoutDocument: boolean = false, ): { - list: any[]; + list: IKnowledge[]; loading: boolean; } => { const { data, isFetching: loading } = useQuery({ diff --git a/web/src/pages/search/index.less b/web/src/pages/search/index.less new file mode 100644 index 000000000..d92494e46 --- /dev/null +++ b/web/src/pages/search/index.less @@ -0,0 +1,24 @@ +.searchSide { + overflow: auto; + height: 100vh; + position: fixed !important; + inset-inline-start: 0; + top: 0; + bottom: 0; + scrollbar-width: thin; + scrollbar-color: unset; + + .checkGroup { + width: 100%; + height: 100%; + } + .list { + width: 100%; + } + .checkbox { + width: 100%; + } + .knowledgeName { + width: 120px; + } +} diff --git a/web/src/pages/search/index.tsx b/web/src/pages/search/index.tsx index 86fc54ef6..6c2e09e1d 100644 --- a/web/src/pages/search/index.tsx +++ b/web/src/pages/search/index.tsx @@ -1,5 +1,69 @@ +import { useNextFetchKnowledgeList } from '@/hooks/knowledge-hooks'; +import { Checkbox, Layout, List, Typography } from 'antd'; +import React, { useCallback } from 'react'; + +import { CheckboxValueType } from 'antd/es/checkbox/Group'; +import styles from './index.less'; + +const { Header, Content, Footer, Sider } = Layout; + const SearchPage = () => { - return
long content
+ { + // indicates very long content + Array.from({ length: 100 }, (_, index) => ( +