2026-04-23 23:40:34 -03:00
|
|
|
"use client"
|
|
|
|
|
|
2026-04-25 03:24:20 -03:00
|
|
|
import { useState, useEffect, useRef } from "react"
|
2026-04-25 15:08:25 -03:00
|
|
|
import { MoreHorizontal, Play, Globe, Monitor, Pencil, RotateCcw, Square, Trash2, Circle, Copy, Check, Video, ImageUp, GripVertical, Wrench } from "lucide-react"
|
2026-04-23 23:40:34 -03:00
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
|
import type { Stream } from "@/types/stream"
|
2026-04-25 03:24:20 -03:00
|
|
|
import type { SyntheticListenerMap } from "@dnd-kit/core/dist/hooks/utilities"
|
|
|
|
|
import type { DraggableAttributes } from "@dnd-kit/core"
|
2026-04-23 23:40:34 -03:00
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
|
stream: Stream
|
|
|
|
|
status?: Record<string, string>
|
2026-04-24 23:08:42 -03:00
|
|
|
localStatus?: string | null
|
2026-04-25 03:24:20 -03:00
|
|
|
cardSize?: "mini" | "sm" | "md" | "lg"
|
2026-04-23 23:40:34 -03:00
|
|
|
onRefresh: () => void
|
2026-04-24 23:08:42 -03:00
|
|
|
onLocalStatus: (id: string, s: string | null) => void
|
2026-04-25 03:24:20 -03:00
|
|
|
dragHandleListeners?: SyntheticListenerMap
|
|
|
|
|
dragHandleAttributes?: DraggableAttributes
|
|
|
|
|
isDragging?: boolean
|
2026-04-23 23:40:34 -03:00
|
|
|
}
|
|
|
|
|
|
2026-04-24 23:08:42 -03:00
|
|
|
function StatusBadge({ status, localStatus }: { status?: Record<string, string>; localStatus?: string | null }) {
|
|
|
|
|
const label = localStatus ?? (
|
|
|
|
|
status?.ffmpeg === "RUNNING" ? "running" :
|
|
|
|
|
status?.ffmpeg === "STARTING" ? "starting" :
|
|
|
|
|
status?.ffmpeg === "FATAL" ? "error" :
|
|
|
|
|
status?.ffmpeg === "STOPPED" ? "stopped" : "..."
|
|
|
|
|
)
|
2026-04-23 23:40:34 -03:00
|
|
|
const color =
|
2026-04-24 23:08:42 -03:00
|
|
|
label === "running" ? "bg-green-500" :
|
|
|
|
|
label === "starting" ? "bg-yellow-500" :
|
|
|
|
|
label === "restarting" ? "bg-yellow-500" :
|
|
|
|
|
label === "stopping" ? "bg-orange-500" :
|
|
|
|
|
label === "error" ? "bg-red-500" : "bg-zinc-500"
|
2026-04-23 23:40:34 -03:00
|
|
|
return (
|
2026-04-24 23:08:42 -03:00
|
|
|
<span className="flex items-center gap-1.5 text-xs text-muted-foreground whitespace-nowrap">
|
|
|
|
|
<Circle className={cn("w-2 h-2 fill-current shrink-0", color)} />
|
2026-04-23 23:40:34 -03:00
|
|
|
{label}
|
|
|
|
|
</span>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-24 23:08:42 -03:00
|
|
|
function copyToClipboard(text: string) {
|
|
|
|
|
if (navigator.clipboard && window.isSecureContext) {
|
|
|
|
|
return navigator.clipboard.writeText(text)
|
|
|
|
|
}
|
|
|
|
|
const el = document.createElement("textarea")
|
|
|
|
|
el.value = text
|
|
|
|
|
el.style.position = "fixed"
|
|
|
|
|
el.style.opacity = "0"
|
|
|
|
|
document.body.appendChild(el)
|
|
|
|
|
el.focus()
|
|
|
|
|
el.select()
|
|
|
|
|
document.execCommand("copy")
|
|
|
|
|
document.body.removeChild(el)
|
|
|
|
|
return Promise.resolve()
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-25 03:24:20 -03:00
|
|
|
const CARD_WIDTHS = { mini: "max-w-[200px]", sm: "max-w-[240px]", md: "max-w-[300px]", lg: "max-w-[380px]" }
|
2026-04-24 23:08:42 -03:00
|
|
|
|
2026-04-25 03:24:20 -03:00
|
|
|
function ConfirmDeleteModal({ name, onConfirm, onCancel }: { name: string; onConfirm: () => void; onCancel: () => void }) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center">
|
|
|
|
|
<div className="absolute inset-0 bg-black/60" onClick={onCancel} />
|
|
|
|
|
<div className="relative z-10 w-80 rounded-xl border border-border shadow-2xl p-6 flex flex-col gap-4" style={{ background: "#1c1c1c" }}>
|
|
|
|
|
<div className="flex flex-col gap-1">
|
|
|
|
|
<p className="font-semibold text-sm">Delete stream</p>
|
|
|
|
|
<p className="text-sm text-muted-foreground">
|
|
|
|
|
Are you sure you want to delete <span className="text-foreground font-medium">{name}</span>? This action cannot be undone.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex gap-2 justify-end">
|
|
|
|
|
<button
|
|
|
|
|
onClick={onCancel}
|
|
|
|
|
className="px-4 py-1.5 rounded border border-border text-sm hover:bg-[#2a2a2a] transition-colors cursor-pointer"
|
|
|
|
|
>
|
|
|
|
|
Cancel
|
|
|
|
|
</button>
|
|
|
|
|
<button
|
|
|
|
|
onClick={onConfirm}
|
|
|
|
|
className="px-4 py-1.5 rounded border border-destructive bg-destructive/10 text-destructive text-sm hover:bg-destructive hover:text-white transition-colors cursor-pointer"
|
|
|
|
|
>
|
|
|
|
|
Delete
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function StreamCard({ stream, status, localStatus, cardSize = "md", onRefresh, onLocalStatus, dragHandleListeners, dragHandleAttributes, isDragging }: Props) {
|
2026-04-23 23:40:34 -03:00
|
|
|
const [menuOpen, setMenuOpen] = useState(false)
|
2026-04-24 23:08:42 -03:00
|
|
|
const [copied, setCopied] = useState(false)
|
|
|
|
|
const [thumbKey, setThumbKey] = useState(0)
|
|
|
|
|
const [thumbError, setThumbError] = useState(false)
|
|
|
|
|
const [thumbCapturing, setThumbCapturing] = useState(false)
|
2026-04-25 03:24:20 -03:00
|
|
|
const [confirmDelete, setConfirmDelete] = useState(false)
|
|
|
|
|
const pollRef = useRef<ReturnType<typeof setInterval> | null>(null)
|
2026-04-23 23:40:34 -03:00
|
|
|
|
2026-04-24 23:08:42 -03:00
|
|
|
useEffect(() => {
|
|
|
|
|
if (!thumbError || thumbCapturing) return
|
|
|
|
|
const interval = setInterval(() => setThumbKey((k) => k + 1), 15000)
|
|
|
|
|
return () => clearInterval(interval)
|
|
|
|
|
}, [thumbError, thumbCapturing])
|
|
|
|
|
|
2026-04-25 03:24:20 -03:00
|
|
|
useEffect(() => () => { if (pollRef.current) clearInterval(pollRef.current) }, [])
|
|
|
|
|
|
2026-04-24 23:08:42 -03:00
|
|
|
async function action(act: string, optimisticStatus: string) {
|
|
|
|
|
onLocalStatus(stream.id, optimisticStatus)
|
|
|
|
|
setMenuOpen(false)
|
2026-04-23 23:40:34 -03:00
|
|
|
await fetch(`/api/streams/${stream.id}/${act}`, { method: "POST" })
|
|
|
|
|
onRefresh()
|
2026-04-24 23:08:42 -03:00
|
|
|
setTimeout(() => onLocalStatus(stream.id, null), 15000)
|
2026-04-23 23:40:34 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function remove() {
|
2026-04-25 03:24:20 -03:00
|
|
|
setMenuOpen(false)
|
|
|
|
|
setConfirmDelete(true)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function confirmRemove() {
|
|
|
|
|
setConfirmDelete(false)
|
2026-04-23 23:40:34 -03:00
|
|
|
await fetch(`/api/streams/${stream.id}`, { method: "DELETE" })
|
|
|
|
|
onRefresh()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function openVNC() {
|
2026-04-26 03:02:31 -03:00
|
|
|
window.location.href = `/vnc/${stream.id}`
|
2026-04-24 23:08:42 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function copyRTMP() {
|
|
|
|
|
const url = `rtmp://${window.location.hostname}:1935/live/${stream.id}`
|
|
|
|
|
copyToClipboard(url).then(() => {
|
|
|
|
|
setCopied(true)
|
|
|
|
|
setTimeout(() => setCopied(false), 2000)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function refreshThumb() {
|
|
|
|
|
setMenuOpen(false)
|
|
|
|
|
setThumbError(false)
|
2026-04-25 03:24:20 -03:00
|
|
|
setThumbCapturing(true)
|
|
|
|
|
if (pollRef.current) clearInterval(pollRef.current)
|
2026-04-24 23:08:42 -03:00
|
|
|
await fetch(`/api/streams/${stream.id}/thumb`, { method: "POST" })
|
2026-04-25 03:24:20 -03:00
|
|
|
const deadline = Date.now() + 30000
|
|
|
|
|
pollRef.current = setInterval(async () => {
|
|
|
|
|
const res = await fetch(`/api/streams/${stream.id}/thumb?t=${Date.now()}`, { cache: "no-store" })
|
|
|
|
|
if (res.ok) {
|
|
|
|
|
clearInterval(pollRef.current!); pollRef.current = null
|
|
|
|
|
setThumbKey((k) => k + 1)
|
|
|
|
|
setThumbCapturing(false)
|
|
|
|
|
} else if (Date.now() >= deadline) {
|
|
|
|
|
clearInterval(pollRef.current!); pollRef.current = null
|
|
|
|
|
setThumbCapturing(false)
|
|
|
|
|
}
|
|
|
|
|
}, 2000)
|
2026-04-23 23:40:34 -03:00
|
|
|
}
|
|
|
|
|
|
2026-04-24 23:08:42 -03:00
|
|
|
function play(mode: string) {
|
|
|
|
|
window.location.href = `/player/${stream.id}?mode=${mode}`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const playBtn = "w-full flex items-center gap-2 text-xs px-3 py-2 rounded border border-border bg-muted hover:bg-[#2a2a2a] active:bg-[#333] transition-colors cursor-pointer"
|
|
|
|
|
const menuItem = "w-full flex items-center gap-2 px-3 py-2 text-sm hover:bg-[#2a2a2a] active:bg-[#333] transition-colors cursor-pointer"
|
|
|
|
|
|
2026-04-23 23:40:34 -03:00
|
|
|
return (
|
2026-04-25 03:24:20 -03:00
|
|
|
<>
|
|
|
|
|
{confirmDelete && (
|
|
|
|
|
<ConfirmDeleteModal
|
|
|
|
|
name={stream.name}
|
|
|
|
|
onConfirm={confirmRemove}
|
|
|
|
|
onCancel={() => setConfirmDelete(false)}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
<div className={cn("relative rounded-lg border border-border bg-card p-3 flex flex-col gap-2.5 w-full transition-opacity", CARD_WIDTHS[cardSize], isDragging && "opacity-40")}>
|
|
|
|
|
|
|
|
|
|
{/* Drag handle strip */}
|
|
|
|
|
{(dragHandleListeners || dragHandleAttributes) && (
|
|
|
|
|
<div
|
|
|
|
|
{...dragHandleListeners}
|
|
|
|
|
{...dragHandleAttributes}
|
|
|
|
|
className="-mx-3 -mt-3 h-7 flex items-center justify-center rounded-t-lg cursor-grab active:cursor-grabbing hover:bg-white/[0.05] transition-colors border-b border-border/40 group"
|
|
|
|
|
>
|
|
|
|
|
<GripVertical className="w-4 h-4 text-muted-foreground/30 group-hover:text-muted-foreground/65 transition-colors" />
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2026-04-24 23:08:42 -03:00
|
|
|
|
|
|
|
|
{/* Thumbnail */}
|
2026-04-25 03:24:20 -03:00
|
|
|
<div className="w-full aspect-video rounded overflow-hidden bg-muted flex items-center justify-center relative">
|
2026-04-24 23:08:42 -03:00
|
|
|
{thumbCapturing ? (
|
|
|
|
|
<span className="text-xs text-muted-foreground animate-pulse">Capturing...</span>
|
|
|
|
|
) : (
|
2026-04-25 03:24:20 -03:00
|
|
|
<>
|
|
|
|
|
{thumbError && (
|
|
|
|
|
<div className="absolute inset-0 flex items-center justify-center">
|
|
|
|
|
<Video className="w-5 h-5 text-muted-foreground/25" />
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
<img
|
|
|
|
|
key={thumbKey}
|
|
|
|
|
src={`/api/streams/${stream.id}/thumb?t=${thumbKey}`}
|
|
|
|
|
className={cn("w-full h-full object-cover", thumbError && "invisible")}
|
|
|
|
|
onError={() => setThumbError(true)}
|
|
|
|
|
onLoad={() => setThumbError(false)}
|
|
|
|
|
/>
|
|
|
|
|
</>
|
2026-04-24 23:08:42 -03:00
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-04-23 23:40:34 -03:00
|
|
|
<div className="flex items-start justify-between gap-2">
|
|
|
|
|
<div className="min-w-0">
|
2026-04-24 23:08:42 -03:00
|
|
|
<p className="font-semibold text-sm truncate">{stream.name}</p>
|
2026-04-23 23:40:34 -03:00
|
|
|
<p className="text-xs text-muted-foreground font-mono truncate">{stream.id}</p>
|
|
|
|
|
</div>
|
2026-04-24 23:08:42 -03:00
|
|
|
<div className="flex items-center gap-1.5 shrink-0">
|
|
|
|
|
<StatusBadge status={status} localStatus={localStatus} />
|
2026-04-25 03:24:20 -03:00
|
|
|
<div className="relative">
|
|
|
|
|
<button onClick={() => setMenuOpen((v) => !v)} className="p-1 rounded hover:bg-[#2a2a2a] transition-colors cursor-pointer">
|
|
|
|
|
<MoreHorizontal className="w-4 h-4" />
|
|
|
|
|
</button>
|
|
|
|
|
{menuOpen && (
|
|
|
|
|
<>
|
|
|
|
|
<div className="fixed inset-0 z-40" onClick={() => setMenuOpen(false)} />
|
|
|
|
|
<div className="absolute top-full right-0 mt-1 z-50 min-w-[180px] rounded-lg border border-border shadow-2xl overflow-hidden"
|
|
|
|
|
style={{ background: "#1c1c1c" }}>
|
|
|
|
|
<button onClick={() => { setMenuOpen(false); window.location.href = `/streams/${stream.id}/edit` }} className={menuItem}>
|
|
|
|
|
<Pencil className="w-3.5 h-3.5" /> Edit
|
|
|
|
|
</button>
|
|
|
|
|
<button onClick={() => action("restart", "restarting")} className={menuItem}>
|
|
|
|
|
<RotateCcw className="w-3.5 h-3.5" /> Restart
|
|
|
|
|
</button>
|
2026-04-25 15:08:25 -03:00
|
|
|
<button onClick={() => action("recreate", "restarting")} className={menuItem}>
|
|
|
|
|
<Wrench className="w-3.5 h-3.5" /> Recreate
|
|
|
|
|
</button>
|
2026-04-25 03:24:20 -03:00
|
|
|
{status?.ffmpeg === "RUNNING" || localStatus === "restarting" ? (
|
|
|
|
|
<button onClick={() => action("stop", "stopping")} className={menuItem}>
|
|
|
|
|
<Square className="w-3.5 h-3.5" /> Stop
|
|
|
|
|
</button>
|
|
|
|
|
) : (
|
|
|
|
|
<button onClick={() => action("start", "starting")} className={menuItem}>
|
|
|
|
|
<Play className="w-3.5 h-3.5" /> Start
|
|
|
|
|
</button>
|
|
|
|
|
)}
|
|
|
|
|
<button onClick={() => { setMenuOpen(false); copyRTMP() }} className={menuItem}>
|
|
|
|
|
{copied ? <Check className="w-3.5 h-3.5 text-green-500" /> : <Copy className="w-3.5 h-3.5" />}
|
|
|
|
|
{copied ? "Copied!" : "Copy RTMP"}
|
|
|
|
|
</button>
|
|
|
|
|
<div className="border-t border-border" />
|
|
|
|
|
<button onClick={refreshThumb} disabled={thumbCapturing} className={cn(menuItem, thumbCapturing && "opacity-50")}>
|
|
|
|
|
<ImageUp className="w-3.5 h-3.5" />
|
|
|
|
|
{thumbCapturing ? "Capturing..." : "Refresh thumbnail"}
|
|
|
|
|
</button>
|
|
|
|
|
<div className="border-t border-border" />
|
|
|
|
|
<button onClick={remove} className={cn(menuItem, "text-destructive")}>
|
|
|
|
|
<Trash2 className="w-3.5 h-3.5" /> Delete
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
2026-04-23 23:40:34 -03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<p className="text-xs text-muted-foreground truncate" title={stream.url}>{stream.url}</p>
|
|
|
|
|
|
2026-04-24 23:08:42 -03:00
|
|
|
<div className="flex flex-col gap-1.5">
|
|
|
|
|
<button onClick={() => play("hls")} className={playBtn}><Play className="w-3 h-3 shrink-0" /> Play Stream</button>
|
|
|
|
|
<button onClick={() => play("html")} className={playBtn}><Globe className="w-3 h-3 shrink-0" /> Run HTML</button>
|
|
|
|
|
<button onClick={openVNC} className={playBtn}><Monitor className="w-3 h-3 shrink-0" /> Open VNC</button>
|
2026-04-23 23:40:34 -03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-04-25 03:24:20 -03:00
|
|
|
</>
|
2026-04-23 23:40:34 -03:00
|
|
|
)
|
|
|
|
|
}
|