Forgiving blurhash

This commit is contained in:
Zhiyuan Zheng 2020-12-30 11:55:51 +01:00
parent 3e3ae67155
commit e765a8fd7c
No known key found for this signature in database
GPG Key ID: 078A93AB607D85E0
2 changed files with 12 additions and 10 deletions

View File

@ -51,14 +51,16 @@ const AttachmentVideo: React.FC<Props> = ({ sensitiveShown, video }) => {
/>
<Pressable style={styles.overlay}>
{sensitiveShown ? (
<Surface
style={{
width: '100%',
height: '100%'
}}
>
<Blurhash hash={video.blurhash} />
</Surface>
video.blurhash ? (
<Surface
style={{
width: '100%',
height: '100%'
}}
>
<Blurhash hash={video.blurhash} />
</Surface>
) : null
) : (
<Button
type='icon'

View File

@ -33,11 +33,11 @@ const TimelineCard: React.FC<Props> = ({ card }) => {
if (imageLoaded) {
return <Image source={{ uri: card.image }} style={styles.image} />
} else {
return (
return card.blurhash ? (
<Surface style={styles.image}>
<Blurhash hash={card.blurhash} />
</Surface>
)
) : null
}
}, [imageLoaded])