mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 19:00:13 +01:00
105 lines
3.8 KiB
TypeScript
105 lines
3.8 KiB
TypeScript
|
|
import { useState } from 'react';
|
||
|
|
import type { TConversation, TMessage } from 'librechat-data-provider';
|
||
|
|
import { Clipboard, CheckMark, EditIcon, RegenerateIcon, ContinueIcon } from '~/components/svg';
|
||
|
|
import { useGenerations, useLocalize } from '~/hooks';
|
||
|
|
import { cn } from '~/utils';
|
||
|
|
|
||
|
|
type THoverButtons = {
|
||
|
|
isEditing: boolean;
|
||
|
|
enterEdit: (cancel?: boolean) => void;
|
||
|
|
copyToClipboard: (setIsCopied: React.Dispatch<React.SetStateAction<boolean>>) => void;
|
||
|
|
conversation: TConversation | null;
|
||
|
|
isSubmitting: boolean;
|
||
|
|
message: TMessage;
|
||
|
|
regenerate: () => void;
|
||
|
|
handleContinue: (e: React.MouseEvent<HTMLButtonElement>) => void;
|
||
|
|
latestMessage: TMessage | null;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function HoverButtons({
|
||
|
|
isEditing,
|
||
|
|
enterEdit,
|
||
|
|
copyToClipboard,
|
||
|
|
conversation,
|
||
|
|
isSubmitting,
|
||
|
|
message,
|
||
|
|
regenerate,
|
||
|
|
handleContinue,
|
||
|
|
latestMessage,
|
||
|
|
}: THoverButtons) {
|
||
|
|
const localize = useLocalize();
|
||
|
|
const { endpoint } = conversation ?? {};
|
||
|
|
const [isCopied, setIsCopied] = useState(false);
|
||
|
|
const { hideEditButton, regenerateEnabled, continueSupported } = useGenerations({
|
||
|
|
isEditing,
|
||
|
|
isSubmitting,
|
||
|
|
message,
|
||
|
|
endpoint: endpoint ?? '',
|
||
|
|
latestMessage,
|
||
|
|
});
|
||
|
|
if (!conversation) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
const { isCreatedByUser } = message;
|
||
|
|
|
||
|
|
const onEdit = () => {
|
||
|
|
if (isEditing) {
|
||
|
|
return enterEdit(true);
|
||
|
|
}
|
||
|
|
enterEdit();
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="visible mt-0 flex justify-center gap-1 self-end text-gray-400 lg:justify-start">
|
||
|
|
<button
|
||
|
|
className={cn(
|
||
|
|
'hover-button rounded-md p-1 pl-0 text-gray-400 hover:text-gray-950 dark:text-gray-400/70 dark:hover:text-gray-200 disabled:dark:hover:text-gray-400 md:invisible md:group-hover:visible md:group-[.final-completion]:visible',
|
||
|
|
isCreatedByUser ? '' : 'active',
|
||
|
|
hideEditButton ? 'opacity-0' : '',
|
||
|
|
isEditing ? 'active bg-gray-100 text-gray-700 dark:bg-gray-700 dark:text-gray-200' : '',
|
||
|
|
)}
|
||
|
|
onClick={onEdit}
|
||
|
|
type="button"
|
||
|
|
title={localize('com_ui_edit')}
|
||
|
|
disabled={hideEditButton}
|
||
|
|
>
|
||
|
|
<EditIcon />
|
||
|
|
</button>
|
||
|
|
<button
|
||
|
|
className={cn(
|
||
|
|
'hover-button ml-0 flex items-center gap-1.5 rounded-md p-1 pl-0 text-xs hover:text-gray-950 dark:text-gray-400/70 dark:hover:text-gray-200 disabled:dark:hover:text-gray-400 md:invisible md:group-hover:visible md:group-[.final-completion]:visible',
|
||
|
|
isCreatedByUser ? '' : 'active',
|
||
|
|
)}
|
||
|
|
onClick={() => copyToClipboard(setIsCopied)}
|
||
|
|
type="button"
|
||
|
|
title={
|
||
|
|
isCopied ? localize('com_ui_copied_to_clipboard') : localize('com_ui_copy_to_clipboard')
|
||
|
|
}
|
||
|
|
>
|
||
|
|
{isCopied ? <CheckMark /> : <Clipboard />}
|
||
|
|
</button>
|
||
|
|
{regenerateEnabled ? (
|
||
|
|
<button
|
||
|
|
className="hover-button active rounded-md p-1 pl-0 text-gray-400 hover:text-gray-950 dark:text-gray-400/70 dark:hover:text-gray-200 disabled:dark:hover:text-gray-400 md:invisible md:group-hover:visible md:group-[.final-completion]:visible"
|
||
|
|
onClick={regenerate}
|
||
|
|
type="button"
|
||
|
|
title={localize('com_ui_regenerate')}
|
||
|
|
>
|
||
|
|
<RegenerateIcon className="hover:text-gray-700 dark:hover:bg-gray-700 dark:hover:text-gray-200 disabled:dark:hover:text-gray-400" />
|
||
|
|
</button>
|
||
|
|
) : null}
|
||
|
|
{continueSupported ? (
|
||
|
|
<button
|
||
|
|
className="hover-button active rounded-md p-1 hover:bg-gray-100 hover:text-gray-700 dark:text-gray-400/70 dark:hover:bg-gray-700 dark:hover:text-gray-200 disabled:dark:hover:text-gray-400 md:invisible md:group-hover:visible "
|
||
|
|
onClick={handleContinue}
|
||
|
|
type="button"
|
||
|
|
title={localize('com_ui_continue')}
|
||
|
|
>
|
||
|
|
<ContinueIcon className="h-4 w-4 hover:text-gray-700 dark:hover:bg-gray-700 dark:hover:text-gray-200 disabled:dark:hover:text-gray-400" />
|
||
|
|
</button>
|
||
|
|
) : null}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|