mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-12 05:28:51 +01:00
* feat: init @librechat/client * feat: Add common types and interfaces for accessibility, agents, artifacts, assistants, and tools * feat: Add jotai as a peer dependency * fix build client package * feat: cleanup unused types from common/index.ts - Remove 104 unused type exports from packages/client/src/common/index.ts - Keep only 7 actually used exports (93% reduction) - Add cleanup script with enhanced import pattern detection - Support both named imports and namespace imports (* as t) - Create automatic backups and comprehensive documentation - Maintain type safety with build verification - No breaking changes to existing code Kept exports: - TShowToast, Option, OptionWithIcon, DropdownValueSetter - MentionOption, NotificationSeverity, MenuItemProps Scripts: cleanup-common-types-safe.js, README-CLEANUP.md * fix: cleanup * fix: package; refactor: tsconfig * feat: add back `recoil` * fix: move dependencies to peerDependencies in client package * feat: add @librechat/client as a dependency in package.json and package-lock.json * feat: update client package configuration and dependencies - Added new dependencies for Rollup plugins and updated existing ones in package.json and package-lock.json. - Introduced a new Rollup configuration file for building the client package. - Refactored build scripts to include a dedicated build command for the client. - Updated TypeScript configuration for improved module resolution and type declaration output. - Integrated a Toast component from the client package into the main App component. * feat: enhance Rollup configuration for client package - Updated terser plugin settings to preserve directives like 'use client'. - Added custom warning handler to ignore "use client" directive warnings during the build process. * chore: rename package/client build script command * feat: update client package dependencies and Rollup configuration - Added rollup-plugin-postcss to package.json and updated package-lock.json. - Enhanced Rollup configuration to include postcss plugin for CSS handling. - Updated index.ts to export all components from the components directory for better modularity. * feat: add client package directory to update configuration - Included the 'client' package directory in the update.js configuration to ensure it is recognized during updates. * feat: export Toast component in client package - Added export for the Toast component in index.ts to enhance modularity and accessibility of components. * feat: /client transition to @librechat/client * chore: fixed formatting issues * fix: update peer dependencies in @librechat/client to prevent bundling them * fix: correct useSprings implementation in SplitText component * fix: circular dependencies in DataTable * fix: add remaining peer dependencies and match actual versions previously used in `client/package.json` * fix: correct frontend:ci script to include client package build * chore: enhance unused package detection for @librechat/client and improve dependency extraction * fix: add missing peer dependency for @radix-ui/react-collapsible * chore: include "packages/client" in unused i18next keys detection * test: update AgentFooter tests to use document.querySelector for spinner checks test: mock window.matchMedia in setupTests.js for consistent test environment * feat: add react-hook-form dependency and update FormInput component to use its types * chore: linting * refactor: remove unused defaultSelectedValues prop from MCPSelect and MultiSelect components * chore: linting * feat: update GitHub Actions workflow to publish @librechat/client * chore: update GitHub Actions workflow to install and build data-provider and client dependencies * chore: add missing @testing-library/react dependency to client package * chore: update tsconfig.json to exclude additional test files * chore: fix build issues, resolve latest LC changes * chore: move MCP components outside of `~/components/ui` * feat: implement dynamic theme system with environment variable support and Tailwind CSS integration * chore: remove unnecessary logging of sttExternal and ttsExternal in Speech component * chore: squashed cleanup commits chore: move @tanstack/react-virtual to dependencies and remove recoil from package.json chore: move dependencies to peerDependencies in package.json feat: update package.json and rollup.config.js to include jotai and enhance bundling configuration feat: update package.json and rollup.config.js to include jotai and enhance bundling configuration refactor: reorganize exports in index.ts for improved clarity refactor: remove unused types and interfaces from common files refactor: update peer dependencies and improve component typings - Removed duplicate peer dependencies from package.json and organized them. - Updated rollup.config.js to disable TypeScript checking during the build process. - Modified AnimatedTabs component to use React.ReactNode for label and content types, and added TypeScript workarounds for compatibility. - Enhanced Label and Separator components to accept an optional className prop and improved prop spreading. - Updated Slider component to include an optional className prop and refined prop handling for better type safety. refactor: clean up client workflow and update package dependencies refactor: update package dependencies and improve PostCSS and Rollup configurations chore: bump version to 0.1.2 in package.json chore: bump client version to 0.1.2 in package-lock.json chore: bump client version to 0.1.3 and update dependencies chore: bump client version to 0.1.4 and update @react-spring dependencies chore: update package version to 0.1.5 and adjust peer dependencies - Bump version in package.json from 0.1.4 to 0.1.5. - Update peer dependency for @tanstack/react-query to allow version 5.0.0. - Add @tanstack/react-table and @tanstack/react-virtual as dependencies. - Update various dependencies to their latest compatible versions. - Simplify postcss.config.js by removing unnecessary options. - Clean up rollup.config.js by removing ignored PostCSS warnings. - Update CheckboxButton component to cast icon as React JSX element. - Adjust Combobox component's class names for better styling. - Change DropdownPopup component to use React's namespace import. - Modify InputOTP component to use 'any' type for OTPInputContext. - Ensure displayLabel and value in ModelParameters are converted to strings. - Update MultiSearch component's placeholder to ensure it's a string. - Cast selectIcon in MultiSelect as React JSX element for consistency. - Update OGDialogTemplate to cast selectText as React JSX element. - Initialize animationRef in PixelCard with undefined for clarity. - Add TypeScript ignore comments in Select and SelectDropDown components for Radix UI type conflicts. - Ensure title in SelectDropDown is a string and adjust rendering of options. - Update useLocalize hook to cast options as any for compatibility. refactor: code structure; chore: translations cleanup chore: remove unused imports and clean up code in NewChat component refactor: enhance Menu component to support custom render functions for menu items style: update itemClassName in ToolsDropdown for improved UI consistency fix: merge conflicts chore: update @radix-ui/react-accordion to version 1.2.11 * refactor: remove unnecessary TypeScript type assertions in AnimatedTabs, Label, Separator, and Slider components * feat: enhance theme system with localStorage persistence and new theme atoms * chore: bump version of @librechat/client to 0.1.7 * chore: fix ci/cd warnings/errors related to linting and unused localization keys * chore: update dependencies for class-variance-authority, clsx, and match-sorter * chore: bump @librechat/client to v0.1.8 * feat: add utility colors for theme customization and remove unused tailwindConfig * v0.1.9 --------- Co-authored-by: Marco Beretta <81851188+berry-13@users.noreply.github.com>
410 lines
18 KiB
TypeScript
410 lines
18 KiB
TypeScript
import React, { useState } from 'react';
|
|
import * as Ariakit from '@ariakit/react';
|
|
import { ChevronDown } from 'lucide-react';
|
|
import { useFormContext } from 'react-hook-form';
|
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
import { useUpdateUserPluginsMutation } from 'librechat-data-provider/react-query';
|
|
import {
|
|
Accordion,
|
|
AccordionItem,
|
|
AccordionContent,
|
|
TrashIcon,
|
|
CircleHelpIcon,
|
|
OGDialog,
|
|
OGDialogTrigger,
|
|
Label,
|
|
Checkbox,
|
|
OGDialogTemplate,
|
|
useToastContext,
|
|
} from '@librechat/client';
|
|
import type { AgentToolType } from 'librechat-data-provider';
|
|
import type { AgentForm } from '~/common';
|
|
import { useLocalize } from '~/hooks';
|
|
import { cn } from '~/utils';
|
|
|
|
export default function AgentTool({
|
|
tool,
|
|
allTools,
|
|
}: {
|
|
tool: string;
|
|
allTools?: Record<string, AgentToolType & { tools?: AgentToolType[] }>;
|
|
agent_id?: string;
|
|
}) {
|
|
const [isHovering, setIsHovering] = useState(false);
|
|
const [isFocused, setIsFocused] = useState(false);
|
|
const [hoveredToolId, setHoveredToolId] = useState<string | null>(null);
|
|
const [accordionValue, setAccordionValue] = useState<string>('');
|
|
const localize = useLocalize();
|
|
const { showToast } = useToastContext();
|
|
const updateUserPlugins = useUpdateUserPluginsMutation();
|
|
const { getValues, setValue } = useFormContext<AgentForm>();
|
|
if (!allTools) {
|
|
return null;
|
|
}
|
|
const currentTool = allTools[tool];
|
|
const getSelectedTools = () => {
|
|
if (!currentTool?.tools) return [];
|
|
const formTools = getValues('tools') || [];
|
|
return currentTool.tools.filter((t) => formTools.includes(t.tool_id)).map((t) => t.tool_id);
|
|
};
|
|
|
|
const updateFormTools = (newSelectedTools: string[]) => {
|
|
const currentTools = getValues('tools') || [];
|
|
const otherTools = currentTools.filter(
|
|
(t: string) => !currentTool?.tools?.some((st) => st.tool_id === t),
|
|
);
|
|
setValue('tools', [...otherTools, ...newSelectedTools]);
|
|
};
|
|
|
|
const removeTool = (toolId: string) => {
|
|
if (toolId) {
|
|
const toolIdsToRemove =
|
|
isGroup && currentTool.tools
|
|
? [toolId, ...currentTool.tools.map((t) => t.tool_id)]
|
|
: [toolId];
|
|
|
|
updateUserPlugins.mutate(
|
|
{ pluginKey: toolId, action: 'uninstall', auth: {}, isEntityTool: true },
|
|
{
|
|
onError: (error: unknown) => {
|
|
showToast({ message: `Error while deleting the tool: ${error}`, status: 'error' });
|
|
},
|
|
onSuccess: () => {
|
|
const remainingToolIds = getValues('tools')?.filter(
|
|
(toolId: string) => !toolIdsToRemove.includes(toolId),
|
|
);
|
|
setValue('tools', remainingToolIds);
|
|
showToast({ message: 'Tool deleted successfully', status: 'success' });
|
|
},
|
|
},
|
|
);
|
|
}
|
|
};
|
|
|
|
if (!currentTool) {
|
|
return null;
|
|
}
|
|
|
|
const isGroup = currentTool.tools && currentTool.tools.length > 0;
|
|
const selectedTools = getSelectedTools();
|
|
const isExpanded = accordionValue === currentTool.tool_id;
|
|
|
|
if (!isGroup) {
|
|
return (
|
|
<OGDialog>
|
|
<div
|
|
className="group relative flex w-full items-center gap-1 rounded-lg p-1 text-sm hover:bg-gray-50 dark:hover:bg-gray-800/50"
|
|
onMouseEnter={() => setIsHovering(true)}
|
|
onMouseLeave={() => setIsHovering(false)}
|
|
onFocus={() => setIsFocused(true)}
|
|
onBlur={(e) => {
|
|
// Check if focus is moving to a child element
|
|
if (!e.currentTarget.contains(e.relatedTarget)) {
|
|
setIsFocused(false);
|
|
}
|
|
}}
|
|
>
|
|
<div className="flex grow items-center">
|
|
{currentTool.metadata.icon && (
|
|
<div className="flex h-8 w-8 items-center justify-center overflow-hidden rounded-full">
|
|
<div
|
|
className="flex h-6 w-6 items-center justify-center overflow-hidden rounded-full bg-center bg-no-repeat dark:bg-white/20"
|
|
style={{
|
|
backgroundImage: `url(${currentTool.metadata.icon})`,
|
|
backgroundSize: 'cover',
|
|
}}
|
|
/>
|
|
</div>
|
|
)}
|
|
<div
|
|
className="grow px-2 py-1.5"
|
|
style={{ textOverflow: 'ellipsis', wordBreak: 'break-all', overflow: 'hidden' }}
|
|
>
|
|
{currentTool.metadata.name}
|
|
</div>
|
|
</div>
|
|
|
|
<OGDialogTrigger asChild>
|
|
<button
|
|
type="button"
|
|
className={cn(
|
|
'flex h-7 w-7 items-center justify-center rounded transition-all duration-200',
|
|
'hover:bg-gray-200 dark:hover:bg-gray-700',
|
|
'focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-1',
|
|
'focus:opacity-100',
|
|
isHovering || isFocused ? 'opacity-100' : 'pointer-events-none opacity-0',
|
|
)}
|
|
aria-label={`Delete ${currentTool.metadata.name}`}
|
|
tabIndex={0}
|
|
onFocus={() => setIsFocused(true)}
|
|
>
|
|
<TrashIcon className="h-4 w-4" />
|
|
</button>
|
|
</OGDialogTrigger>
|
|
</div>
|
|
<OGDialogTemplate
|
|
showCloseButton={false}
|
|
title={localize('com_ui_delete_tool')}
|
|
mainClassName="px-0"
|
|
className="max-w-[450px]"
|
|
main={
|
|
<Label className="text-left text-sm font-medium">
|
|
{localize('com_ui_delete_tool_confirm')}
|
|
</Label>
|
|
}
|
|
selection={{
|
|
selectHandler: () => removeTool(currentTool.tool_id),
|
|
selectClasses:
|
|
'bg-red-700 dark:bg-red-600 hover:bg-red-800 dark:hover:bg-red-800 transition-color duration-200 text-white',
|
|
selectText: localize('com_ui_delete'),
|
|
}}
|
|
/>
|
|
</OGDialog>
|
|
);
|
|
}
|
|
|
|
// Group tool with accordion
|
|
return (
|
|
<OGDialog>
|
|
<Accordion type="single" value={accordionValue} onValueChange={setAccordionValue} collapsible>
|
|
<AccordionItem value={currentTool.tool_id} className="group relative w-full border-none">
|
|
<div
|
|
className="relative flex w-full items-center gap-1 rounded-lg p-1 hover:bg-gray-50 dark:hover:bg-gray-800/50"
|
|
onMouseEnter={() => setIsHovering(true)}
|
|
onMouseLeave={() => setIsHovering(false)}
|
|
onFocus={() => setIsFocused(true)}
|
|
onBlur={(e) => {
|
|
// Check if focus is moving to a child element
|
|
if (!e.currentTarget.contains(e.relatedTarget)) {
|
|
setIsFocused(false);
|
|
}
|
|
}}
|
|
>
|
|
<AccordionPrimitive.Header asChild>
|
|
<AccordionPrimitive.Trigger asChild>
|
|
<button
|
|
type="button"
|
|
className={cn(
|
|
'flex grow items-center gap-1 rounded bg-transparent p-0 text-left transition-colors',
|
|
'focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-1',
|
|
)}
|
|
>
|
|
{currentTool.metadata.icon && (
|
|
<div className="flex h-8 w-8 items-center justify-center overflow-hidden rounded-full">
|
|
<div
|
|
className="flex h-6 w-6 items-center justify-center overflow-hidden rounded-full bg-center bg-no-repeat dark:bg-white/20"
|
|
style={{
|
|
backgroundImage: `url(${currentTool.metadata.icon})`,
|
|
backgroundSize: 'cover',
|
|
}}
|
|
/>
|
|
</div>
|
|
)}
|
|
<div
|
|
className="grow px-2 py-1.5"
|
|
style={{ textOverflow: 'ellipsis', wordBreak: 'break-all', overflow: 'hidden' }}
|
|
>
|
|
{currentTool.metadata.name}
|
|
</div>
|
|
<div className="flex items-center">
|
|
{/* Container for grouped checkbox and chevron */}
|
|
<div className="relative flex items-center">
|
|
{/* Grouped checkbox and chevron that slide together */}
|
|
<div
|
|
className={cn(
|
|
'flex items-center gap-2 transition-all duration-300',
|
|
isHovering || isFocused ? '-translate-x-8' : 'translate-x-0',
|
|
)}
|
|
>
|
|
<div
|
|
data-checkbox-container
|
|
onClick={(e) => e.stopPropagation()}
|
|
className="mt-1"
|
|
>
|
|
<Checkbox
|
|
id={`select-all-${currentTool.tool_id}`}
|
|
checked={selectedTools.length === currentTool.tools?.length}
|
|
onCheckedChange={(checked) => {
|
|
if (currentTool.tools) {
|
|
const newSelectedTools = checked
|
|
? currentTool.tools.map((t) => t.tool_id)
|
|
: [];
|
|
updateFormTools(newSelectedTools);
|
|
}
|
|
}}
|
|
className={cn(
|
|
'h-4 w-4 rounded border border-gray-300 transition-all duration-200 hover:border-gray-400 dark:border-gray-600 dark:hover:border-gray-500',
|
|
isExpanded ? 'visible' : 'pointer-events-none invisible',
|
|
)}
|
|
onClick={(e) => e.stopPropagation()}
|
|
onKeyDown={(e) => {
|
|
if (e.key === 'Enter' || e.key === ' ') {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
const checkbox = e.currentTarget as HTMLButtonElement;
|
|
checkbox.click();
|
|
}
|
|
}}
|
|
tabIndex={isExpanded ? 0 : -1}
|
|
/>
|
|
</div>
|
|
|
|
<div
|
|
className={cn(
|
|
'pointer-events-none flex h-4 w-4 items-center justify-center transition-transform duration-300',
|
|
isExpanded ? 'rotate-180' : '',
|
|
)}
|
|
aria-hidden="true"
|
|
>
|
|
<ChevronDown className="h-4 w-4" />
|
|
</div>
|
|
</div>
|
|
|
|
{/* Delete button slides in from behind */}
|
|
<div
|
|
className={cn(
|
|
'absolute right-0 transition-all duration-300',
|
|
isHovering || isFocused
|
|
? 'translate-x-0 opacity-100'
|
|
: 'translate-x-8 opacity-0',
|
|
)}
|
|
>
|
|
<OGDialogTrigger asChild>
|
|
<button
|
|
type="button"
|
|
className={cn(
|
|
'flex h-7 w-7 items-center justify-center rounded transition-colors duration-200',
|
|
'hover:bg-gray-200 dark:hover:bg-gray-700',
|
|
'focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-1',
|
|
'focus:translate-x-0 focus:opacity-100',
|
|
)}
|
|
onClick={(e) => e.stopPropagation()}
|
|
aria-label={`Delete ${currentTool.metadata.name}`}
|
|
tabIndex={0}
|
|
onFocus={() => setIsFocused(true)}
|
|
>
|
|
<TrashIcon className="h-4 w-4" />
|
|
</button>
|
|
</OGDialogTrigger>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</button>
|
|
</AccordionPrimitive.Trigger>
|
|
</AccordionPrimitive.Header>
|
|
</div>
|
|
|
|
<AccordionContent className="relative ml-1 pt-1 before:absolute before:bottom-2 before:left-0 before:top-0 before:w-0.5 before:bg-border-medium">
|
|
<div className="space-y-1">
|
|
{currentTool.tools?.map((subTool) => (
|
|
<label
|
|
key={subTool.tool_id}
|
|
htmlFor={subTool.tool_id}
|
|
className={cn(
|
|
'border-token-border-light hover:bg-token-surface-secondary flex cursor-pointer items-center rounded-lg border p-2',
|
|
'ml-2 mr-1 focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2 focus-within:ring-offset-background',
|
|
)}
|
|
onClick={(e) => e.stopPropagation()}
|
|
onKeyDown={(e) => {
|
|
e.stopPropagation();
|
|
}}
|
|
onMouseEnter={() => setHoveredToolId(subTool.tool_id)}
|
|
onMouseLeave={() => setHoveredToolId(null)}
|
|
>
|
|
<Checkbox
|
|
id={subTool.tool_id}
|
|
checked={selectedTools.includes(subTool.tool_id)}
|
|
onCheckedChange={(_checked) => {
|
|
const newSelectedTools = selectedTools.includes(subTool.tool_id)
|
|
? selectedTools.filter((t) => t !== subTool.tool_id)
|
|
: [...selectedTools, subTool.tool_id];
|
|
updateFormTools(newSelectedTools);
|
|
}}
|
|
onKeyDown={(e) => {
|
|
e.stopPropagation();
|
|
if (e.key === 'Enter' || e.key === ' ') {
|
|
e.preventDefault();
|
|
const checkbox = e.currentTarget as HTMLButtonElement;
|
|
checkbox.click();
|
|
}
|
|
}}
|
|
onClick={(e) => e.stopPropagation()}
|
|
className="relative float-left mr-2 inline-flex h-4 w-4 cursor-pointer rounded border border-gray-300 transition-[border-color] duration-200 hover:border-gray-400 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 focus:ring-offset-background dark:border-gray-600 dark:hover:border-gray-500"
|
|
/>
|
|
<span className="text-token-text-primary">{subTool.metadata.name}</span>
|
|
{subTool.metadata.description && (
|
|
<Ariakit.HovercardProvider placement="left-start">
|
|
<div className="ml-auto flex h-6 w-6 items-center justify-center">
|
|
<Ariakit.HovercardAnchor
|
|
render={
|
|
<Ariakit.Button
|
|
className={cn(
|
|
'flex h-5 w-5 cursor-help items-center rounded-full text-text-secondary transition-opacity duration-200',
|
|
hoveredToolId === subTool.tool_id ? 'opacity-100' : 'opacity-0',
|
|
)}
|
|
aria-label={localize('com_ui_tool_info')}
|
|
>
|
|
<CircleHelpIcon className="h-4 w-4" />
|
|
<Ariakit.VisuallyHidden>
|
|
{localize('com_ui_tool_info')}
|
|
</Ariakit.VisuallyHidden>
|
|
</Ariakit.Button>
|
|
}
|
|
/>
|
|
<Ariakit.HovercardDisclosure
|
|
className="rounded-full text-text-secondary focus:outline-none focus:ring-2 focus:ring-ring"
|
|
aria-label={localize('com_ui_tool_more_info')}
|
|
aria-expanded={hoveredToolId === subTool.tool_id}
|
|
aria-controls={`tool-description-${subTool.tool_id}`}
|
|
>
|
|
<Ariakit.VisuallyHidden>
|
|
{localize('com_ui_tool_more_info')}
|
|
</Ariakit.VisuallyHidden>
|
|
<ChevronDown className="h-4 w-4" />
|
|
</Ariakit.HovercardDisclosure>
|
|
</div>
|
|
<Ariakit.Hovercard
|
|
id={`tool-description-${subTool.tool_id}`}
|
|
gutter={14}
|
|
shift={40}
|
|
flip={false}
|
|
className="z-[999] w-80 scale-95 rounded-2xl border border-border-medium bg-surface-secondary p-4 text-text-primary opacity-0 shadow-md transition-all duration-200 data-[enter]:scale-100 data-[leave]:scale-95 data-[enter]:opacity-100 data-[leave]:opacity-0"
|
|
portal={true}
|
|
unmountOnHide={true}
|
|
role="tooltip"
|
|
aria-label={subTool.metadata.description}
|
|
>
|
|
<div className="space-y-2">
|
|
<p className="text-sm text-text-secondary">
|
|
{subTool.metadata.description}
|
|
</p>
|
|
</div>
|
|
</Ariakit.Hovercard>
|
|
</Ariakit.HovercardProvider>
|
|
)}
|
|
</label>
|
|
))}
|
|
</div>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
</Accordion>
|
|
<OGDialogTemplate
|
|
showCloseButton={false}
|
|
title={localize('com_ui_delete_tool')}
|
|
mainClassName="px-0"
|
|
className="max-w-[450px]"
|
|
main={
|
|
<Label className="text-left text-sm font-medium">
|
|
{localize('com_ui_delete_tool_confirm')}
|
|
</Label>
|
|
}
|
|
selection={{
|
|
selectHandler: () => removeTool(currentTool.tool_id),
|
|
selectClasses:
|
|
'bg-red-700 dark:bg-red-600 hover:bg-red-800 dark:hover:bg-red-800 transition-color duration-200 text-white',
|
|
selectText: localize('com_ui_delete'),
|
|
}}
|
|
/>
|
|
</OGDialog>
|
|
);
|
|
}
|