Fix image expanding and truncation issue.

This commit is contained in:
Dessalines 2020-01-15 22:33:23 -05:00
parent 7e7bb2dc34
commit 432acf4bf7
2 changed files with 18 additions and 13 deletions

View File

@ -157,4 +157,5 @@ hr {
.fl-1 {
flex: 1;
}
}

View File

@ -136,18 +136,22 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
</button>
)}
</div>
{post.url && isImage(post.url) && !post.nsfw && !post.community_nsfw && (
<span
title={i18n.t('expand_here')}
class="pointer"
onClick={linkEvent(this, this.handleImageExpandClick)}
>
<img
class="mx-2 mt-1 float-left img-fluid thumbnail rounded"
src={imageThumbnailer(post.url)}
/>
</span>
)}
{post.url &&
isImage(post.url) &&
!post.nsfw &&
!post.community_nsfw &&
!this.state.imageExpanded && (
<span
title={i18n.t('expand_here')}
class="pointer"
onClick={linkEvent(this, this.handleImageExpandClick)}
>
<img
class="mx-2 mt-1 float-left img-fluid thumbnail rounded"
src={imageThumbnailer(post.url)}
/>
</span>
)}
{post.url && isVideo(post.url) && (
<video
playsinline