mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
3230f4a0ec
Some checks are pending
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Waiting to run
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Blocked by required conditions
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Blocked by required conditions
Co-authored-by: luowei <glpat-EjySCyNjWiLqAED-YmwM> Co-authored-by: crazywoola <427733928@qq.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
39 lines
1016 B
TypeScript
39 lines
1016 B
TypeScript
import type { FC } from 'react'
|
|
import { createPortal } from 'react-dom'
|
|
import { RiCloseLine } from '@remixicon/react'
|
|
|
|
type VideoPreviewProps = {
|
|
url: string
|
|
title: string
|
|
onCancel: () => void
|
|
}
|
|
const VideoPreview: FC<VideoPreviewProps> = ({
|
|
url,
|
|
title,
|
|
onCancel,
|
|
}) => {
|
|
return createPortal(
|
|
<div className='fixed inset-0 p-8 flex items-center justify-center bg-black/80 z-[1000]' onClick={e => e.stopPropagation()}>
|
|
<div>
|
|
<video controls title={title} autoPlay={false} preload="metadata">
|
|
<source
|
|
type="video/mp4"
|
|
src={url}
|
|
className='max-w-full max-h-full'
|
|
/>
|
|
</video>
|
|
</div>
|
|
<div
|
|
className='absolute top-6 right-6 flex items-center justify-center w-8 h-8 bg-white/[0.08] rounded-lg backdrop-blur-[2px] cursor-pointer'
|
|
onClick={onCancel}
|
|
>
|
|
<RiCloseLine className='w-4 h-4 text-gray-500'/>
|
|
</div>
|
|
</div>
|
|
,
|
|
document.body,
|
|
)
|
|
}
|
|
|
|
export default VideoPreview
|