mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-14 22:48:52 +01:00
* feat: show column sort direction in all headers for my files datatable * fix: refactor SortFilterHeader to use DropdownPopup so that keyboard nav and portaling actually work * feat: visually indicate when a column filter is active * chore: remove debug visuals * chore: fix types and import order * chore: add missing subItems prop to MenuItemProps interface * feat: add arrow indicator for name column * fix: page counter no longer shows 1/0 when no results * feat: keep my files datatable size consistent to avoid issues with sizing of dropdown filter menus which made it difficult to see options * fix: refactor filter cols button in my files datatable to use ariakit dropdown so keyboard nav works * feat: better datatable column spacing following tanstack docs * chore: ESlint complaints * fix: localize string literals * fix: move localize hook call inside the function components * feat: add tooltip label for select all * feat: better styling on floating label for file filter input * feat: focus outline on search input * feat: add search icon * feat: add aria-sort props to header sort buttons * feat: better screen reader labels to include information visually conveyed by filter and sort icons * feat: add descriptive tooltips for headers for better accessibility for cognitive impairments * chore: import orders * feat: add more aria states for better feedback of filtered and sorted columns * chore: add translation key
291 lines
9 KiB
TypeScript
291 lines
9 KiB
TypeScript
/* eslint-disable react-hooks/rules-of-hooks */
|
|
import { ArrowUpDown, ArrowUp, ArrowDown, Database } from 'lucide-react';
|
|
import { FileSources, FileContext } from 'librechat-data-provider';
|
|
import {
|
|
Button,
|
|
Checkbox,
|
|
useMediaQuery,
|
|
TooltipAnchor,
|
|
AzureMinimalIcon,
|
|
OpenAIMinimalIcon,
|
|
} from '@librechat/client';
|
|
import type { ColumnDef } from '@tanstack/react-table';
|
|
import type { TFile } from 'librechat-data-provider';
|
|
import ImagePreview from '~/components/Chat/Input/Files/ImagePreview';
|
|
import FilePreview from '~/components/Chat/Input/Files/FilePreview';
|
|
import { TranslationKeys, useLocalize } from '~/hooks';
|
|
import { SortFilterHeader } from './SortFilterHeader';
|
|
import { formatDate, getFileType } from '~/utils';
|
|
|
|
const contextMap: Record<any, TranslationKeys> = {
|
|
[FileContext.avatar]: 'com_ui_avatar',
|
|
[FileContext.unknown]: 'com_ui_unknown',
|
|
[FileContext.assistants]: 'com_ui_assistants',
|
|
[FileContext.image_generation]: 'com_ui_image_gen',
|
|
[FileContext.assistants_output]: 'com_ui_assistants_output',
|
|
[FileContext.message_attachment]: 'com_ui_attachment',
|
|
};
|
|
|
|
export const columns: ColumnDef<TFile>[] = [
|
|
{
|
|
id: 'select',
|
|
size: 40,
|
|
header: ({ table }) => {
|
|
const localize = useLocalize();
|
|
return (
|
|
<TooltipAnchor
|
|
description={localize('com_ui_select_all')}
|
|
side="top"
|
|
role="checkbox"
|
|
render={
|
|
<Checkbox
|
|
checked={
|
|
table.getIsAllPageRowsSelected() ||
|
|
(table.getIsSomePageRowsSelected() && 'indeterminate')
|
|
}
|
|
onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
|
|
aria-label={localize('com_ui_select_all')}
|
|
className="flex"
|
|
/>
|
|
}
|
|
/>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
const localize = useLocalize();
|
|
return (
|
|
<Checkbox
|
|
checked={row.getIsSelected()}
|
|
onCheckedChange={(value) => row.toggleSelected(!!value)}
|
|
aria-label={localize('com_ui_select_row')}
|
|
className="flex"
|
|
/>
|
|
);
|
|
},
|
|
enableSorting: false,
|
|
enableHiding: false,
|
|
},
|
|
{
|
|
meta: {
|
|
size: '150px',
|
|
},
|
|
accessorKey: 'filename',
|
|
header: ({ column }) => {
|
|
const localize = useLocalize();
|
|
const sortState = column.getIsSorted();
|
|
let SortIcon = ArrowUpDown;
|
|
let ariaSort: 'ascending' | 'descending' | 'none' = 'none';
|
|
if (sortState === 'desc') {
|
|
SortIcon = ArrowDown;
|
|
ariaSort = 'descending';
|
|
} else if (sortState === 'asc') {
|
|
SortIcon = ArrowUp;
|
|
ariaSort = 'ascending';
|
|
}
|
|
return (
|
|
<TooltipAnchor
|
|
description={localize('com_ui_name_sort')}
|
|
side="top"
|
|
render={
|
|
<Button
|
|
variant="ghost"
|
|
className="px-2 py-0 text-xs hover:bg-surface-hover sm:px-2 sm:py-2 sm:text-sm"
|
|
onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')}
|
|
aria-sort={ariaSort}
|
|
aria-label={localize('com_ui_name_sort')} aria-hidden="true"
|
|
aria-current={sortState ? 'true' : 'false'}
|
|
>
|
|
{localize('com_ui_name')}
|
|
<SortIcon className="ml-2 h-3 w-4 sm:h-4 sm:w-4" />
|
|
</Button>
|
|
}
|
|
/>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
const file = row.original;
|
|
if (file.type?.startsWith('image')) {
|
|
return (
|
|
<div className="flex gap-2">
|
|
<ImagePreview
|
|
url={file.filepath}
|
|
className="relative h-10 w-10 shrink-0 overflow-visible rounded-md"
|
|
source={file.source}
|
|
/>
|
|
<span className="self-center truncate">{file.filename}</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const fileType = getFileType(file.type);
|
|
return (
|
|
<div className="flex gap-2">
|
|
{fileType && <FilePreview fileType={fileType} className="relative" file={file} />}
|
|
<span className="self-center truncate">{file.filename}</span>
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
accessorKey: 'updatedAt',
|
|
header: ({ column }) => {
|
|
const localize = useLocalize();
|
|
const sortState = column.getIsSorted();
|
|
let SortIcon = ArrowUpDown;
|
|
let ariaSort: 'ascending' | 'descending' | 'none' = 'none';
|
|
if (sortState === 'desc') {
|
|
SortIcon = ArrowDown;
|
|
ariaSort = 'descending';
|
|
} else if (sortState === 'asc') {
|
|
SortIcon = ArrowUp;
|
|
ariaSort = 'ascending';
|
|
}
|
|
return (
|
|
<TooltipAnchor
|
|
description={localize('com_ui_date_sort')}
|
|
side="top"
|
|
render={
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')}
|
|
className="px-2 py-0 text-xs hover:bg-surface-hover sm:px-2 sm:py-2 sm:text-sm"
|
|
aria-sort={ariaSort}
|
|
aria-label={localize('com_ui_date_sort')} aria-hidden="true"
|
|
aria-current={sortState ? 'true' : 'false'}
|
|
>
|
|
{localize('com_ui_date')}
|
|
<SortIcon className="ml-2 h-3 w-4 sm:h-4 sm:w-4" />
|
|
</Button>
|
|
}
|
|
/>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
const isSmallScreen = useMediaQuery('(max-width: 768px)');
|
|
return formatDate(row.original.updatedAt?.toString() ?? '', isSmallScreen);
|
|
},
|
|
},
|
|
{
|
|
accessorKey: 'filterSource',
|
|
header: ({ column }) => {
|
|
const localize = useLocalize();
|
|
return (
|
|
<SortFilterHeader
|
|
column={column}
|
|
title={localize('com_ui_storage')}
|
|
ariaLabel={localize('com_ui_storage_filter_sort')}
|
|
filters={{
|
|
Storage: Object.values(FileSources).filter(
|
|
(value) =>
|
|
value === FileSources.local ||
|
|
value === FileSources.openai ||
|
|
value === FileSources.azure,
|
|
),
|
|
}}
|
|
valueMap={{
|
|
[FileSources.azure]: 'com_ui_azure',
|
|
[FileSources.openai]: 'com_ui_openai',
|
|
[FileSources.local]: 'com_ui_host',
|
|
}}
|
|
/>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
const localize = useLocalize();
|
|
const { source } = row.original;
|
|
if (source === FileSources.openai) {
|
|
return (
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<OpenAIMinimalIcon className="icon-sm text-green-600/50" />
|
|
{'OpenAI'}
|
|
</div>
|
|
);
|
|
} else if (source === FileSources.azure) {
|
|
return (
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<AzureMinimalIcon className="icon-sm text-cyan-700" />
|
|
{'Azure'}
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<Database className="icon-sm text-cyan-700" aria-hidden="true" />
|
|
{localize('com_ui_host')}
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
accessorKey: 'context',
|
|
header: ({ column }) => {
|
|
const localize = useLocalize();
|
|
return (
|
|
<SortFilterHeader
|
|
column={column}
|
|
title={localize('com_ui_context')}
|
|
ariaLabel={localize('com_ui_context_filter_sort')}
|
|
filters={{
|
|
Context: Object.values(FileContext).filter(
|
|
(value) => value === FileContext[value ?? ''],
|
|
),
|
|
}}
|
|
valueMap={contextMap}
|
|
/>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
const { context } = row.original;
|
|
const localize = useLocalize();
|
|
return (
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
{localize(contextMap[context ?? FileContext.unknown])}
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
accessorKey: 'bytes',
|
|
header: ({ column }) => {
|
|
const localize = useLocalize();
|
|
const sortState = column.getIsSorted();
|
|
let SortIcon = ArrowUpDown;
|
|
let ariaSort: 'ascending' | 'descending' | 'none' = 'none';
|
|
if (sortState === 'desc') {
|
|
SortIcon = ArrowDown;
|
|
ariaSort = 'descending';
|
|
} else if (sortState === 'asc') {
|
|
SortIcon = ArrowUp;
|
|
ariaSort = 'ascending';
|
|
}
|
|
return (
|
|
<TooltipAnchor
|
|
description={localize('com_ui_size_sort')}
|
|
side="top"
|
|
render={
|
|
<Button
|
|
variant="ghost"
|
|
className="px-2 py-0 text-xs hover:bg-surface-hover sm:px-2 sm:py-2 sm:text-sm"
|
|
onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')}
|
|
aria-sort={ariaSort}
|
|
aria-label={localize('com_ui_size_sort')} aria-hidden="true"
|
|
aria-current={sortState ? 'true' : 'false'}
|
|
>
|
|
{localize('com_ui_size')}
|
|
<SortIcon className="ml-2 h-3 w-4 sm:h-4 sm:w-4" />
|
|
</Button>
|
|
}
|
|
/>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
const suffix = ' MB';
|
|
const value = Number((Number(row.original.bytes) / 1024 / 1024).toFixed(2));
|
|
if (value < 0.01) {
|
|
return '< 0.01 MB';
|
|
}
|
|
|
|
return `${value}${suffix}`;
|
|
},
|
|
},
|
|
];
|