mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-30 23:28:52 +01:00
* refactor(OpenSidebar): removed useless classNames
* style(Header): update hover styles across various components for improved UI consistency
* style(Nav): update hover styles in AccountSettings and SearchBar for improved UI consistency
* style: update button classes for consistent hover effects and improved UI responsiveness
* style(Nav, OpenSidebar, Header, Convo): improve UI responsiveness and animation transitions
* style(PresetsMenu, NewChat): update icon sizes and improve component styling for better UI consistency
* style(Nav, Root): enhance sidebar mobile animations and responsiveness for better UI experience
* style(ExportAndShareMenu, BookmarkMenu): update icon sizes for improved UI consistency
* style: remove transition duration from button classes for improved UI responsiveness
* style(CustomMenu, ModelSelector): update background colors for improved UI consistency and responsiveness
* style(ExportAndShareMenu): update icon color for improved UI consistency
* style(TemporaryChat): refine button styles for improved UI consistency and responsiveness
* style(BookmarkNav): refactor to use DropdownPopup and remove BookmarkNavItems for improved UI consistency and functionality
* style(CustomMenu, EndpointItem): enhance UI elements for improved consistency and accessibility
* style(EndpointItem): adjust gap in icon container for improved layout consistency
* style(CustomMenu, EndpointItem): update focus ring color for improved UI consistency
* style(EndpointItem): update icon color for improved UI consistency in dark theme
* style: update focus styles for improved accessibility and consistency across components
* refactor(Nav): extract sidebar width to NAV_WIDTH constant
Centralize mobile (320px) and desktop (260px) sidebar widths in a single
exported constant to avoid magic numbers and ensure consistency.
* fix(BookmarkNav): memoize handlers used in useMemo
Wrap handleTagClick and handleClear in useCallback and add them to the
dropdownItems useMemo dependency array to prevent stale closures.
* feat: introduce FilterInput component and replace existing inputs with it across multiple components
* feat(DataTable): replace custom input with FilterInput component for improved filtering
* fix: Nested dialog overlay stacking issue
Fixes overlay appearing behind content when opening nested dialogs.
Introduced dynamic z-index calculation based on dialog depth using React context.
- First dialog: overlay z-50, content z-100
- Nested dialogs increment by 60: overlay z-110/content z-160, etc.
Preserves a11y escape key handling from #10975 and #10851.
Regression from #11008 (afb67fcf1) which increased content z-index
without adjusting overlay z-index for nested dialog scenarios.
* Refactor admin settings components to use a unified AdminSettingsDialog
- Removed redundant code from AdminSettings, MCPAdminSettings, and Memories AdminSettings components.
- Introduced AdminSettingsDialog component to handle permission management for different sections.
- Updated permission handling logic to use a consistent structure across components.
- Enhanced role selection and permission confirmation features in the new dialog.
- Improved UI consistency and maintainability by centralizing dialog functionality.
* refactor(Memory): memory management UI components and replace MemoryViewer with MemoryPanel
* refactor(Memory): enhance UI components for Memory dialogs and improve input styling
* refactor(Bookmarks): improve bookmark management UI with enhanced styling
* refactor(translations): remove redundant filter input and bookmark count entries
* refactor(Convo): integrate useShiftKey hook for enhanced keyboard interaction and improve UI responsiveness
239 lines
8.6 KiB
TypeScript
239 lines
8.6 KiB
TypeScript
import { useState } from 'react';
|
|
import { useSetRecoilState } from 'recoil';
|
|
import {
|
|
flexRender,
|
|
useReactTable,
|
|
getCoreRowModel,
|
|
getSortedRowModel,
|
|
getFilteredRowModel,
|
|
getPaginationRowModel,
|
|
} from '@tanstack/react-table';
|
|
import type {
|
|
ColumnDef,
|
|
SortingState,
|
|
VisibilityState,
|
|
ColumnFiltersState,
|
|
} from '@tanstack/react-table';
|
|
import { FileContext } from 'librechat-data-provider';
|
|
import {
|
|
Table,
|
|
Button,
|
|
Spinner,
|
|
TableRow,
|
|
TableBody,
|
|
TableCell,
|
|
TableHead,
|
|
TrashIcon,
|
|
FilterInput,
|
|
TableHeader,
|
|
useMediaQuery,
|
|
} from '@librechat/client';
|
|
import type { TFile } from 'librechat-data-provider';
|
|
import { ColumnVisibilityDropdown } from './ColumnVisibilityDropdown';
|
|
import { useDeleteFilesFromTable } from '~/hooks/Files';
|
|
import { useLocalize, TranslationKeys } from '~/hooks';
|
|
import { cn } from '~/utils';
|
|
import store from '~/store';
|
|
|
|
interface DataTableProps<TData, TValue> {
|
|
columns: ColumnDef<TData, TValue>[];
|
|
data: TData[];
|
|
}
|
|
|
|
const contextMap: Record<string, TranslationKeys> = {
|
|
[FileContext.filename]: 'com_ui_name',
|
|
[FileContext.updatedAt]: 'com_ui_date',
|
|
[FileContext.filterSource]: 'com_ui_storage',
|
|
[FileContext.context]: 'com_ui_context',
|
|
[FileContext.bytes]: 'com_ui_size',
|
|
};
|
|
|
|
type Style = {
|
|
width?: number | string;
|
|
maxWidth?: number | string;
|
|
minWidth?: number | string;
|
|
zIndex?: number;
|
|
};
|
|
|
|
export default function DataTable<TData, TValue>({ columns, data }: DataTableProps<TData, TValue>) {
|
|
const localize = useLocalize();
|
|
const [isDeleting, setIsDeleting] = useState(false);
|
|
const setFiles = useSetRecoilState(store.filesByIndex(0));
|
|
const { deleteFiles } = useDeleteFilesFromTable(() => setIsDeleting(false));
|
|
|
|
const [rowSelection, setRowSelection] = useState({});
|
|
const [sorting, setSorting] = useState<SortingState>([]);
|
|
const isSmallScreen = useMediaQuery('(max-width: 768px)');
|
|
const [columnFilters, setColumnFilters] = useState<ColumnFiltersState>([]);
|
|
const [columnVisibility, setColumnVisibility] = useState<VisibilityState>({});
|
|
|
|
const table = useReactTable({
|
|
data,
|
|
columns,
|
|
defaultColumn: {
|
|
minSize: 0,
|
|
size: Number.MAX_SAFE_INTEGER,
|
|
maxSize: Number.MAX_SAFE_INTEGER,
|
|
},
|
|
onSortingChange: setSorting,
|
|
getCoreRowModel: getCoreRowModel(),
|
|
getSortedRowModel: getSortedRowModel(),
|
|
onColumnFiltersChange: setColumnFilters,
|
|
getFilteredRowModel: getFilteredRowModel(),
|
|
onColumnVisibilityChange: setColumnVisibility,
|
|
getPaginationRowModel: getPaginationRowModel(),
|
|
onRowSelectionChange: setRowSelection,
|
|
state: {
|
|
sorting,
|
|
columnFilters,
|
|
columnVisibility,
|
|
rowSelection,
|
|
},
|
|
});
|
|
|
|
return (
|
|
<div className="flex h-full flex-col gap-4">
|
|
<div className="flex flex-wrap items-center gap-2 py-2 sm:gap-4 sm:py-4">
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => {
|
|
setIsDeleting(true);
|
|
const filesToDelete = table
|
|
.getFilteredSelectedRowModel()
|
|
.rows.map((row) => row.original);
|
|
deleteFiles({ files: filesToDelete as TFile[], setFiles });
|
|
setRowSelection({});
|
|
}}
|
|
disabled={!table.getFilteredSelectedRowModel().rows.length || isDeleting}
|
|
className={cn('min-w-[40px] transition-all duration-200', isSmallScreen && 'px-2 py-1')}
|
|
>
|
|
{isDeleting ? (
|
|
<Spinner className="size-3.5 sm:size-4" />
|
|
) : (
|
|
<TrashIcon className="size-3.5 text-red-400 sm:size-4" />
|
|
)}
|
|
{!isSmallScreen && <span className="ml-2">{localize('com_ui_delete')}</span>}
|
|
</Button>
|
|
<FilterInput
|
|
inputId="files-filter"
|
|
label={localize('com_files_filter')}
|
|
value={(table.getColumn('filename')?.getFilterValue() as string | undefined) ?? ''}
|
|
onChange={(event) => table.getColumn('filename')?.setFilterValue(event.target.value)}
|
|
containerClassName="flex-1"
|
|
/>
|
|
<div className="relative focus-within:z-[100]">
|
|
<ColumnVisibilityDropdown
|
|
table={table}
|
|
contextMap={contextMap}
|
|
isSmallScreen={isSmallScreen}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="relative grid h-full max-h-[calc(100vh-20rem)] min-h-[calc(100vh-20rem)] w-full flex-1 overflow-hidden overflow-x-auto overflow-y-auto rounded-md border border-black/10 dark:border-white/10">
|
|
<Table className="w-full min-w-[300px] border-separate border-spacing-0">
|
|
<TableHeader className="sticky top-0 z-50">
|
|
{table.getHeaderGroups().map((headerGroup) => (
|
|
<TableRow key={headerGroup.id} className="border-b border-border-light">
|
|
{headerGroup.headers.map((header, _index) => {
|
|
const size = header.getSize();
|
|
const style: Style = {
|
|
width: size === Number.MAX_SAFE_INTEGER ? 'auto' : size,
|
|
};
|
|
|
|
return (
|
|
<TableHead
|
|
key={header.id}
|
|
className="whitespace-nowrap bg-surface-secondary px-2 py-2 text-left text-sm font-medium text-text-secondary sm:px-4"
|
|
style={{ ...style }}
|
|
>
|
|
{header.isPlaceholder
|
|
? null
|
|
: flexRender(header.column.columnDef.header, header.getContext())}
|
|
</TableHead>
|
|
);
|
|
})}
|
|
</TableRow>
|
|
))}
|
|
</TableHeader>
|
|
<TableBody className="w-full">
|
|
{table.getRowModel().rows.length ? (
|
|
table.getRowModel().rows.map((row) => (
|
|
<TableRow
|
|
key={row.id}
|
|
data-state={row.getIsSelected() && 'selected'}
|
|
className="border-b border-border-light transition-colors hover:bg-surface-secondary [tr:last-child_&]:border-b-0"
|
|
>
|
|
{row.getVisibleCells().map((cell, _index) => {
|
|
const size = cell.column.getSize();
|
|
const style: Style = {
|
|
width: size === Number.MAX_SAFE_INTEGER ? 'auto' : size,
|
|
};
|
|
|
|
return (
|
|
<TableCell
|
|
key={cell.id}
|
|
className={cn(
|
|
'align-start px-2 py-1 text-xs sm:px-4 sm:py-2 sm:text-sm [tr[data-disabled=true]_&]:opacity-50',
|
|
cell.column.id === 'select' ? 'overflow-visible' : 'overflow-x-auto',
|
|
)}
|
|
style={style}
|
|
>
|
|
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
|
</TableCell>
|
|
);
|
|
})}
|
|
</TableRow>
|
|
))
|
|
) : (
|
|
<TableRow>
|
|
<TableCell colSpan={columns.length} className="h-24 text-center">
|
|
{localize('com_files_no_results')}
|
|
</TableCell>
|
|
</TableRow>
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-end gap-2 py-4">
|
|
<div className="ml-2 flex-1 truncate text-xs text-muted-foreground sm:ml-4 sm:text-sm">
|
|
<span className="hidden sm:inline">
|
|
{localize('com_files_number_selected', {
|
|
0: `${table.getFilteredSelectedRowModel().rows.length}`,
|
|
1: `${table.getFilteredRowModel().rows.length}`,
|
|
})}
|
|
</span>
|
|
<span className="sm:hidden">
|
|
{`${table.getFilteredSelectedRowModel().rows.length}/${
|
|
table.getFilteredRowModel().rows.length
|
|
}`}
|
|
</span>
|
|
</div>
|
|
<div className="flex items-center space-x-1 pr-2 text-xs font-bold text-text-primary sm:text-sm">
|
|
<span className="hidden sm:inline">{localize('com_ui_page')}</span>
|
|
<span>{table.getState().pagination.pageIndex + 1}</span>
|
|
<span>/</span>
|
|
<span>{Math.max(table.getPageCount(), 1)}</span>
|
|
</div>
|
|
<Button
|
|
className="select-none"
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={() => table.previousPage()}
|
|
disabled={!table.getCanPreviousPage()}
|
|
>
|
|
{localize('com_ui_prev')}
|
|
</Button>
|
|
<Button
|
|
className="select-none"
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={() => table.nextPage()}
|
|
disabled={!table.getCanNextPage()}
|
|
>
|
|
{localize('com_ui_next')}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|