ruvector/studio/components/interfaces/Integrations/Integration/MarkdownContent.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

57 lines
1.9 KiB
TypeScript

import { motion } from 'framer-motion'
import { useEffect, useState } from 'react'
import { Markdown } from 'components/interfaces/Markdown'
import { cn } from 'ui'
const CHAR_LIMIT = 500 // Adjust this number as needed
export const MarkdownContent = ({ integrationId }: { integrationId: string }) => {
const [content, setContent] = useState<string>('')
const [isExpanded, setIsExpanded] = useState(false)
useEffect(() => {
import(`static-data/integrations/${integrationId}/overview.md`)
.then((module) => setContent(String(module.default)))
.catch((error) => console.error('Error loading markdown:', error))
}, [integrationId])
const displayContent = isExpanded ? content : content.slice(0, CHAR_LIMIT)
const supportExpanding = content.length > CHAR_LIMIT || (content.match(/\n/g) || []).length > 1
if (displayContent.length === 0) return null
return (
<div className="px-10">
<div className="relative">
<motion.div
initial={false}
animate={{ height: isExpanded ? 'auto' : 80 }}
className="overflow-hidden"
transition={{ duration: 0.4 }}
>
<Markdown content={displayContent} className="!max-w-3xl" />
</motion.div>
{!isExpanded && (
<div
className={cn(
'bottom-0 left-0 right-0 h-24',
supportExpanding && 'bg-gradient-to-t from-background-200 to-transparent',
!isExpanded ? 'absolute' : 'relative'
)}
/>
)}
{supportExpanding && (
<div className={cn('bottom-0', !isExpanded ? 'absolute' : 'relative mt-3')}>
<button
className="text-foreground-light hover:text-foreground underline text-sm"
onClick={() => setIsExpanded(!isExpanded)}
>
{isExpanded ? 'Show less' : 'Read more'}
</button>
</div>
)}
</div>
</div>
)
}