mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-19 16:13:19 +00:00
89 lines
1.9 KiB
TypeScript
89 lines
1.9 KiB
TypeScript
"use client"
|
|
|
|
import { useState, useEffect } from "react"
|
|
|
|
interface YoutubeVideoProps {
|
|
url: string | null | undefined
|
|
}
|
|
|
|
// Extract YouTube video ID from various URL formats
|
|
function extractVideoId(url: string): string | null {
|
|
if (!url) return null
|
|
|
|
const patterns = [
|
|
/(?:youtube\.com\/watch\?v=|youtu\.be\/|youtube\.com\/embed\/)([^&\n?#]+)/,
|
|
/youtube\.com\/watch\?.*v=([^&\n?#]+)/,
|
|
]
|
|
|
|
for (const pattern of patterns) {
|
|
const match = url.match(pattern)
|
|
if (match?.[1]) {
|
|
return match[1]
|
|
}
|
|
}
|
|
|
|
return null
|
|
}
|
|
|
|
export function YoutubeVideo({ url }: YoutubeVideoProps) {
|
|
const [videoId, setVideoId] = useState<string | null>(null)
|
|
const [loading, setLoading] = useState(true)
|
|
const [error, setError] = useState<string | null>(null)
|
|
|
|
useEffect(() => {
|
|
if (!url) {
|
|
setError("No YouTube URL provided")
|
|
setLoading(false)
|
|
return
|
|
}
|
|
|
|
const id = extractVideoId(url)
|
|
if (!id) {
|
|
setError("Invalid YouTube URL format")
|
|
setLoading(false)
|
|
return
|
|
}
|
|
|
|
setVideoId(id)
|
|
setLoading(false)
|
|
setError(null)
|
|
}, [url])
|
|
|
|
if (!url) {
|
|
return (
|
|
<div className="flex items-center justify-center h-full text-gray-400">
|
|
No YouTube URL provided
|
|
</div>
|
|
)
|
|
}
|
|
|
|
if (loading) {
|
|
return (
|
|
<div className="flex items-center justify-center h-full text-gray-400">
|
|
Loading video…
|
|
</div>
|
|
)
|
|
}
|
|
|
|
if (error || !videoId) {
|
|
return (
|
|
<div className="flex items-center justify-center h-full text-red-400">
|
|
Error: {error || "Failed to extract video ID"}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="flex-1 flex items-center justify-center w-full p-4">
|
|
<div className="w-full max-w-4xl aspect-video">
|
|
<iframe
|
|
src={`https://www.youtube.com/embed/${videoId}`}
|
|
title="YouTube video player"
|
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
|
allowFullScreen
|
|
className="size-full rounded-lg shadow-lg"
|
|
/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|