dify/web/app/components/base/video-gallery/index.stories.tsx
非法操作 f092bc1912
chore: add more stories (#27403)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-10-29 14:33:43 +08:00

41 lines
1.0 KiB
TypeScript

import type { Meta, StoryObj } from '@storybook/nextjs'
import VideoGallery from '.'
const VIDEO_SOURCES = [
'https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4',
'https://interactive-examples.mdn.mozilla.net/media/cc0-videos/forest.mp4',
]
const meta = {
title: 'Base/Data Display/VideoGallery',
component: VideoGallery,
parameters: {
layout: 'fullscreen',
docs: {
description: {
component: 'Stacked list of video players with custom controls for progress, volume, and fullscreen.',
},
source: {
language: 'tsx',
code: `
<VideoGallery
srcs={[
'https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4',
'https://interactive-examples.mdn.mozilla.net/media/cc0-videos/forest.mp4',
]}
/>
`.trim(),
},
},
},
tags: ['autodocs'],
args: {
srcs: VIDEO_SOURCES,
},
} satisfies Meta<typeof VideoGallery>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {}