import React, {memo, useMemo, useState} from 'react' import {StyleSheet, View} from 'react-native' import { AppBskyFeedDefs, AppBskyFeedPost, AtUri, PostModeration, RichText as RichTextAPI, } from '@atproto/api' import { FontAwesomeIcon, FontAwesomeIconStyle, } from '@fortawesome/react-native-fontawesome' import {ReasonFeedSource, isReasonFeedSource} from 'lib/api/feed/types' import {Link, TextLinkOnWebOnly, TextLink} from '../util/Link' import {Text} from '../util/text/Text' import {UserInfoText} from '../util/UserInfoText' import {PostMeta} from '../util/PostMeta' import {PostCtrls} from '../util/post-ctrls/PostCtrls' import {PostEmbeds} from '../util/post-embeds' import {ContentHider} from '../util/moderation/ContentHider' import {PostAlerts} from '../util/moderation/PostAlerts' import {RichText} from '../util/text/RichText' import {PostSandboxWarning} from '../util/PostSandboxWarning' import {PreviewableUserAvatar} from '../util/UserAvatar' import {s} from 'lib/styles' import {usePalette} from 'lib/hooks/usePalette' import {sanitizeDisplayName} from 'lib/strings/display-names' import {sanitizeHandle} from 'lib/strings/handles' import {makeProfileLink} from 'lib/routes/links' import {isEmbedByEmbedder} from 'lib/embeds' import {MAX_POST_LINES} from 'lib/constants' import {countLines} from 'lib/strings/helpers' import {useComposerControls} from '#/state/shell/composer' import {Shadow, usePostShadow, POST_TOMBSTONE} from '#/state/cache/post-shadow' export function FeedItem({ post, record, reason, moderation, isThreadChild, isThreadLastChild, isThreadParent, }: { post: AppBskyFeedDefs.PostView record: AppBskyFeedPost.Record reason: AppBskyFeedDefs.ReasonRepost | ReasonFeedSource | undefined moderation: PostModeration isThreadChild?: boolean isThreadLastChild?: boolean isThreadParent?: boolean }) { const postShadowed = usePostShadow(post) const richText = useMemo( () => new RichTextAPI({ text: record.text, facets: record.facets, }), [record], ) if (postShadowed === POST_TOMBSTONE) { return null } if (richText && moderation) { return ( ) } return null } let FeedItemInner = ({ post, record, reason, richText, moderation, isThreadChild, isThreadLastChild, isThreadParent, }: { post: Shadow record: AppBskyFeedPost.Record reason: AppBskyFeedDefs.ReasonRepost | ReasonFeedSource | undefined richText: RichTextAPI moderation: PostModeration isThreadChild?: boolean isThreadLastChild?: boolean isThreadParent?: boolean }): React.ReactNode => { const {openComposer} = useComposerControls() const pal = usePalette('default') const [limitLines, setLimitLines] = useState( () => countLines(richText.text) >= MAX_POST_LINES, ) const href = useMemo(() => { const urip = new AtUri(post.uri) return makeProfileLink(post.author, 'post', urip.rkey) }, [post.uri, post.author]) const replyAuthorDid = useMemo(() => { if (!record?.reply) { return '' } const urip = new AtUri(record.reply.parent?.uri || record.reply.root.uri) return urip.hostname }, [record?.reply]) const onPressReply = React.useCallback(() => { openComposer({ replyTo: { uri: post.uri, cid: post.cid, text: record.text || '', author: { handle: post.author.handle, displayName: post.author.displayName, avatar: post.author.avatar, }, }, }) }, [post, record, openComposer]) const onPressShowMore = React.useCallback(() => { setLimitLines(false) }, [setLimitLines]) const outerStyles = [ styles.outer, pal.view, { borderColor: pal.colors.border, paddingBottom: isThreadLastChild || (!isThreadChild && !isThreadParent) ? 6 : undefined, }, isThreadChild ? styles.outerSmallTop : undefined, ] return ( {isThreadChild && ( )} {isReasonFeedSource(reason) ? ( From{' '} ) : AppBskyFeedDefs.isReasonRepost(reason) ? ( Reposted by{' '} ) : null} {isThreadParent && ( )} {!isThreadChild && replyAuthorDid !== '' && ( Reply to{' '} )} {richText.text ? ( ) : undefined} {limitLines ? ( ) : undefined} {post.embed ? ( ) : null} ) } FeedItemInner = memo(FeedItemInner) const styles = StyleSheet.create({ outer: { borderTopWidth: 1, paddingLeft: 10, paddingRight: 15, cursor: 'pointer', overflow: 'hidden', }, outerSmallTop: { borderTopWidth: 0, }, replyLine: { width: 2, marginLeft: 'auto', marginRight: 'auto', }, includeReason: { flexDirection: 'row', marginTop: 2, marginBottom: 2, marginLeft: -20, }, layout: { flexDirection: 'row', marginTop: 1, gap: 10, }, layoutAvi: { paddingLeft: 8, }, layoutContent: { flex: 1, }, alert: { marginTop: 6, marginBottom: 6, }, postTextContainer: { flexDirection: 'row', alignItems: 'center', flexWrap: 'wrap', paddingBottom: 4, }, contentHiderChild: { marginTop: 6, }, embed: { marginBottom: 6, }, translateLink: { marginBottom: 6, }, })