mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 19:00:13 +01:00
* fix: type issues * feat: Fix document title setting in Conversation component * style: new chat theme * fix: No keyboard access to chat menus in the chat history #3788 * fix: Menu button in the chat history area does not indicate its state #3823 * refactor: use ariakit for DropdownPopup * style: update sticky z-index in NewChat component * style: update ConvoOptions menu button styling
99 lines
3.1 KiB
TypeScript
99 lines
3.1 KiB
TypeScript
import { useState, useId } from 'react';
|
|
import { useRecoilValue } from 'recoil';
|
|
import * as Ariakit from '@ariakit/react';
|
|
import { Upload, Share2 } from 'lucide-react';
|
|
import { ShareButton } from '~/components/Conversations/ConvoOptions';
|
|
import { useMediaQuery, useLocalize } from '~/hooks';
|
|
import { DropdownPopup } from '~/components/ui';
|
|
import { ExportModal } from '../Nav';
|
|
import store from '~/store';
|
|
|
|
export default function ExportAndShareMenu({
|
|
isSharedButtonEnabled,
|
|
}: {
|
|
isSharedButtonEnabled: boolean;
|
|
}) {
|
|
const localize = useLocalize();
|
|
const [showExports, setShowExports] = useState(false);
|
|
const [isPopoverActive, setIsPopoverActive] = useState(false);
|
|
const [showShareDialog, setShowShareDialog] = useState(false);
|
|
|
|
const menuId = useId();
|
|
const isSmallScreen = useMediaQuery('(max-width: 768px)');
|
|
const conversation = useRecoilValue(store.conversationByIndex(0));
|
|
|
|
const exportable =
|
|
conversation &&
|
|
conversation.conversationId != null &&
|
|
conversation.conversationId !== 'new' &&
|
|
conversation.conversationId !== 'search';
|
|
|
|
if (exportable === false) {
|
|
return null;
|
|
}
|
|
|
|
const onOpenChange = (value: boolean) => {
|
|
setShowExports(value);
|
|
};
|
|
|
|
const shareHandler = () => {
|
|
setIsPopoverActive(false);
|
|
setShowShareDialog(true);
|
|
};
|
|
|
|
const exportHandler = () => {
|
|
setIsPopoverActive(false);
|
|
setShowExports(true);
|
|
};
|
|
|
|
const dropdownItems = [
|
|
{
|
|
label: localize('com_endpoint_export'),
|
|
onClick: exportHandler,
|
|
icon: <Upload className="icon-md mr-2 dark:text-gray-300" />,
|
|
},
|
|
{
|
|
label: localize('com_ui_share'),
|
|
onClick: shareHandler,
|
|
icon: <Share2 className="icon-md mr-2 dark:text-gray-300" />,
|
|
show: isSharedButtonEnabled,
|
|
},
|
|
];
|
|
|
|
return (
|
|
<>
|
|
<DropdownPopup
|
|
menuId={menuId}
|
|
isOpen={isPopoverActive}
|
|
setIsOpen={setIsPopoverActive}
|
|
trigger={
|
|
<Ariakit.MenuButton
|
|
id="export-menu-button"
|
|
aria-label="Export options"
|
|
className="mr-4 inline-flex h-10 w-10 items-center justify-center rounded-md border border-border-light bg-transparent p-0 text-sm font-medium transition-all duration-300 ease-in-out focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50"
|
|
>
|
|
<Upload className="icon-md dark:text-gray-300" aria-hidden="true" focusable="false" />
|
|
</Ariakit.MenuButton>
|
|
}
|
|
items={dropdownItems}
|
|
className={isSmallScreen ? '' : 'absolute right-0 top-0 mt-2'}
|
|
/>
|
|
{showShareDialog && conversation.conversationId != null && (
|
|
<ShareButton
|
|
conversationId={conversation.conversationId}
|
|
title={conversation.title ?? ''}
|
|
showShareDialog={showShareDialog}
|
|
setShowShareDialog={setShowShareDialog}
|
|
/>
|
|
)}
|
|
{showExports && (
|
|
<ExportModal
|
|
open={showExports}
|
|
onOpenChange={onOpenChange}
|
|
conversation={conversation}
|
|
aria-label="Export conversation modal"
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
}
|