CardDetailProvider wraps the content part of the GalleryCard. (#1556)
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
This commit is contained in:
parent
5204e2d080
commit
b5a194b62c
1 changed files with 22 additions and 19 deletions
|
@ -28,6 +28,7 @@ import {getCardContents} from '../../store/contents'
|
|||
import {getCardComments} from '../../store/comments'
|
||||
|
||||
import './galleryCard.scss'
|
||||
import {CardDetailProvider} from '../cardDetail/cardDetailContext'
|
||||
|
||||
type Props = {
|
||||
board: Board
|
||||
|
@ -120,29 +121,31 @@ const GalleryCard = React.memo((props: Props) => {
|
|||
<ImageElement block={image}/>
|
||||
</div>}
|
||||
{!image &&
|
||||
<div className='gallery-item'>
|
||||
{contents.map((block) => {
|
||||
if (Array.isArray(block)) {
|
||||
return block.map((b) => (
|
||||
<CardDetailProvider card={card}>
|
||||
<div className='gallery-item'>
|
||||
{contents.map((block) => {
|
||||
if (Array.isArray(block)) {
|
||||
return block.map((b) => (
|
||||
<ContentElement
|
||||
key={b.id}
|
||||
block={b}
|
||||
readonly={true}
|
||||
cords={{x: 0}}
|
||||
/>
|
||||
))
|
||||
}
|
||||
|
||||
return (
|
||||
<ContentElement
|
||||
key={b.id}
|
||||
block={b}
|
||||
key={block.id}
|
||||
block={block}
|
||||
readonly={true}
|
||||
cords={{x: 0}}
|
||||
/>
|
||||
))
|
||||
}
|
||||
|
||||
return (
|
||||
<ContentElement
|
||||
key={block.id}
|
||||
block={block}
|
||||
readonly={true}
|
||||
cords={{x: 0}}
|
||||
/>
|
||||
)
|
||||
})}
|
||||
</div>}
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
</CardDetailProvider>}
|
||||
{props.visibleTitle &&
|
||||
<div className='gallery-title'>
|
||||
{ card.fields.icon ? <div className='octo-icon'>{card.fields.icon}</div> : undefined }
|
||||
|
|
Loading…
Reference in a new issue