752 lines
24 KiB
TypeScript
752 lines
24 KiB
TypeScript
import React, {useMemo} from 'react'
|
|
import {observer} from 'mobx-react-lite'
|
|
import {Linking, StyleSheet, View} from 'react-native'
|
|
import Clipboard from '@react-native-clipboard/clipboard'
|
|
import {AtUri, AppBskyFeedDefs} from '@atproto/api'
|
|
import {
|
|
FontAwesomeIcon,
|
|
FontAwesomeIconStyle,
|
|
} from '@fortawesome/react-native-fontawesome'
|
|
import {PostThreadItemModel} from 'state/models/content/post-thread-item'
|
|
import {Link, TextLink} from '../util/Link'
|
|
import {RichText} from '../util/text/RichText'
|
|
import {Text} from '../util/text/Text'
|
|
import {PostDropdownBtn} from '../util/forms/PostDropdownBtn'
|
|
import * as Toast from '../util/Toast'
|
|
import {PreviewableUserAvatar} from '../util/UserAvatar'
|
|
import {s} from 'lib/styles'
|
|
import {niceDate} from 'lib/strings/time'
|
|
import {sanitizeDisplayName} from 'lib/strings/display-names'
|
|
import {sanitizeHandle} from 'lib/strings/handles'
|
|
import {countLines, pluralize} from 'lib/strings/helpers'
|
|
import {isEmbedByEmbedder} from 'lib/embeds'
|
|
import {getTranslatorLink, isPostInLanguage} from '../../../locale/helpers'
|
|
import {useStores} from 'state/index'
|
|
import {PostMeta} from '../util/PostMeta'
|
|
import {PostEmbeds} from '../util/post-embeds'
|
|
import {PostCtrls} from '../util/post-ctrls/PostCtrls'
|
|
import {PostHider} from '../util/moderation/PostHider'
|
|
import {ContentHider} from '../util/moderation/ContentHider'
|
|
import {PostAlerts} from '../util/moderation/PostAlerts'
|
|
import {PostSandboxWarning} from '../util/PostSandboxWarning'
|
|
import {ErrorMessage} from '../util/error/ErrorMessage'
|
|
import {usePalette} from 'lib/hooks/usePalette'
|
|
import {formatCount} from '../util/numeric/format'
|
|
import {TimeElapsed} from 'view/com/util/TimeElapsed'
|
|
import {makeProfileLink} from 'lib/routes/links'
|
|
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
|
|
import {MAX_POST_LINES} from 'lib/constants'
|
|
import {logger} from '#/logger'
|
|
import {useMutedThreads, useToggleThreadMute} from '#/state/muted-threads'
|
|
import {useLanguagePrefs} from '#/state/preferences'
|
|
|
|
export const PostThreadItem = observer(function PostThreadItem({
|
|
item,
|
|
onPostReply,
|
|
hasPrecedingItem,
|
|
treeView,
|
|
}: {
|
|
item: PostThreadItemModel
|
|
onPostReply: () => void
|
|
hasPrecedingItem: boolean
|
|
treeView: boolean
|
|
}) {
|
|
const pal = usePalette('default')
|
|
const store = useStores()
|
|
const mutedThreads = useMutedThreads()
|
|
const toggleThreadMute = useToggleThreadMute()
|
|
const langPrefs = useLanguagePrefs()
|
|
const [deleted, setDeleted] = React.useState(false)
|
|
const [limitLines, setLimitLines] = React.useState(
|
|
countLines(item.richText?.text) >= MAX_POST_LINES,
|
|
)
|
|
const styles = useStyles()
|
|
const record = item.postRecord
|
|
const hasEngagement = item.post.likeCount || item.post.repostCount
|
|
|
|
const itemUri = item.post.uri
|
|
const itemCid = item.post.cid
|
|
const itemHref = React.useMemo(() => {
|
|
const urip = new AtUri(item.post.uri)
|
|
return makeProfileLink(item.post.author, 'post', urip.rkey)
|
|
}, [item.post.uri, item.post.author])
|
|
const itemTitle = `Post by ${item.post.author.handle}`
|
|
const authorHref = makeProfileLink(item.post.author)
|
|
const authorTitle = item.post.author.handle
|
|
const isAuthorMuted = item.post.author.viewer?.muted
|
|
const likesHref = React.useMemo(() => {
|
|
const urip = new AtUri(item.post.uri)
|
|
return makeProfileLink(item.post.author, 'post', urip.rkey, 'liked-by')
|
|
}, [item.post.uri, item.post.author])
|
|
const likesTitle = 'Likes on this post'
|
|
const repostsHref = React.useMemo(() => {
|
|
const urip = new AtUri(item.post.uri)
|
|
return makeProfileLink(item.post.author, 'post', urip.rkey, 'reposted-by')
|
|
}, [item.post.uri, item.post.author])
|
|
const repostsTitle = 'Reposts of this post'
|
|
|
|
const translatorUrl = getTranslatorLink(
|
|
record?.text || '',
|
|
langPrefs.primaryLanguage,
|
|
)
|
|
const needsTranslation = useMemo(
|
|
() =>
|
|
Boolean(
|
|
langPrefs.primaryLanguage &&
|
|
!isPostInLanguage(item.post, [langPrefs.primaryLanguage]),
|
|
),
|
|
[item.post, langPrefs.primaryLanguage],
|
|
)
|
|
|
|
const onPressReply = React.useCallback(() => {
|
|
store.shell.openComposer({
|
|
replyTo: {
|
|
uri: item.post.uri,
|
|
cid: item.post.cid,
|
|
text: record?.text as string,
|
|
author: {
|
|
handle: item.post.author.handle,
|
|
displayName: item.post.author.displayName,
|
|
avatar: item.post.author.avatar,
|
|
},
|
|
},
|
|
onPost: onPostReply,
|
|
})
|
|
}, [store, item, record, onPostReply])
|
|
|
|
const onPressToggleRepost = React.useCallback(() => {
|
|
return item
|
|
.toggleRepost()
|
|
.catch(e => logger.error('Failed to toggle repost', {error: e}))
|
|
}, [item])
|
|
|
|
const onPressToggleLike = React.useCallback(() => {
|
|
return item
|
|
.toggleLike()
|
|
.catch(e => logger.error('Failed to toggle like', {error: e}))
|
|
}, [item])
|
|
|
|
const onCopyPostText = React.useCallback(() => {
|
|
Clipboard.setString(record?.text || '')
|
|
Toast.show('Copied to clipboard')
|
|
}, [record])
|
|
|
|
const onOpenTranslate = React.useCallback(() => {
|
|
Linking.openURL(translatorUrl)
|
|
}, [translatorUrl])
|
|
|
|
const onToggleThreadMute = React.useCallback(() => {
|
|
try {
|
|
const muted = toggleThreadMute(item.data.rootUri)
|
|
if (muted) {
|
|
Toast.show('You will no longer receive notifications for this thread')
|
|
} else {
|
|
Toast.show('You will now receive notifications for this thread')
|
|
}
|
|
} catch (e) {
|
|
logger.error('Failed to toggle thread mute', {error: e})
|
|
}
|
|
}, [item, toggleThreadMute])
|
|
|
|
const onDeletePost = React.useCallback(() => {
|
|
item.delete().then(
|
|
() => {
|
|
setDeleted(true)
|
|
Toast.show('Post deleted')
|
|
},
|
|
e => {
|
|
logger.error('Failed to delete post', {error: e})
|
|
Toast.show('Failed to delete post, please try again')
|
|
},
|
|
)
|
|
}, [item])
|
|
|
|
const onPressShowMore = React.useCallback(() => {
|
|
setLimitLines(false)
|
|
}, [setLimitLines])
|
|
|
|
if (!record) {
|
|
return <ErrorMessage message="Invalid or unsupported post record" />
|
|
}
|
|
|
|
if (deleted) {
|
|
return (
|
|
<View style={[styles.outer, pal.border, pal.view, s.p20, s.flexRow]}>
|
|
<FontAwesomeIcon
|
|
icon={['far', 'trash-can']}
|
|
style={pal.icon as FontAwesomeIconStyle}
|
|
/>
|
|
<Text style={[pal.textLight, s.ml10]}>This post has been deleted.</Text>
|
|
</View>
|
|
)
|
|
}
|
|
|
|
if (item._isHighlightedPost) {
|
|
return (
|
|
<>
|
|
{item.rootUri !== item.uri && (
|
|
<View style={{paddingLeft: 16, flexDirection: 'row', height: 16}}>
|
|
<View style={{width: 38}}>
|
|
<View
|
|
style={[
|
|
styles.replyLine,
|
|
{
|
|
flexGrow: 1,
|
|
backgroundColor: pal.colors.border,
|
|
},
|
|
]}
|
|
/>
|
|
</View>
|
|
</View>
|
|
)}
|
|
|
|
<Link
|
|
testID={`postThreadItem-by-${item.post.author.handle}`}
|
|
style={[styles.outer, styles.outerHighlighted, pal.border, pal.view]}
|
|
noFeedback
|
|
accessible={false}>
|
|
<PostSandboxWarning />
|
|
<View style={styles.layout}>
|
|
<View style={[styles.layoutAvi, {paddingBottom: 8}]}>
|
|
<PreviewableUserAvatar
|
|
size={52}
|
|
did={item.post.author.did}
|
|
handle={item.post.author.handle}
|
|
avatar={item.post.author.avatar}
|
|
moderation={item.moderation.avatar}
|
|
/>
|
|
</View>
|
|
<View style={styles.layoutContent}>
|
|
<View
|
|
style={[styles.meta, styles.metaExpandedLine1, {zIndex: 1}]}>
|
|
<View style={[s.flexRow]}>
|
|
<Link
|
|
style={styles.metaItem}
|
|
href={authorHref}
|
|
title={authorTitle}>
|
|
<Text
|
|
type="xl-bold"
|
|
style={[pal.text]}
|
|
numberOfLines={1}
|
|
lineHeight={1.2}>
|
|
{sanitizeDisplayName(
|
|
item.post.author.displayName ||
|
|
sanitizeHandle(item.post.author.handle),
|
|
)}
|
|
</Text>
|
|
</Link>
|
|
<TimeElapsed timestamp={item.post.indexedAt}>
|
|
{({timeElapsed}) => (
|
|
<Text
|
|
type="md"
|
|
style={[styles.metaItem, pal.textLight]}
|
|
title={niceDate(item.post.indexedAt)}>
|
|
· {timeElapsed}
|
|
</Text>
|
|
)}
|
|
</TimeElapsed>
|
|
</View>
|
|
</View>
|
|
<View style={styles.meta}>
|
|
{isAuthorMuted && (
|
|
<View
|
|
style={[
|
|
pal.viewLight,
|
|
{
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 4,
|
|
borderRadius: 6,
|
|
paddingHorizontal: 6,
|
|
paddingVertical: 2,
|
|
marginRight: 4,
|
|
},
|
|
]}>
|
|
<FontAwesomeIcon
|
|
icon={['far', 'eye-slash']}
|
|
size={12}
|
|
color={pal.colors.textLight}
|
|
/>
|
|
<Text type="sm-medium" style={pal.textLight}>
|
|
Muted
|
|
</Text>
|
|
</View>
|
|
)}
|
|
<Link
|
|
style={styles.metaItem}
|
|
href={authorHref}
|
|
title={authorTitle}>
|
|
<Text type="md" style={[pal.textLight]} numberOfLines={1}>
|
|
{sanitizeHandle(item.post.author.handle, '@')}
|
|
</Text>
|
|
</Link>
|
|
</View>
|
|
</View>
|
|
<PostDropdownBtn
|
|
testID="postDropdownBtn"
|
|
itemUri={itemUri}
|
|
itemCid={itemCid}
|
|
itemHref={itemHref}
|
|
itemTitle={itemTitle}
|
|
isAuthor={item.post.author.did === store.me.did}
|
|
isThreadMuted={mutedThreads.includes(item.data.rootUri)}
|
|
onCopyPostText={onCopyPostText}
|
|
onOpenTranslate={onOpenTranslate}
|
|
onToggleThreadMute={onToggleThreadMute}
|
|
onDeletePost={onDeletePost}
|
|
style={{
|
|
paddingVertical: 6,
|
|
paddingHorizontal: 10,
|
|
marginLeft: 'auto',
|
|
width: 40,
|
|
}}
|
|
/>
|
|
</View>
|
|
<View style={[s.pl10, s.pr10, s.pb10]}>
|
|
<ContentHider
|
|
moderation={item.moderation.content}
|
|
ignoreMute
|
|
style={styles.contentHider}
|
|
childContainerStyle={styles.contentHiderChild}>
|
|
<PostAlerts
|
|
moderation={item.moderation.content}
|
|
includeMute
|
|
style={styles.alert}
|
|
/>
|
|
{item.richText?.text ? (
|
|
<View
|
|
style={[
|
|
styles.postTextContainer,
|
|
styles.postTextLargeContainer,
|
|
]}>
|
|
<RichText
|
|
type="post-text-lg"
|
|
richText={item.richText}
|
|
lineHeight={1.3}
|
|
style={s.flex1}
|
|
/>
|
|
</View>
|
|
) : undefined}
|
|
{item.post.embed && (
|
|
<ContentHider
|
|
moderation={item.moderation.embed}
|
|
ignoreMute={isEmbedByEmbedder(
|
|
item.post.embed,
|
|
item.post.author.did,
|
|
)}
|
|
style={s.mb10}>
|
|
<PostEmbeds
|
|
embed={item.post.embed}
|
|
moderation={item.moderation.embed}
|
|
/>
|
|
</ContentHider>
|
|
)}
|
|
</ContentHider>
|
|
<ExpandedPostDetails
|
|
post={item.post}
|
|
translatorUrl={translatorUrl}
|
|
needsTranslation={needsTranslation}
|
|
/>
|
|
{hasEngagement ? (
|
|
<View style={[styles.expandedInfo, pal.border]}>
|
|
{item.post.repostCount ? (
|
|
<Link
|
|
style={styles.expandedInfoItem}
|
|
href={repostsHref}
|
|
title={repostsTitle}>
|
|
<Text testID="repostCount" type="lg" style={pal.textLight}>
|
|
<Text type="xl-bold" style={pal.text}>
|
|
{formatCount(item.post.repostCount)}
|
|
</Text>{' '}
|
|
{pluralize(item.post.repostCount, 'repost')}
|
|
</Text>
|
|
</Link>
|
|
) : (
|
|
<></>
|
|
)}
|
|
{item.post.likeCount ? (
|
|
<Link
|
|
style={styles.expandedInfoItem}
|
|
href={likesHref}
|
|
title={likesTitle}>
|
|
<Text testID="likeCount" type="lg" style={pal.textLight}>
|
|
<Text type="xl-bold" style={pal.text}>
|
|
{formatCount(item.post.likeCount)}
|
|
</Text>{' '}
|
|
{pluralize(item.post.likeCount, 'like')}
|
|
</Text>
|
|
</Link>
|
|
) : (
|
|
<></>
|
|
)}
|
|
</View>
|
|
) : (
|
|
<></>
|
|
)}
|
|
<View style={[s.pl10, s.pb5]}>
|
|
<PostCtrls
|
|
big
|
|
itemUri={itemUri}
|
|
itemCid={itemCid}
|
|
itemHref={itemHref}
|
|
itemTitle={itemTitle}
|
|
author={item.post.author}
|
|
text={item.richText?.text || record.text}
|
|
indexedAt={item.post.indexedAt}
|
|
isAuthor={item.post.author.did === store.me.did}
|
|
isReposted={!!item.post.viewer?.repost}
|
|
isLiked={!!item.post.viewer?.like}
|
|
isThreadMuted={mutedThreads.includes(item.data.rootUri)}
|
|
onPressReply={onPressReply}
|
|
onPressToggleRepost={onPressToggleRepost}
|
|
onPressToggleLike={onPressToggleLike}
|
|
onCopyPostText={onCopyPostText}
|
|
onOpenTranslate={onOpenTranslate}
|
|
onToggleThreadMute={onToggleThreadMute}
|
|
onDeletePost={onDeletePost}
|
|
/>
|
|
</View>
|
|
</View>
|
|
</Link>
|
|
</>
|
|
)
|
|
} else {
|
|
const isThreadedChild = treeView && item._depth > 1
|
|
return (
|
|
<PostOuterWrapper
|
|
item={item}
|
|
hasPrecedingItem={hasPrecedingItem}
|
|
treeView={treeView}>
|
|
<PostHider
|
|
testID={`postThreadItem-by-${item.post.author.handle}`}
|
|
href={itemHref}
|
|
style={[pal.view]}
|
|
moderation={item.moderation.content}>
|
|
<PostSandboxWarning />
|
|
|
|
<View
|
|
style={{
|
|
flexDirection: 'row',
|
|
gap: 10,
|
|
paddingLeft: 8,
|
|
height: isThreadedChild ? 8 : 16,
|
|
}}>
|
|
<View style={{width: 38}}>
|
|
{!isThreadedChild && item._showParentReplyLine && (
|
|
<View
|
|
style={[
|
|
styles.replyLine,
|
|
{
|
|
flexGrow: 1,
|
|
backgroundColor: pal.colors.border,
|
|
marginBottom: 4,
|
|
},
|
|
]}
|
|
/>
|
|
)}
|
|
</View>
|
|
</View>
|
|
|
|
<View
|
|
style={[
|
|
styles.layout,
|
|
{
|
|
paddingBottom:
|
|
item._showChildReplyLine && !isThreadedChild ? 0 : 8,
|
|
},
|
|
]}>
|
|
{!isThreadedChild && (
|
|
<View style={styles.layoutAvi}>
|
|
<PreviewableUserAvatar
|
|
size={38}
|
|
did={item.post.author.did}
|
|
handle={item.post.author.handle}
|
|
avatar={item.post.author.avatar}
|
|
moderation={item.moderation.avatar}
|
|
/>
|
|
|
|
{item._showChildReplyLine && (
|
|
<View
|
|
style={[
|
|
styles.replyLine,
|
|
{
|
|
flexGrow: 1,
|
|
backgroundColor: pal.colors.border,
|
|
marginTop: 4,
|
|
},
|
|
]}
|
|
/>
|
|
)}
|
|
</View>
|
|
)}
|
|
|
|
<View style={styles.layoutContent}>
|
|
<PostMeta
|
|
author={item.post.author}
|
|
authorHasWarning={!!item.post.author.labels?.length}
|
|
timestamp={item.post.indexedAt}
|
|
postHref={itemHref}
|
|
showAvatar={isThreadedChild}
|
|
avatarSize={26}
|
|
displayNameType="md-bold"
|
|
displayNameStyle={isThreadedChild && s.ml2}
|
|
style={isThreadedChild && s.mb5}
|
|
/>
|
|
<PostAlerts
|
|
moderation={item.moderation.content}
|
|
style={styles.alert}
|
|
/>
|
|
{item.richText?.text ? (
|
|
<View style={styles.postTextContainer}>
|
|
<RichText
|
|
type="post-text"
|
|
richText={item.richText}
|
|
style={[pal.text, s.flex1]}
|
|
lineHeight={1.3}
|
|
numberOfLines={limitLines ? MAX_POST_LINES : undefined}
|
|
/>
|
|
</View>
|
|
) : undefined}
|
|
{limitLines ? (
|
|
<TextLink
|
|
text="Show More"
|
|
style={pal.link}
|
|
onPress={onPressShowMore}
|
|
href="#"
|
|
/>
|
|
) : undefined}
|
|
{item.post.embed && (
|
|
<ContentHider
|
|
style={styles.contentHider}
|
|
moderation={item.moderation.embed}>
|
|
<PostEmbeds
|
|
embed={item.post.embed}
|
|
moderation={item.moderation.embed}
|
|
/>
|
|
</ContentHider>
|
|
)}
|
|
<PostCtrls
|
|
itemUri={itemUri}
|
|
itemCid={itemCid}
|
|
itemHref={itemHref}
|
|
itemTitle={itemTitle}
|
|
author={item.post.author}
|
|
text={item.richText?.text || record.text}
|
|
indexedAt={item.post.indexedAt}
|
|
isAuthor={item.post.author.did === store.me.did}
|
|
replyCount={item.post.replyCount}
|
|
repostCount={item.post.repostCount}
|
|
likeCount={item.post.likeCount}
|
|
isReposted={!!item.post.viewer?.repost}
|
|
isLiked={!!item.post.viewer?.like}
|
|
isThreadMuted={mutedThreads.includes(item.data.rootUri)}
|
|
onPressReply={onPressReply}
|
|
onPressToggleRepost={onPressToggleRepost}
|
|
onPressToggleLike={onPressToggleLike}
|
|
onCopyPostText={onCopyPostText}
|
|
onOpenTranslate={onOpenTranslate}
|
|
onToggleThreadMute={onToggleThreadMute}
|
|
onDeletePost={onDeletePost}
|
|
/>
|
|
</View>
|
|
</View>
|
|
{item._hasMore ? (
|
|
<Link
|
|
style={[
|
|
styles.loadMore,
|
|
{
|
|
paddingLeft: treeView ? 8 : 70,
|
|
paddingTop: 0,
|
|
paddingBottom: treeView ? 4 : 12,
|
|
},
|
|
]}
|
|
href={itemHref}
|
|
title={itemTitle}
|
|
noFeedback>
|
|
<Text type="sm-medium" style={pal.textLight}>
|
|
More
|
|
</Text>
|
|
<FontAwesomeIcon
|
|
icon="angle-right"
|
|
color={pal.colors.textLight}
|
|
size={14}
|
|
/>
|
|
</Link>
|
|
) : undefined}
|
|
</PostHider>
|
|
</PostOuterWrapper>
|
|
)
|
|
}
|
|
})
|
|
|
|
function PostOuterWrapper({
|
|
item,
|
|
hasPrecedingItem,
|
|
treeView,
|
|
children,
|
|
}: React.PropsWithChildren<{
|
|
item: PostThreadItemModel
|
|
hasPrecedingItem: boolean
|
|
treeView: boolean
|
|
}>) {
|
|
const {isMobile} = useWebMediaQueries()
|
|
const pal = usePalette('default')
|
|
const styles = useStyles()
|
|
if (treeView && item._depth > 1) {
|
|
return (
|
|
<View
|
|
style={[
|
|
pal.view,
|
|
pal.border,
|
|
styles.cursor,
|
|
{
|
|
flexDirection: 'row',
|
|
paddingLeft: 20,
|
|
borderTopWidth: item._depth === 1 ? 1 : 0,
|
|
paddingTop: item._depth === 1 ? 8 : 0,
|
|
},
|
|
]}>
|
|
{Array.from(Array(item._depth - 1)).map((_, n: number) => (
|
|
<View
|
|
key={`${item.uri}-padding-${n}`}
|
|
style={{
|
|
borderLeftWidth: 2,
|
|
borderLeftColor: pal.colors.border,
|
|
marginLeft: n === 0 ? 14 : isMobile ? 6 : 14,
|
|
paddingLeft: n === 0 ? 18 : isMobile ? 6 : 12,
|
|
}}
|
|
/>
|
|
))}
|
|
<View style={{flex: 1}}>{children}</View>
|
|
</View>
|
|
)
|
|
}
|
|
return (
|
|
<View
|
|
style={[
|
|
styles.outer,
|
|
pal.view,
|
|
pal.border,
|
|
item._showParentReplyLine && hasPrecedingItem && styles.noTopBorder,
|
|
styles.cursor,
|
|
]}>
|
|
{children}
|
|
</View>
|
|
)
|
|
}
|
|
|
|
function ExpandedPostDetails({
|
|
post,
|
|
needsTranslation,
|
|
translatorUrl,
|
|
}: {
|
|
post: AppBskyFeedDefs.PostView
|
|
needsTranslation: boolean
|
|
translatorUrl: string
|
|
}) {
|
|
const pal = usePalette('default')
|
|
return (
|
|
<View style={[s.flexRow, s.mt2, s.mb10]}>
|
|
<Text style={pal.textLight}>{niceDate(post.indexedAt)}</Text>
|
|
{needsTranslation && (
|
|
<>
|
|
<Text style={pal.textLight}> • </Text>
|
|
<Link href={translatorUrl} title="Translate">
|
|
<Text style={pal.link}>Translate</Text>
|
|
</Link>
|
|
</>
|
|
)}
|
|
</View>
|
|
)
|
|
}
|
|
|
|
const useStyles = () => {
|
|
const {isDesktop} = useWebMediaQueries()
|
|
return StyleSheet.create({
|
|
outer: {
|
|
borderTopWidth: 1,
|
|
paddingLeft: 8,
|
|
},
|
|
outerHighlighted: {
|
|
paddingTop: 16,
|
|
paddingLeft: 8,
|
|
paddingRight: 8,
|
|
},
|
|
noTopBorder: {
|
|
borderTopWidth: 0,
|
|
},
|
|
layout: {
|
|
flexDirection: 'row',
|
|
gap: 10,
|
|
paddingLeft: 8,
|
|
},
|
|
layoutAvi: {},
|
|
layoutContent: {
|
|
flex: 1,
|
|
paddingRight: 10,
|
|
},
|
|
meta: {
|
|
flexDirection: 'row',
|
|
paddingTop: 2,
|
|
paddingBottom: 2,
|
|
},
|
|
metaExpandedLine1: {
|
|
paddingTop: 5,
|
|
paddingBottom: 0,
|
|
},
|
|
metaItem: {
|
|
paddingRight: 5,
|
|
maxWidth: isDesktop ? 380 : 220,
|
|
},
|
|
alert: {
|
|
marginBottom: 6,
|
|
},
|
|
postTextContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
flexWrap: 'wrap',
|
|
paddingBottom: 4,
|
|
paddingRight: 10,
|
|
},
|
|
postTextLargeContainer: {
|
|
paddingHorizontal: 0,
|
|
paddingBottom: 10,
|
|
},
|
|
translateLink: {
|
|
marginBottom: 6,
|
|
},
|
|
contentHider: {
|
|
marginBottom: 6,
|
|
},
|
|
contentHiderChild: {
|
|
marginTop: 6,
|
|
},
|
|
expandedInfo: {
|
|
flexDirection: 'row',
|
|
padding: 10,
|
|
borderTopWidth: 1,
|
|
borderBottomWidth: 1,
|
|
marginTop: 5,
|
|
marginBottom: 15,
|
|
},
|
|
expandedInfoItem: {
|
|
marginRight: 10,
|
|
},
|
|
loadMore: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'flex-start',
|
|
gap: 4,
|
|
paddingHorizontal: 20,
|
|
},
|
|
replyLine: {
|
|
width: 2,
|
|
marginLeft: 'auto',
|
|
marginRight: 'auto',
|
|
},
|
|
cursor: {
|
|
// @ts-ignore web only
|
|
cursor: 'pointer',
|
|
},
|
|
})
|
|
}
|