2024-04-10 14:27:22 -04:00
|
|
|
import { useMemo, useState } from 'react';
|
|
|
|
|
import { OptionTypes } from 'librechat-data-provider';
|
|
|
|
|
import type { DynamicSettingProps } from 'librechat-data-provider';
|
|
|
|
|
import { Label, HoverCard, HoverCardTrigger, SelectDropDown } from '~/components/ui';
|
|
|
|
|
import { useLocalize, useParameterEffects } from '~/hooks';
|
|
|
|
|
import { useChatContext } from '~/Providers';
|
|
|
|
|
import OptionHover from './OptionHover';
|
|
|
|
|
import { ESide } from '~/common';
|
|
|
|
|
import { cn } from '~/utils';
|
|
|
|
|
|
|
|
|
|
function DynamicDropdown({
|
|
|
|
|
label,
|
|
|
|
|
settingKey,
|
|
|
|
|
defaultValue,
|
|
|
|
|
description,
|
|
|
|
|
columnSpan,
|
|
|
|
|
setOption,
|
|
|
|
|
optionType,
|
|
|
|
|
options,
|
|
|
|
|
// type: _type,
|
|
|
|
|
readonly = false,
|
|
|
|
|
showDefault = true,
|
|
|
|
|
labelCode,
|
|
|
|
|
descriptionCode,
|
2024-04-25 11:40:17 -04:00
|
|
|
conversation,
|
2024-04-10 14:27:22 -04:00
|
|
|
}: DynamicSettingProps) {
|
|
|
|
|
const localize = useLocalize();
|
2024-04-25 11:40:17 -04:00
|
|
|
const { preset } = useChatContext();
|
2024-04-10 14:27:22 -04:00
|
|
|
const [inputValue, setInputValue] = useState<string | null>(null);
|
|
|
|
|
|
|
|
|
|
const selectedValue = useMemo(() => {
|
|
|
|
|
if (optionType === OptionTypes.Custom) {
|
|
|
|
|
// TODO: custom logic, add to payload but not to conversation
|
|
|
|
|
return inputValue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return conversation?.[settingKey] ?? defaultValue;
|
|
|
|
|
}, [conversation, defaultValue, optionType, settingKey, inputValue]);
|
|
|
|
|
|
|
|
|
|
const handleChange = (value: string) => {
|
|
|
|
|
if (optionType === OptionTypes.Custom) {
|
|
|
|
|
// TODO: custom logic, add to payload but not to conversation
|
|
|
|
|
setInputValue(value);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
setOption(settingKey)(value);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
useParameterEffects({
|
|
|
|
|
preset,
|
|
|
|
|
settingKey,
|
|
|
|
|
defaultValue,
|
|
|
|
|
conversation,
|
|
|
|
|
inputValue,
|
|
|
|
|
setInputValue,
|
|
|
|
|
preventDelayedUpdate: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!options || options.length === 0) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
className={cn(
|
|
|
|
|
'flex flex-col items-center justify-start gap-6',
|
|
|
|
|
columnSpan ? `col-span-${columnSpan}` : 'col-span-full',
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<HoverCard openDelay={300}>
|
|
|
|
|
<HoverCardTrigger className="grid w-full items-center gap-2">
|
|
|
|
|
<div className="flex w-full justify-between">
|
|
|
|
|
<Label
|
|
|
|
|
htmlFor={`${settingKey}-dynamic-dropdown`}
|
|
|
|
|
className="text-left text-sm font-medium"
|
|
|
|
|
>
|
|
|
|
|
{labelCode ? localize(label ?? '') || label : label ?? settingKey}
|
|
|
|
|
{showDefault && (
|
|
|
|
|
<small className="opacity-40">
|
|
|
|
|
({localize('com_endpoint_default')}: {defaultValue})
|
|
|
|
|
</small>
|
|
|
|
|
)}
|
|
|
|
|
</Label>
|
|
|
|
|
</div>
|
|
|
|
|
<SelectDropDown
|
|
|
|
|
showLabel={false}
|
|
|
|
|
emptyTitle={true}
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={selectedValue}
|
|
|
|
|
setValue={handleChange}
|
|
|
|
|
availableValues={options}
|
|
|
|
|
containerClassName="w-full"
|
|
|
|
|
id={`${settingKey}-dynamic-dropdown`}
|
|
|
|
|
/>
|
|
|
|
|
</HoverCardTrigger>
|
|
|
|
|
{description && (
|
|
|
|
|
<OptionHover
|
|
|
|
|
description={descriptionCode ? localize(description) || description : description}
|
|
|
|
|
side={ESide.Left}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</HoverCard>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default DynamicDropdown;
|