mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-04-07 08:25:23 +02:00
62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
import React from 'react';
|
|
import { cn } from '~/utils';
|
|
|
|
interface ConvoLinkProps {
|
|
isActiveConvo: boolean;
|
|
isPopoverActive: boolean;
|
|
title: string | null;
|
|
onRename: () => void;
|
|
isSmallScreen: boolean;
|
|
localize: (key: any, options?: any) => string;
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
const ConvoLink: React.FC<ConvoLinkProps> = ({
|
|
isActiveConvo,
|
|
isPopoverActive,
|
|
title,
|
|
onRename,
|
|
isSmallScreen,
|
|
localize,
|
|
children,
|
|
}) => {
|
|
return (
|
|
<div
|
|
className={cn(
|
|
'flex grow items-center gap-2 overflow-hidden rounded-lg px-2',
|
|
isActiveConvo || isPopoverActive ? 'bg-surface-active-alt' : '',
|
|
)}
|
|
title={title ?? undefined}
|
|
aria-current={isActiveConvo ? 'page' : undefined}
|
|
style={{ width: '100%' }}
|
|
>
|
|
{children}
|
|
<div
|
|
className="relative flex-1 grow overflow-hidden whitespace-nowrap"
|
|
style={{ textOverflow: 'clip' }}
|
|
onDoubleClick={(e) => {
|
|
if (isSmallScreen) {
|
|
return;
|
|
}
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
onRename();
|
|
}}
|
|
aria-label={title || localize('com_ui_untitled')}
|
|
>
|
|
{title || localize('com_ui_untitled')}
|
|
</div>
|
|
<div
|
|
className={cn(
|
|
'pointer-events-none absolute bottom-0.5 right-0.5 top-0.5 w-20 rounded-r-md bg-gradient-to-l',
|
|
isActiveConvo || isPopoverActive
|
|
? 'from-surface-active-alt'
|
|
: 'from-surface-primary-alt from-0% to-transparent group-hover:from-surface-active-alt group-hover:from-40%',
|
|
)}
|
|
aria-hidden="true"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ConvoLink;
|