mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

* fix(TEndpointsConfig): resolve property access issues with typesafe helper function * fix: undefined or null endpoint edge case * refactor(mapEndpoints -> endpoints): renamed module to be more general for endpoint handling, wrote unit tests, export all helpers
63 lines
2.2 KiB
TypeScript
63 lines
2.2 KiB
TypeScript
import { useQueryClient } from '@tanstack/react-query';
|
|
import { useSetRecoilState, useResetRecoilState } from 'recoil';
|
|
import { QueryKeys } from 'librechat-data-provider';
|
|
import type { TConversation, TEndpointsConfig, TModelsConfig } from 'librechat-data-provider';
|
|
import { buildDefaultConvo, getDefaultEndpoint, getEndpointField } from '~/utils';
|
|
import useOriginNavigate from './useOriginNavigate';
|
|
import useSetStorage from './useSetStorage';
|
|
import store from '~/store';
|
|
|
|
const useNavigateToConvo = (index = 0) => {
|
|
const setStorage = useSetStorage();
|
|
const queryClient = useQueryClient();
|
|
const navigate = useOriginNavigate();
|
|
const { setConversation } = store.useCreateConversationAtom(index);
|
|
const setSubmission = useSetRecoilState(store.submissionByIndex(index));
|
|
// const setConversation = useSetRecoilState(store.conversationByIndex(index));
|
|
const resetLatestMessage = useResetRecoilState(store.latestMessageFamily(index));
|
|
|
|
const navigateToConvo = (conversation: TConversation, _resetLatestMessage = true) => {
|
|
if (!conversation) {
|
|
console.log('Conversation not provided');
|
|
return;
|
|
}
|
|
setSubmission(null);
|
|
if (_resetLatestMessage) {
|
|
resetLatestMessage();
|
|
}
|
|
|
|
let convo = { ...conversation };
|
|
if (!convo?.endpoint) {
|
|
/* undefined endpoint edge case */
|
|
const modelsConfig = queryClient.getQueryData<TModelsConfig>([QueryKeys.models]);
|
|
const endpointsConfig = queryClient.getQueryData<TEndpointsConfig>([QueryKeys.endpoints]);
|
|
const defaultEndpoint = getDefaultEndpoint({
|
|
convoSetup: conversation,
|
|
endpointsConfig,
|
|
});
|
|
|
|
const endpointType = getEndpointField(endpointsConfig, defaultEndpoint, 'type');
|
|
if (!conversation.endpointType && endpointType) {
|
|
conversation.endpointType = endpointType;
|
|
}
|
|
|
|
const models = modelsConfig?.[defaultEndpoint ?? ''] ?? [];
|
|
|
|
convo = buildDefaultConvo({
|
|
conversation,
|
|
endpoint: defaultEndpoint,
|
|
lastConversationSetup: conversation,
|
|
models,
|
|
});
|
|
}
|
|
setStorage(convo);
|
|
setConversation(convo);
|
|
navigate(convo?.conversationId);
|
|
};
|
|
|
|
return {
|
|
navigateToConvo,
|
|
};
|
|
};
|
|
|
|
export default useNavigateToConvo;
|