mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-04 01:28:51 +01:00
* fix: replace string concatenation of localization keys with interpolations and add keys for unlocalized string literals * chore: update test for new localization key --------- Co-authored-by: Danny Avila <danny@librechat.ai>
230 lines
7.1 KiB
TypeScript
230 lines
7.1 KiB
TypeScript
import { useRecoilState } from 'recoil';
|
|
import { useCallback, useEffect, useMemo } from 'react';
|
|
import { useQueryClient } from '@tanstack/react-query';
|
|
import { QueryKeys, isAgentsEndpoint } from 'librechat-data-provider';
|
|
import {
|
|
Input,
|
|
Label,
|
|
OGDialog,
|
|
OGDialogTitle,
|
|
SelectDropDown,
|
|
OGDialogContent,
|
|
} from '@librechat/client';
|
|
import type { TModelsConfig, TEndpointsConfig } from 'librechat-data-provider';
|
|
import {
|
|
cn,
|
|
defaultTextProps,
|
|
removeFocusOutlines,
|
|
mapEndpoints,
|
|
getConvoSwitchLogic,
|
|
} from '~/utils';
|
|
import { useSetIndexOptions, useLocalize, useDebouncedInput } from '~/hooks';
|
|
import PopoverButtons from '~/components/Chat/Input/PopoverButtons';
|
|
import { EndpointSettings } from '~/components/Endpoints';
|
|
import { useGetEndpointsQuery } from '~/data-provider';
|
|
import { useChatContext } from '~/Providers';
|
|
import store from '~/store';
|
|
|
|
const EditPresetDialog = ({
|
|
exportPreset,
|
|
submitPreset,
|
|
}: {
|
|
exportPreset: () => void;
|
|
submitPreset: () => void;
|
|
}) => {
|
|
const localize = useLocalize();
|
|
const queryClient = useQueryClient();
|
|
const { preset, setPreset } = useChatContext();
|
|
const { setOption, setOptions, setAgentOption } = useSetIndexOptions(preset);
|
|
const [onTitleChange, title] = useDebouncedInput({
|
|
setOption,
|
|
optionKey: 'title',
|
|
initialValue: preset?.title,
|
|
});
|
|
const [presetModalVisible, setPresetModalVisible] = useRecoilState(store.presetModalVisible);
|
|
|
|
const { data: _endpoints = [] } = useGetEndpointsQuery({
|
|
select: mapEndpoints,
|
|
});
|
|
|
|
const availableEndpoints = useMemo(() => {
|
|
return _endpoints.filter((endpoint) => !isAgentsEndpoint(endpoint));
|
|
}, [_endpoints]);
|
|
|
|
useEffect(() => {
|
|
if (!preset) {
|
|
return;
|
|
}
|
|
|
|
if (isAgentsEndpoint(preset.endpoint)) {
|
|
return;
|
|
}
|
|
|
|
const presetEndpoint = preset.endpoint ?? '';
|
|
|
|
if (!presetEndpoint) {
|
|
return;
|
|
}
|
|
|
|
const modelsConfig = queryClient.getQueryData<TModelsConfig>([QueryKeys.models]);
|
|
if (!modelsConfig) {
|
|
return;
|
|
}
|
|
|
|
const models = modelsConfig[presetEndpoint] as string[] | undefined;
|
|
if (!models) {
|
|
return;
|
|
}
|
|
if (!models.length) {
|
|
return;
|
|
}
|
|
|
|
if (preset.model === models[0]) {
|
|
return;
|
|
}
|
|
|
|
if (!models.includes(preset.model ?? '')) {
|
|
console.log('setting model', models[0]);
|
|
setOption('model')(models[0]);
|
|
}
|
|
|
|
if (preset.agentOptions?.model === models[0]) {
|
|
return;
|
|
}
|
|
|
|
if (
|
|
preset.agentOptions?.model != null &&
|
|
preset.agentOptions.model &&
|
|
!models.includes(preset.agentOptions.model)
|
|
) {
|
|
console.log('setting agent model', models[0]);
|
|
setAgentOption('model')(models[0]);
|
|
}
|
|
}, [preset, queryClient, setOption, setAgentOption]);
|
|
|
|
const switchEndpoint = useCallback(
|
|
(newEndpoint: string) => {
|
|
if (!setOptions) {
|
|
return console.warn('setOptions is not defined');
|
|
}
|
|
|
|
const { newEndpointType } = getConvoSwitchLogic({
|
|
newEndpoint,
|
|
modularChat: true,
|
|
conversation: null,
|
|
endpointsConfig: queryClient.getQueryData<TEndpointsConfig>([QueryKeys.endpoints]) ?? {},
|
|
});
|
|
|
|
setOptions({
|
|
endpoint: newEndpoint,
|
|
endpointType: newEndpointType,
|
|
});
|
|
},
|
|
[queryClient, setOptions],
|
|
);
|
|
|
|
const handleOpenChange = (open: boolean) => {
|
|
setPresetModalVisible(open);
|
|
if (!open) {
|
|
setPreset(null);
|
|
}
|
|
};
|
|
|
|
const { endpoint: _endpoint, endpointType, model } = preset || {};
|
|
const endpoint = _endpoint ?? '';
|
|
|
|
if (!endpoint) {
|
|
return null;
|
|
}
|
|
|
|
if (isAgentsEndpoint(endpoint)) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<OGDialog open={presetModalVisible} onOpenChange={handleOpenChange}>
|
|
<OGDialogContent className="h-[100dvh] max-h-[100dvh] w-full max-w-full overflow-y-auto bg-white dark:border-gray-700 dark:bg-gray-850 dark:text-gray-300 md:h-auto md:max-h-[90vh] md:max-w-[75vw] md:rounded-lg lg:max-w-[950px]">
|
|
<OGDialogTitle>
|
|
{localize('com_ui_edit_preset_title', { title: preset?.title })}
|
|
</OGDialogTitle>
|
|
|
|
<div className="flex w-full flex-col gap-2 px-1 pb-4 md:gap-4">
|
|
{/* Header section with preset name and endpoint */}
|
|
<div className="grid w-full gap-2 md:grid-cols-2 md:gap-4">
|
|
<div className="flex w-full flex-col">
|
|
<Label htmlFor="preset-name" className="mb-1 text-left text-sm font-medium">
|
|
{localize('com_endpoint_preset_name')}
|
|
</Label>
|
|
<Input
|
|
id="preset-name"
|
|
value={(title as string | undefined) ?? ''}
|
|
onChange={onTitleChange}
|
|
placeholder={localize('com_endpoint_set_custom_name')}
|
|
className={cn(
|
|
defaultTextProps,
|
|
'flex h-10 max-h-10 w-full resize-none px-3 py-2',
|
|
removeFocusOutlines,
|
|
)}
|
|
/>
|
|
</div>
|
|
<div className="flex w-full flex-col">
|
|
<Label htmlFor="endpoint" className="mb-1 text-left text-sm font-medium">
|
|
{localize('com_endpoint')}
|
|
</Label>
|
|
<SelectDropDown
|
|
value={endpoint || ''}
|
|
setValue={switchEndpoint}
|
|
showLabel={false}
|
|
emptyTitle={true}
|
|
searchPlaceholder={localize('com_endpoint_search')}
|
|
availableValues={availableEndpoints}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* PopoverButtons section */}
|
|
<div className="flex w-full">
|
|
<PopoverButtons
|
|
buttonClass="ml-0 w-full border border-border-medium p-2 h-[40px] justify-center mt-0"
|
|
iconClass="hidden lg:block w-4"
|
|
endpoint={endpoint}
|
|
endpointType={endpointType}
|
|
model={model}
|
|
/>
|
|
</div>
|
|
|
|
{/* Separator */}
|
|
<div className="w-full border-t border-border-medium" />
|
|
|
|
{/* Settings section */}
|
|
<div className="w-full flex-1">
|
|
<EndpointSettings
|
|
conversation={preset}
|
|
setOption={setOption}
|
|
isPreset={true}
|
|
className="text-text-primary"
|
|
/>
|
|
</div>
|
|
|
|
{/* Action buttons */}
|
|
<div className="flex justify-end gap-2 border-t border-border-medium pt-2 md:pt-4">
|
|
<button
|
|
onClick={exportPreset}
|
|
className="rounded-md border border-gray-300 bg-white px-3 py-2 text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 dark:border-gray-600 dark:bg-gray-800 dark:text-gray-300 dark:hover:bg-gray-700 md:px-4"
|
|
>
|
|
{localize('com_endpoint_export')}
|
|
</button>
|
|
<button
|
|
onClick={submitPreset}
|
|
className="rounded-md bg-green-500 px-3 py-2 text-sm font-medium text-white hover:bg-green-600 focus:outline-none focus:ring-2 focus:ring-green-500 focus:ring-offset-2 md:px-4"
|
|
>
|
|
{localize('com_ui_save')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</OGDialogContent>
|
|
</OGDialog>
|
|
);
|
|
};
|
|
|
|
export default EditPresetDialog;
|