Hiding embed title if matches post title. Fixes #60

This commit is contained in:
Dessalines 2020-11-10 12:58:41 -06:00
parent 46f2a7cda7
commit 2a4581e9ba

View file

@ -33,17 +33,8 @@ export class IFramelyCard extends Component<
<div class="row"> <div class="row">
<div class="col-12"> <div class="col-12">
<div class="card-body"> <div class="card-body">
{post.name !== post.embed_title && [
<h5 class="card-title d-inline"> <h5 class="card-title d-inline">
{post.embed_html ? (
<span
class="unselectable pointer"
onClick={linkEvent(this, this.handleIframeExpand)}
data-tippy-content={i18n.t('expand_here')}
>
{post.embed_title}
</span>
) : (
<span>
<a <a
class="text-body" class="text-body"
target="_blank" target="_blank"
@ -52,9 +43,7 @@ export class IFramelyCard extends Component<
> >
{post.embed_title} {post.embed_title}
</a> </a>
</span> </h5>,
)}
</h5>
<span class="d-inline-block ml-2 mb-2 small text-muted"> <span class="d-inline-block ml-2 mb-2 small text-muted">
<a <a
class="text-muted font-italic" class="text-muted font-italic"
@ -67,22 +56,23 @@ export class IFramelyCard extends Component<
<use xlinkHref="#icon-external-link"></use> <use xlinkHref="#icon-external-link"></use>
</svg> </svg>
</a> </a>
{post.embed_html && ( </span>,
<span ]}
class="ml-2 pointer text-monospace"
onClick={linkEvent(this, this.handleIframeExpand)}
data-tippy-content={i18n.t('expand_here')}
>
{this.state.expanded ? '[-]' : '[+]'}
</span>
)}
</span>
{post.embed_description && ( {post.embed_description && (
<div <div
className="card-text small text-muted md-div" className="card-text small text-muted md-div"
dangerouslySetInnerHTML={mdToHtml(post.embed_description)} dangerouslySetInnerHTML={mdToHtml(post.embed_description)}
/> />
)} )}
{post.embed_html && (
<button
class="mt-2 btn btn-secondary ml-2 pointer text-monospace"
onClick={linkEvent(this, this.handleIframeExpand)}
data-tippy-content={i18n.t('expand_here')}
>
{this.state.expanded ? '-' : '+'}
</button>
)}
</div> </div>
</div> </div>
</div> </div>