ruvector/studio/components/layouts/ProjectLayout/LayoutHeader/BreadcrumbsView.tsx
rUv 814f595995 feat(studio): Add complete RuVector Studio application
Major additions:
- Complete Next.js studio application with 1600+ components
- Docker support (Dockerfile.combined, docker-compose.yml)
- GCP deployment documentation and benchmarks
- SQL benchmark scripts for performance testing
- Sentry integration for monitoring
- Comprehensive test suite and mocks

Studio features:
- Dashboard and admin interfaces
- Data visualization components
- Authentication and user management
- API integration with RuVector backend
- Static data and public assets

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-06 23:04:48 +00:00

44 lines
1.4 KiB
TypeScript

import { Fragment } from 'react'
interface BreadcrumbsViewProps {
defaultValue: any
}
export const BreadcrumbsView = ({ defaultValue: breadcrumbs }: BreadcrumbsViewProps) => {
return (
<>
{breadcrumbs?.length
? breadcrumbs.map((breadcrumb: any, i: number) => (
<Fragment key={breadcrumb.key}>
{i > 0 && (
<span className="text-border-stronger dark:text-border-strong">
<svg
viewBox="0 0 24 24"
width="16"
height="16"
stroke="currentColor"
strokeWidth="1"
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
shapeRendering="geometricPrecision"
>
<path d="M16 3.549L7.12 20.600"></path>
</svg>
</span>
)}
<a
onClick={breadcrumb.onClick || (() => {})}
className={`text-gray-1100 block px-2 py-1 text-xs leading-5 focus:bg-gray-100 focus:text-gray-900 focus:outline-none ${
breadcrumb.onClick ? 'cursor-pointer hover:text-white' : ''
}`}
>
{breadcrumb.label}
</a>
</Fragment>
))
: null}
</>
)
}