mirror of
https://github.com/tooot-app/app
synced 2025-04-04 05:31:05 +02:00
commit
80c6b1fe26
@ -73,23 +73,19 @@ const ParseEmojis = React.memo(
|
|||||||
if (emojiIndex === -1) {
|
if (emojiIndex === -1) {
|
||||||
return <Text key={emojiShortcode + i}>{emojiShortcode}</Text>
|
return <Text key={emojiShortcode + i}>{emojiShortcode}</Text>
|
||||||
} else {
|
} else {
|
||||||
if (i === 0) {
|
const uri = reduceMotionEnabled
|
||||||
return <Text key={emojiShortcode + i}> </Text>
|
? emojis[emojiIndex].static_url
|
||||||
|
: emojis[emojiIndex].url
|
||||||
|
if (validUrl.isHttpsUri(uri)) {
|
||||||
|
return (
|
||||||
|
<FastImage
|
||||||
|
key={emojiShortcode + i}
|
||||||
|
source={{ uri }}
|
||||||
|
style={styles.image}
|
||||||
|
/>
|
||||||
|
)
|
||||||
} else {
|
} else {
|
||||||
const uri = reduceMotionEnabled
|
return null
|
||||||
? emojis[emojiIndex].static_url
|
|
||||||
: emojis[emojiIndex].url
|
|
||||||
if (validUrl.isHttpsUri(uri)) {
|
|
||||||
return (
|
|
||||||
<FastImage
|
|
||||||
key={emojiShortcode + i}
|
|
||||||
source={{ uri }}
|
|
||||||
style={styles.image}
|
|
||||||
/>
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -152,14 +152,16 @@ const TimelinePoll: React.FC<Props> = ({
|
|||||||
</Text>
|
</Text>
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
return (
|
if (poll.expires_at) {
|
||||||
<Text style={[styles.expiration, { color: theme.secondary }]}>
|
return (
|
||||||
<Trans
|
<Text style={[styles.expiration, { color: theme.secondary }]}>
|
||||||
i18nKey='componentTimeline:shared.poll.meta.expiration.until'
|
<Trans
|
||||||
components={[<RelativeTime date={poll.expires_at} />]}
|
i18nKey='componentTimeline:shared.poll.meta.expiration.until'
|
||||||
/>
|
components={[<RelativeTime date={poll.expires_at} />]}
|
||||||
</Text>
|
/>
|
||||||
)
|
</Text>
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}, [mode, i18n.language, poll.expired, poll.expires_at])
|
}, [mode, i18n.language, poll.expired, poll.expires_at])
|
||||||
|
|
||||||
|
@ -28,6 +28,7 @@ const ComposeDrafts: React.FC<Props> = ({ accessibleRefDrafts }) => {
|
|||||||
if (!composeState.dirty && instanceDrafts?.length) {
|
if (!composeState.dirty && instanceDrafts?.length) {
|
||||||
return (
|
return (
|
||||||
<View
|
<View
|
||||||
|
accessible
|
||||||
ref={accessibleRefDrafts}
|
ref={accessibleRefDrafts}
|
||||||
style={styles.base}
|
style={styles.base}
|
||||||
children={
|
children={
|
||||||
|
Loading…
x
Reference in New Issue
Block a user