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 {getCardComments} from '../../store/comments'
|
||||||
|
|
||||||
import './galleryCard.scss'
|
import './galleryCard.scss'
|
||||||
|
import {CardDetailProvider} from '../cardDetail/cardDetailContext'
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
board: Board
|
board: Board
|
||||||
|
@ -120,6 +121,7 @@ const GalleryCard = React.memo((props: Props) => {
|
||||||
<ImageElement block={image}/>
|
<ImageElement block={image}/>
|
||||||
</div>}
|
</div>}
|
||||||
{!image &&
|
{!image &&
|
||||||
|
<CardDetailProvider card={card}>
|
||||||
<div className='gallery-item'>
|
<div className='gallery-item'>
|
||||||
{contents.map((block) => {
|
{contents.map((block) => {
|
||||||
if (Array.isArray(block)) {
|
if (Array.isArray(block)) {
|
||||||
|
@ -142,7 +144,8 @@ const GalleryCard = React.memo((props: Props) => {
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
})}
|
})}
|
||||||
</div>}
|
</div>
|
||||||
|
</CardDetailProvider>}
|
||||||
{props.visibleTitle &&
|
{props.visibleTitle &&
|
||||||
<div className='gallery-title'>
|
<div className='gallery-title'>
|
||||||
{ card.fields.icon ? <div className='octo-icon'>{card.fields.icon}</div> : undefined }
|
{ card.fields.icon ? <div className='octo-icon'>{card.fields.icon}</div> : undefined }
|
||||||
|
|
Loading…
Reference in a new issue