mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
* 🎨 feat: improve file display and overflow handling in SidePanel components * 🎨 feat: enhance bookmarks management UI and improve accessibility features * 🎨 feat: enhance BookmarkTable and BookmarkTableRow components for improved layout and performance * 🎨 feat: enhance file display and interaction in FilesView and ImagePreview components * 🎨 feat: adjust minimum width for filename filter input in DataTable component * 🎨 feat: enhance file upload UI with improved layout and styling adjustments * 🎨 feat: add surface-hover-alt color and update FileContainer styling for improved UI * 🎨 feat: update ImagePreview component styling for improved visual consistency * 🎨 feat: add MaximizeChatSpace component and integrate chat space maximization feature * 🎨 feat: enhance DataTable component with transition effects and update Checkbox styling for improved accessibility * fix: enhance a11y for Bookmark buttons by adding space key support, ARIA labels, and correct html role for key presses * fix: return focus back to trigger for BookmarkEditDialog (Edit and new bookmark buttons) * refactor: ShareButton and ExportModal components children prop support; refactor DropdownPopup item handling * refactor: enhance ExportAndShareMenu and ShareButton components with improved props handling and accessibility features * refactor: add ref prop support to MenuItemProps and update ExportAndShareMenu and DropdownPopup components so focus correctly returns to menu item * refactor: enhance ConvoOptions and DeleteButton components with improved props handling and accessibility features * refactor: add triggerRef support to DeleteButton and update ConvoOptions for improved dialog handling * refactor: accessible bookmarks menu * refactor: improve styling and accessibility for bookmarks components * refactor: add focusLoop support to DropdownPopup and update BookmarkMenu with Tooltip * refactor: integrate TooltipAnchor into ExportAndShareMenu for enhanced accessibility --------- Co-authored-by: Danny Avila <danny@librechat.ai>
68 lines
2.8 KiB
TypeScript
68 lines
2.8 KiB
TypeScript
import { type FC } from 'react';
|
|
import { useRecoilValue } from 'recoil';
|
|
import { Menu, MenuButton, MenuItems } from '@headlessui/react';
|
|
import { BookmarkFilledIcon, BookmarkIcon } from '@radix-ui/react-icons';
|
|
import { BookmarkContext } from '~/Providers/BookmarkContext';
|
|
import { useGetConversationTags } from '~/data-provider';
|
|
import BookmarkNavItems from './BookmarkNavItems';
|
|
import { useLocalize } from '~/hooks';
|
|
import { cn } from '~/utils';
|
|
import store from '~/store';
|
|
|
|
type BookmarkNavProps = {
|
|
tags: string[];
|
|
setTags: (tags: string[]) => void;
|
|
isSmallScreen: boolean;
|
|
};
|
|
|
|
const BookmarkNav: FC<BookmarkNavProps> = ({ tags, setTags, isSmallScreen }: BookmarkNavProps) => {
|
|
const localize = useLocalize();
|
|
const { data } = useGetConversationTags();
|
|
const conversation = useRecoilValue(store.conversationByIndex(0));
|
|
|
|
return (
|
|
<Menu as="div" className="group relative">
|
|
{({ open }) => (
|
|
<>
|
|
<MenuButton
|
|
className={cn(
|
|
'mt-text-sm flex h-10 w-full items-center gap-2 rounded-lg p-2 text-sm transition-colors duration-200 hover:bg-surface-active-alt',
|
|
open ? 'bg-surface-active-alt' : '',
|
|
isSmallScreen ? 'h-12' : '',
|
|
)}
|
|
data-testid="bookmark-menu"
|
|
>
|
|
<div className="h-7 w-7 flex-shrink-0">
|
|
<div className="relative flex h-full items-center justify-center rounded-full border border-border-medium bg-surface-primary-alt text-text-primary">
|
|
{tags.length > 0 ? (
|
|
<BookmarkFilledIcon className="h-4 w-4" />
|
|
) : (
|
|
<BookmarkIcon className="h-4 w-4" />
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="grow overflow-hidden whitespace-nowrap text-left text-sm font-medium text-text-primary">
|
|
{tags.length > 0 ? tags.join(', ') : localize('com_ui_bookmarks')}
|
|
</div>
|
|
</MenuButton>
|
|
<MenuItems className="absolute left-0 top-full z-[100] mt-1 w-full translate-y-0 overflow-hidden rounded-lg bg-surface-active-alt p-1.5 shadow-lg outline-none">
|
|
{data && conversation && (
|
|
<BookmarkContext.Provider value={{ bookmarks: data.filter((tag) => tag.count > 0) }}>
|
|
<BookmarkNavItems
|
|
// Currently selected conversation
|
|
conversation={conversation}
|
|
// List of selected tags(string)
|
|
tags={tags}
|
|
// When a user selects a tag, this `setTags` function is called to refetch the list of conversations for the selected tag
|
|
setTags={setTags}
|
|
/>
|
|
</BookmarkContext.Provider>
|
|
)}
|
|
</MenuItems>
|
|
</>
|
|
)}
|
|
</Menu>
|
|
);
|
|
};
|
|
|
|
export default BookmarkNav;
|