mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-01 18:25:01 -05:00
* update infra and remove railway
* overhaul docs
* added a lot more videos/examples to docs
* Revert "update infra and remove railway"
This reverts commit b23258a5a1.
* remove unused lines
* update start block docs
* update agent docs
* update API block docs
* update function block docs
* update response block docs
* update parallel and router docs
* update workflow docs
* update connections docs
* fix(sheets): fixed google sheets update (#1311)
Google sheets append was sending an invalid shape to the google sheets api. This PR fixes this by having similar logic to what is in append.ts
* fix(serializer): Required-field validation now respects sub-block visibility (#1313)
* audit content
* audit content
---------
Co-authored-by: Vikhyath Mondreti <vikhyath@simstudio.ai>
Co-authored-by: Adam Gough <77861281+aadamgough@users.noreply.github.com>
Co-authored-by: Vikhyath Mondreti <vikhyathvikku@gmail.com>
58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import { getVideoUrl } from '@/lib/utils'
|
|
import { Lightbox } from './lightbox'
|
|
|
|
interface VideoProps {
|
|
src: string
|
|
className?: string
|
|
autoPlay?: boolean
|
|
loop?: boolean
|
|
muted?: boolean
|
|
playsInline?: boolean
|
|
enableLightbox?: boolean
|
|
}
|
|
|
|
export function Video({
|
|
src,
|
|
className = 'w-full rounded-xl border border-border shadow-sm overflow-hidden outline-none focus:outline-none',
|
|
autoPlay = true,
|
|
loop = true,
|
|
muted = true,
|
|
playsInline = true,
|
|
enableLightbox = true,
|
|
}: VideoProps) {
|
|
const [isLightboxOpen, setIsLightboxOpen] = useState(false)
|
|
|
|
const handleVideoClick = () => {
|
|
if (enableLightbox) {
|
|
setIsLightboxOpen(true)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<video
|
|
autoPlay={autoPlay}
|
|
loop={loop}
|
|
muted={muted}
|
|
playsInline={playsInline}
|
|
className={`${className} ${enableLightbox ? 'cursor-pointer transition-opacity hover:opacity-90' : ''}`}
|
|
src={getVideoUrl(src)}
|
|
onClick={handleVideoClick}
|
|
/>
|
|
|
|
{enableLightbox && (
|
|
<Lightbox
|
|
isOpen={isLightboxOpen}
|
|
onClose={() => setIsLightboxOpen(false)}
|
|
src={src}
|
|
alt={`Video: ${src}`}
|
|
type='video'
|
|
/>
|
|
)}
|
|
</>
|
|
)
|
|
}
|