mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-27 04:44:10 +01:00
128 lines
4.7 KiB
TypeScript
128 lines
4.7 KiB
TypeScript
|
|
import React, { useState, useId } from 'react';
|
||
|
|
import { PlusCircle } from 'lucide-react';
|
||
|
|
import * as Menu from '@ariakit/react/menu';
|
||
|
|
import { specialVariables } from 'librechat-data-provider';
|
||
|
|
import type { TSpecialVarLabel } from 'librechat-data-provider';
|
||
|
|
import { Controller, useFormContext } from 'react-hook-form';
|
||
|
|
import type { AgentForm } from '~/common';
|
||
|
|
import { cn, defaultTextProps, removeFocusOutlines } from '~/utils';
|
||
|
|
// import ControlCombobox from '~/components/ui/ControlCombobox';
|
||
|
|
import { DropdownPopup } from '~/components';
|
||
|
|
import { useLocalize } from '~/hooks';
|
||
|
|
|
||
|
|
const inputClass = cn(
|
||
|
|
defaultTextProps,
|
||
|
|
'flex w-full px-3 py-2 border-border-light bg-surface-secondary focus-visible:ring-2 focus-visible:ring-ring-primary',
|
||
|
|
removeFocusOutlines,
|
||
|
|
);
|
||
|
|
|
||
|
|
interface VariableOption {
|
||
|
|
label: TSpecialVarLabel;
|
||
|
|
value: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
const variableOptions: VariableOption[] = Object.keys(specialVariables).map((key) => ({
|
||
|
|
label: `com_ui_special_var_${key}` as TSpecialVarLabel,
|
||
|
|
value: `{{${key}}}`,
|
||
|
|
}));
|
||
|
|
|
||
|
|
export default function Instructions() {
|
||
|
|
const menuId = useId();
|
||
|
|
const localize = useLocalize();
|
||
|
|
const methods = useFormContext<AgentForm>();
|
||
|
|
const { control, setValue, getValues } = methods;
|
||
|
|
|
||
|
|
const [isMenuOpen, setIsMenuOpen] = useState(false);
|
||
|
|
|
||
|
|
const handleAddVariable = (label: TSpecialVarLabel, value: string) => {
|
||
|
|
const currentInstructions = getValues('instructions') || '';
|
||
|
|
const spacer = currentInstructions.length > 0 ? '\n' : '';
|
||
|
|
const prefix = localize(label);
|
||
|
|
setValue('instructions', currentInstructions + spacer + prefix + ': ' + value);
|
||
|
|
setIsMenuOpen(false);
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="mb-4">
|
||
|
|
<div className="mb-2 flex items-center">
|
||
|
|
<label className="text-token-text-primary flex-grow font-medium" htmlFor="instructions">
|
||
|
|
{localize('com_ui_instructions')}
|
||
|
|
</label>
|
||
|
|
<div className="ml-auto" title="Add variables to instructions">
|
||
|
|
{/* ControlCombobox implementation
|
||
|
|
<ControlCombobox
|
||
|
|
selectedValue=""
|
||
|
|
displayValue="Add variables"
|
||
|
|
items={variableOptions.map((option) => ({
|
||
|
|
label: option.label,
|
||
|
|
value: option.value,
|
||
|
|
}))}
|
||
|
|
setValue={handleAddVariable}
|
||
|
|
ariaLabel="Add variable to instructions"
|
||
|
|
searchPlaceholder="Search variables"
|
||
|
|
selectPlaceholder="Add"
|
||
|
|
isCollapsed={false}
|
||
|
|
SelectIcon={<PlusCircle className="h-3 w-3 text-text-secondary" />}
|
||
|
|
containerClassName="w-fit"
|
||
|
|
className="h-7 gap-1 rounded-md border border-border-medium bg-surface-secondary px-2 py-0 text-sm text-text-primary transition-colors duration-200 hover:bg-surface-tertiary"
|
||
|
|
iconSide="left"
|
||
|
|
showCarat={false}
|
||
|
|
/>
|
||
|
|
*/}
|
||
|
|
<DropdownPopup
|
||
|
|
portal={true}
|
||
|
|
mountByState={true}
|
||
|
|
unmountOnHide={true}
|
||
|
|
preserveTabOrder={true}
|
||
|
|
isOpen={isMenuOpen}
|
||
|
|
setIsOpen={setIsMenuOpen}
|
||
|
|
trigger={
|
||
|
|
<Menu.MenuButton
|
||
|
|
id="variables-menu-button"
|
||
|
|
aria-label="Add variable to instructions"
|
||
|
|
className="flex h-7 items-center gap-1 rounded-md border border-border-medium bg-surface-secondary px-2 py-0 text-sm text-text-primary transition-colors duration-200 hover:bg-surface-tertiary"
|
||
|
|
>
|
||
|
|
<PlusCircle className="mr-1 h-3 w-3 text-text-secondary" aria-hidden={true} />
|
||
|
|
{localize('com_ui_variables')}
|
||
|
|
</Menu.MenuButton>
|
||
|
|
}
|
||
|
|
items={variableOptions.map((option) => ({
|
||
|
|
label: localize(option.label) || option.label,
|
||
|
|
onClick: () => handleAddVariable(option.label, option.value),
|
||
|
|
}))}
|
||
|
|
menuId={menuId}
|
||
|
|
className="z-30"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<Controller
|
||
|
|
name="instructions"
|
||
|
|
control={control}
|
||
|
|
render={({ field, fieldState: { error } }) => (
|
||
|
|
<>
|
||
|
|
<textarea
|
||
|
|
{...field}
|
||
|
|
value={field.value ?? ''}
|
||
|
|
className={cn(inputClass, 'min-h-[100px] resize-y')}
|
||
|
|
id="instructions"
|
||
|
|
placeholder={localize('com_agents_instructions_placeholder')}
|
||
|
|
rows={3}
|
||
|
|
aria-label="Agent instructions"
|
||
|
|
aria-required="true"
|
||
|
|
aria-invalid={error ? 'true' : 'false'}
|
||
|
|
/>
|
||
|
|
{error && (
|
||
|
|
<span
|
||
|
|
className="text-sm text-red-500 transition duration-300 ease-in-out"
|
||
|
|
role="alert"
|
||
|
|
>
|
||
|
|
{localize('com_ui_field_required')}
|
||
|
|
</span>
|
||
|
|
)}
|
||
|
|
</>
|
||
|
|
)}
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|