mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-27 21:58:51 +01:00
288 lines
9.2 KiB
TypeScript
288 lines
9.2 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
|
|
import type t from 'librechat-data-provider';
|
|
|
|
import { useMarketplaceAgentsInfiniteQuery } from '~/data-provider/Agents';
|
|
import { useAgentCategories } from '~/hooks/Agents';
|
|
import useLocalize from '~/hooks/useLocalize';
|
|
import { Button } from '~/components/ui';
|
|
import { Spinner } from '~/components/svg';
|
|
import { useHasData } from './SmartLoader';
|
|
import ErrorDisplay from './ErrorDisplay';
|
|
import AgentCard from './AgentCard';
|
|
import { cn } from '~/utils';
|
|
import { PERMISSION_BITS } from 'librechat-data-provider';
|
|
interface AgentGridProps {
|
|
category: string; // Currently selected category
|
|
searchQuery: string; // Current search query
|
|
onSelectAgent: (agent: t.Agent) => void; // Callback when agent is selected
|
|
}
|
|
|
|
/**
|
|
* Component for displaying a grid of agent cards
|
|
*/
|
|
const AgentGrid: React.FC<AgentGridProps> = ({ category, searchQuery, onSelectAgent }) => {
|
|
const localize = useLocalize();
|
|
|
|
// Get category data from API
|
|
const { categories } = useAgentCategories();
|
|
|
|
// Build query parameters based on current state
|
|
const queryParams = useMemo(() => {
|
|
const params: {
|
|
requiredPermission: number;
|
|
category?: string;
|
|
search?: string;
|
|
limit: number;
|
|
promoted?: 0 | 1;
|
|
} = {
|
|
requiredPermission: PERMISSION_BITS.VIEW, // View permission for marketplace viewing
|
|
limit: 6,
|
|
};
|
|
|
|
// Handle search
|
|
if (searchQuery) {
|
|
params.search = searchQuery;
|
|
// Include category filter for search if it's not 'all' or 'promoted'
|
|
if (category !== 'all' && category !== 'promoted') {
|
|
params.category = category;
|
|
}
|
|
} else {
|
|
// Handle category-based queries
|
|
if (category === 'promoted') {
|
|
params.promoted = 1;
|
|
} else if (category !== 'all') {
|
|
params.category = category;
|
|
}
|
|
// For 'all' category, no additional filters needed
|
|
}
|
|
|
|
return params;
|
|
}, [category, searchQuery]);
|
|
|
|
// Use infinite query for marketplace agents
|
|
const {
|
|
data,
|
|
isLoading,
|
|
error,
|
|
isFetching,
|
|
fetchNextPage,
|
|
hasNextPage,
|
|
refetch,
|
|
isFetchingNextPage,
|
|
} = useMarketplaceAgentsInfiniteQuery(queryParams);
|
|
|
|
// Flatten all pages into a single array of agents
|
|
const currentAgents = useMemo(() => {
|
|
if (!data?.pages) return [];
|
|
return data.pages.flatMap((page) => page.data || []);
|
|
}, [data?.pages]);
|
|
|
|
// Check if we have meaningful data to prevent unnecessary loading states
|
|
const hasData = useHasData(data?.pages?.[0]);
|
|
|
|
/**
|
|
* Get category display name from API data or use fallback
|
|
*/
|
|
const getCategoryDisplayName = (categoryValue: string) => {
|
|
const categoryData = categories.find((cat) => cat.value === categoryValue);
|
|
if (categoryData) {
|
|
return categoryData.label;
|
|
}
|
|
|
|
// Fallback for special categories or unknown categories
|
|
if (categoryValue === 'promoted') {
|
|
return localize('com_agents_top_picks');
|
|
}
|
|
if (categoryValue === 'all') {
|
|
return 'All';
|
|
}
|
|
|
|
// Simple capitalization for unknown categories
|
|
return categoryValue.charAt(0).toUpperCase() + categoryValue.slice(1);
|
|
};
|
|
|
|
/**
|
|
* Load more agents when "See More" button is clicked
|
|
*/
|
|
const handleLoadMore = () => {
|
|
if (hasNextPage && !isFetching) {
|
|
fetchNextPage();
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Get the appropriate title for the agents grid based on current state
|
|
*/
|
|
const getGridTitle = () => {
|
|
if (searchQuery) {
|
|
return localize('com_agents_results_for', { query: searchQuery });
|
|
}
|
|
|
|
return getCategoryDisplayName(category);
|
|
};
|
|
|
|
// Loading skeleton component
|
|
const loadingSkeleton = (
|
|
<div className="space-y-6">
|
|
<div className="mb-4">
|
|
<div className="mb-2 h-6 w-48 animate-pulse rounded-md bg-gray-200 dark:bg-gray-700"></div>
|
|
<div className="h-4 w-64 animate-pulse rounded-md bg-gray-200 dark:bg-gray-700"></div>
|
|
</div>
|
|
<div className="grid grid-cols-1 gap-6 md:grid-cols-2">
|
|
{Array(6)
|
|
.fill(0)
|
|
.map((_, index) => (
|
|
<div
|
|
key={index}
|
|
className={cn(
|
|
'flex h-[250px] animate-pulse flex-col overflow-hidden rounded-lg',
|
|
'bg-gray-200 dark:bg-gray-800',
|
|
)}
|
|
>
|
|
<div className="h-40 bg-gray-300 dark:bg-gray-700"></div>
|
|
<div className="flex-1 p-5">
|
|
<div className="mb-3 h-4 w-3/4 rounded bg-gray-300 dark:bg-gray-700"></div>
|
|
<div className="mb-2 h-3 w-full rounded bg-gray-300 dark:bg-gray-700"></div>
|
|
<div className="h-3 w-2/3 rounded bg-gray-300 dark:bg-gray-700"></div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
// Handle error state with enhanced error display
|
|
if (error) {
|
|
return (
|
|
<ErrorDisplay
|
|
error={error || 'Unknown error occurred'}
|
|
onRetry={() => refetch()}
|
|
context={{
|
|
searchQuery,
|
|
category,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
// Main content component with proper semantic structure
|
|
const mainContent = (
|
|
<div
|
|
className="space-y-6"
|
|
role="tabpanel"
|
|
id={`category-panel-${category}`}
|
|
aria-labelledby={`category-tab-${category}`}
|
|
aria-live="polite"
|
|
aria-busy={isLoading && !hasData}
|
|
>
|
|
{/* Grid title - only show for search results */}
|
|
{searchQuery && (
|
|
<div className="mb-4">
|
|
<h2
|
|
className="text-xl font-bold text-gray-900 dark:text-white"
|
|
id={`category-heading-${category}`}
|
|
aria-label={`${getGridTitle()}, ${currentAgents.length || 0} agents available`}
|
|
>
|
|
{getGridTitle()}
|
|
</h2>
|
|
</div>
|
|
)}
|
|
|
|
{/* Handle empty results with enhanced accessibility */}
|
|
{(!currentAgents || currentAgents.length === 0) && !isLoading && !isFetching ? (
|
|
<div
|
|
className="py-12 text-center text-gray-500"
|
|
role="status"
|
|
aria-live="polite"
|
|
aria-label={
|
|
searchQuery
|
|
? localize('com_agents_search_empty_heading')
|
|
: localize('com_agents_empty_state_heading')
|
|
}
|
|
>
|
|
<h3 className="mb-2 text-lg font-medium">
|
|
{searchQuery
|
|
? localize('com_agents_search_empty_heading')
|
|
: localize('com_agents_empty_state_heading')}
|
|
</h3>
|
|
<p className="text-sm">
|
|
{searchQuery
|
|
? localize('com_agents_no_results')
|
|
: localize('com_agents_none_in_category')}
|
|
</p>
|
|
</div>
|
|
) : (
|
|
<>
|
|
{/* Announcement for screen readers */}
|
|
<div id="search-results-count" className="sr-only" aria-live="polite" aria-atomic="true">
|
|
{localize('com_agents_grid_announcement', {
|
|
count: currentAgents?.length || 0,
|
|
category: getCategoryDisplayName(category),
|
|
})}
|
|
</div>
|
|
|
|
{/* Agent grid - 2 per row with proper semantic structure */}
|
|
{currentAgents && currentAgents.length > 0 && (
|
|
<div
|
|
className="grid grid-cols-1 gap-6 md:grid-cols-2"
|
|
role="grid"
|
|
aria-label={localize('com_agents_grid_announcement', {
|
|
count: currentAgents.length,
|
|
category: getCategoryDisplayName(category),
|
|
})}
|
|
>
|
|
{currentAgents.map((agent: t.Agent, index: number) => (
|
|
<div key={`${agent.id}-${index}`} role="gridcell">
|
|
<AgentCard agent={agent} onClick={() => onSelectAgent(agent)} />
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{/* Loading indicator when fetching more with accessibility */}
|
|
{isFetching && hasNextPage && (
|
|
<div
|
|
className="flex justify-center py-4"
|
|
role="status"
|
|
aria-live="polite"
|
|
aria-label={localize('com_agents_loading')}
|
|
>
|
|
<Spinner className="h-6 w-6 text-primary" />
|
|
<span className="sr-only">{localize('com_agents_loading')}</span>
|
|
</div>
|
|
)}
|
|
|
|
{/* Load more button with enhanced accessibility */}
|
|
{hasNextPage && !isFetching && (
|
|
<div className="mt-8 flex justify-center">
|
|
<Button
|
|
variant="outline"
|
|
onClick={handleLoadMore}
|
|
className={cn(
|
|
'min-w-[160px] border-2 border-gray-300 bg-white px-6 py-3 font-medium text-gray-700',
|
|
'shadow-sm transition-all duration-200 hover:border-gray-400 hover:bg-gray-50',
|
|
'hover:shadow-md focus:ring-2 focus:ring-blue-500 focus:ring-offset-2',
|
|
'dark:border-gray-600 dark:bg-gray-800 dark:text-gray-200',
|
|
'dark:hover:border-gray-500 dark:hover:bg-gray-700 dark:focus:ring-blue-400',
|
|
)}
|
|
aria-label={localize('com_agents_load_more_label', {
|
|
category: getCategoryDisplayName(category),
|
|
})}
|
|
>
|
|
{localize('com_agents_see_more')}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
|
|
if (isLoading || (isFetching && !isFetchingNextPage)) {
|
|
return loadingSkeleton;
|
|
}
|
|
return mainContent;
|
|
};
|
|
|
|
export default AgentGrid;
|