mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-04 05:55:12 +08:00
22 lines
760 B
TypeScript
22 lines
760 B
TypeScript
/**
|
|
* @fileoverview AudioBlock component for rendering audio elements in Markdown.
|
|
* Extracted from the main markdown renderer for modularity.
|
|
* Uses the AudioGallery component to display audio players.
|
|
*/
|
|
import React, { memo } from 'react'
|
|
import AudioGallery from '@/app/components/base/audio-gallery'
|
|
|
|
const AudioBlock: any = memo(({ node }: any) => {
|
|
const srcs = node.children.filter((child: any) => 'properties' in child).map((child: any) => (child as any).properties.src)
|
|
if (srcs.length === 0) {
|
|
const src = node.properties?.src
|
|
if (src)
|
|
return <AudioGallery key={src} srcs={[src]} />
|
|
return null
|
|
}
|
|
return <AudioGallery key={srcs.join()} srcs={srcs} />
|
|
})
|
|
AudioBlock.displayName = 'AudioBlock'
|
|
|
|
export default AudioBlock
|