| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- import { Authorization } from '@/constants/authorization';
- import { LanguageTranslationMap } from '@/constants/common';
- import { Pagination } from '@/interfaces/common';
- import { ResponseType } from '@/interfaces/database/base';
- import { IAnswer } from '@/interfaces/database/chat';
- import { IKnowledgeFile } from '@/interfaces/database/knowledge';
- import { IChangeParserConfigRequestBody } from '@/interfaces/request/document';
- import api from '@/utils/api';
- import { getAuthorization } from '@/utils/authorization-util';
- import { PaginationProps } from 'antd';
- import { FormInstance } from 'antd/lib';
- import axios from 'axios';
- import { EventSourceParserStream } from 'eventsource-parser/stream';
- import {
- ChangeEventHandler,
- useCallback,
- useEffect,
- useMemo,
- useRef,
- useState,
- } from 'react';
- import { useTranslation } from 'react-i18next';
- import { useDispatch } from 'umi';
- import { useSetModalState, useTranslate } from './common-hooks';
- import { useSetDocumentParser } from './document-hooks';
- import { useSetPaginationParams } from './route-hook';
- import { useOneNamespaceEffectsLoading } from './store-hooks';
- import { useFetchTenantInfo, useSaveSetting } from './user-setting-hooks';
-
- export const useChangeDocumentParser = (documentId: string) => {
- const setDocumentParser = useSetDocumentParser();
-
- const {
- visible: changeParserVisible,
- hideModal: hideChangeParserModal,
- showModal: showChangeParserModal,
- } = useSetModalState();
- const loading = useOneNamespaceEffectsLoading('kFModel', [
- 'document_change_parser',
- ]);
-
- const onChangeParserOk = useCallback(
- async (parserId: string, parserConfig: IChangeParserConfigRequestBody) => {
- const ret = await setDocumentParser(parserId, documentId, parserConfig);
- if (ret === 0) {
- hideChangeParserModal();
- }
- },
- [hideChangeParserModal, setDocumentParser, documentId],
- );
-
- return {
- changeParserLoading: loading,
- onChangeParserOk,
- changeParserVisible,
- hideChangeParserModal,
- showChangeParserModal,
- };
- };
-
- export const useSetSelectedRecord = <T = IKnowledgeFile>() => {
- const [currentRecord, setCurrentRecord] = useState<T>({} as T);
-
- const setRecord = (record: T) => {
- setCurrentRecord(record);
- };
-
- return { currentRecord, setRecord };
- };
-
- export const useHandleSearchChange = () => {
- const [searchString, setSearchString] = useState('');
-
- const handleInputChange = useCallback(
- (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
- const value = e.target.value;
- setSearchString(value);
- },
- [],
- );
-
- return { handleInputChange, searchString };
- };
-
- export const useChangeLanguage = () => {
- const { i18n } = useTranslation();
- const { saveSetting } = useSaveSetting();
-
- const changeLanguage = (lng: string) => {
- i18n.changeLanguage(
- LanguageTranslationMap[lng as keyof typeof LanguageTranslationMap],
- );
- saveSetting({ language: lng });
- };
-
- return changeLanguage;
- };
-
- export const useGetPaginationWithRouter = () => {
- const { t } = useTranslate('common');
- const {
- setPaginationParams,
- page,
- size: pageSize,
- } = useSetPaginationParams();
-
- const onPageChange: PaginationProps['onChange'] = useCallback(
- (pageNumber: number, pageSize: number) => {
- setPaginationParams(pageNumber, pageSize);
- },
- [setPaginationParams],
- );
-
- const setCurrentPagination = useCallback(
- (pagination: { page: number; pageSize?: number }) => {
- setPaginationParams(pagination.page, pagination.pageSize);
- },
- [setPaginationParams],
- );
-
- const pagination: PaginationProps = useMemo(() => {
- return {
- showQuickJumper: true,
- total: 0,
- showSizeChanger: true,
- current: page,
- pageSize: pageSize,
- pageSizeOptions: [1, 2, 10, 20, 50, 100],
- onChange: onPageChange,
- showTotal: (total) => `${t('total')} ${total}`,
- };
- }, [t, onPageChange, page, pageSize]);
-
- return {
- pagination,
- setPagination: setCurrentPagination,
- };
- };
-
- export const useGetPagination = () => {
- const [pagination, setPagination] = useState({ page: 1, pageSize: 10 });
- const { t } = useTranslate('common');
-
- const onPageChange: PaginationProps['onChange'] = useCallback(
- (pageNumber: number, pageSize: number) => {
- setPagination({ page: pageNumber, pageSize });
- },
- [],
- );
-
- const currentPagination: PaginationProps = useMemo(() => {
- return {
- showQuickJumper: true,
- total: 0,
- showSizeChanger: true,
- current: pagination.page,
- pageSize: pagination.pageSize,
- pageSizeOptions: [1, 2, 10, 20, 50, 100],
- onChange: onPageChange,
- showTotal: (total) => `${t('total')} ${total}`,
- };
- }, [t, onPageChange, pagination]);
-
- return {
- pagination: currentPagination,
- };
- };
-
- export const useSetPagination = (namespace: string) => {
- const dispatch = useDispatch();
-
- const setPagination = useCallback(
- (pageNumber = 1, pageSize?: number) => {
- const pagination: Pagination = {
- current: pageNumber,
- } as Pagination;
- if (pageSize) {
- pagination.pageSize = pageSize;
- }
- dispatch({
- type: `${namespace}/setPagination`,
- payload: pagination,
- });
- },
- [dispatch, namespace],
- );
-
- return setPagination;
- };
-
- export interface AppConf {
- appName: string;
- }
-
- export const useFetchAppConf = () => {
- const [appConf, setAppConf] = useState<AppConf>({} as AppConf);
- const fetchAppConf = useCallback(async () => {
- const ret = await axios.get('/conf.json');
-
- setAppConf(ret.data);
- }, []);
-
- useEffect(() => {
- fetchAppConf();
- }, [fetchAppConf]);
-
- return appConf;
- };
-
- export const useSendMessageWithSse = (
- url: string = api.completeConversation,
- ) => {
- const [answer, setAnswer] = useState<IAnswer>({} as IAnswer);
- const [done, setDone] = useState(true);
-
- const send = useCallback(
- async (
- body: any,
- ): Promise<{ response: Response; data: ResponseType } | undefined> => {
- try {
- setDone(false);
- const response = await fetch(url, {
- method: 'POST',
- headers: {
- [Authorization]: getAuthorization(),
- 'Content-Type': 'application/json',
- },
- body: JSON.stringify(body),
- });
-
- const res = response.clone().json();
-
- const reader = response?.body
- ?.pipeThrough(new TextDecoderStream())
- .pipeThrough(new EventSourceParserStream())
- .getReader();
-
- while (true) {
- const x = await reader?.read();
- if (x) {
- const { done, value } = x;
- try {
- const val = JSON.parse(value?.data || '');
- const d = val?.data;
- if (typeof d !== 'boolean') {
- console.info('data:', d);
- setAnswer({
- ...d,
- conversationId: body?.conversation_id,
- });
- }
- } catch (e) {
- console.warn(e);
- }
- if (done) {
- console.info('done');
- break;
- }
- }
- }
- console.info('done?');
- setDone(true);
- return { data: await res, response };
- } catch (e) {
- setDone(true);
- console.warn(e);
- }
- },
- [url],
- );
-
- return { send, answer, done, setDone };
- };
-
- //#region chat hooks
-
- export const useScrollToBottom = (messages?: unknown) => {
- const ref = useRef<HTMLDivElement>(null);
-
- const scrollToBottom = useCallback(() => {
- if (messages) {
- ref.current?.scrollIntoView({ behavior: 'instant' });
- }
- }, [messages]); // If the message changes, scroll to the bottom
-
- useEffect(() => {
- scrollToBottom();
- }, [scrollToBottom]);
-
- return ref;
- };
-
- export const useHandleMessageInputChange = () => {
- const [value, setValue] = useState('');
-
- const handleInputChange: ChangeEventHandler<HTMLInputElement> = (e) => {
- const value = e.target.value;
- const nextValue = value.replaceAll('\\n', '\n').replaceAll('\\t', '\t');
- setValue(nextValue);
- };
-
- return {
- handleInputChange,
- value,
- setValue,
- };
- };
-
- // #endregion
-
- /**
- *
- * @param defaultId
- * used to switch between different items, similar to radio
- * @returns
- */
- export const useSelectItem = (defaultId?: string) => {
- const [selectedId, setSelectedId] = useState('');
-
- const handleItemClick = useCallback(
- (id: string) => () => {
- setSelectedId(id);
- },
- [],
- );
-
- useEffect(() => {
- if (defaultId) {
- setSelectedId(defaultId);
- }
- }, [defaultId]);
-
- return { selectedId, handleItemClick };
- };
-
- export const useFetchModelId = () => {
- const { data: tenantInfo } = useFetchTenantInfo();
-
- return tenantInfo?.llm_id ?? '';
- };
-
- const ChunkTokenNumMap = {
- naive: 128,
- knowledge_graph: 8192,
- };
-
- export const useHandleChunkMethodSelectChange = (form: FormInstance) => {
- // const form = Form.useFormInstance();
- const handleChange = useCallback(
- (value: string) => {
- if (value in ChunkTokenNumMap) {
- form.setFieldValue(
- ['parser_config', 'chunk_token_num'],
- ChunkTokenNumMap[value as keyof typeof ChunkTokenNumMap],
- );
- }
- },
- [form],
- );
-
- return handleChange;
- };
|