* WIP - adding expo * WIP - adding expo 2 * Fix tsc * Finish adding expo * Disable the 'require cycle' warning * Tweak plist * Modify some dependency versions to make expo happy * Fix icon fill * Get Web compiling for expo * 1.7 * Switch to react-navigation in expo2 (#287) * WIP Switch to react-navigation * WIP Switch to react-navigation 2 * WIP Switch to react-navigation 3 * Convert all screens to react navigation * Update BottomBar for react navigation * Update mobile menu to be react-native drawer * Fixes to drawer and bottombar * Factor out some helpers * Replace the navigation model with react-navigation * Restructure the shell folder and fix the header positioning * Restore the error boundary * Fix tsc * Implement not-found page * Remove react-native-gesture-handler (no longer used) * Handle notifee card presses * Handle all navigations from the state layer * Fix drawer behaviors * Fix two linking issues * Switch to our react-native-progress fork to fix an svg rendering issue * Get Web working with react-navigation * Refactor routes and navigation for a bit more clarity * Remove dead code * Rework Web shell to left/right nav to make this easier * Fix ViewHeader for desktop web * Hide profileheader back btn on desktop web * Move the compose button to the left nav * Implement reply prompt in threads for desktop web * Composer refactors * Factor out all platform-specific text input behaviors from the composer * Small fix * Update the web build to use tiptap for the composer * Tune up the mention autocomplete dropdown * Simplify the default avatar and banner * Fixes to link cards in web composer * Fix dropdowns on web * Tweak load latest on desktop * Add web beta message and feedback link * Fix up links in desktop web
456 lines
15 KiB
TypeScript
456 lines
15 KiB
TypeScript
import React from 'react'
|
|
import {observer} from 'mobx-react-lite'
|
|
import {Linking, StyleSheet, View} from 'react-native'
|
|
import Clipboard from '@react-native-clipboard/clipboard'
|
|
import {AtUri} from '../../../third-party/uri'
|
|
import {
|
|
FontAwesomeIcon,
|
|
FontAwesomeIconStyle,
|
|
} from '@fortawesome/react-native-fontawesome'
|
|
import {PostThreadViewPostModel} from 'state/models/post-thread-view'
|
|
import {Link} from '../util/Link'
|
|
import {RichText} from '../util/text/RichText'
|
|
import {Text} from '../util/text/Text'
|
|
import {PostDropdownBtn} from '../util/forms/DropdownButton'
|
|
import * as Toast from '../util/Toast'
|
|
import {UserAvatar} from '../util/UserAvatar'
|
|
import {s} from 'lib/styles'
|
|
import {ago} from 'lib/strings/time'
|
|
import {pluralize} from 'lib/strings/helpers'
|
|
import {useStores} from 'state/index'
|
|
import {PostMeta} from '../util/PostMeta'
|
|
import {PostEmbeds} from '../util/PostEmbeds'
|
|
import {PostCtrls} from '../util/PostCtrls'
|
|
import {PostMutedWrapper} from '../util/PostMuted'
|
|
import {ErrorMessage} from '../util/error/ErrorMessage'
|
|
import {usePalette} from 'lib/hooks/usePalette'
|
|
|
|
const PARENT_REPLY_LINE_LENGTH = 8
|
|
|
|
export const PostThreadItem = observer(function PostThreadItem({
|
|
item,
|
|
onPostReply,
|
|
}: {
|
|
item: PostThreadViewPostModel
|
|
onPostReply: () => void
|
|
}) {
|
|
const pal = usePalette('default')
|
|
const store = useStores()
|
|
const [deleted, setDeleted] = React.useState(false)
|
|
const record = item.postRecord
|
|
const hasEngagement = item.post.upvoteCount || 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 `/profile/${item.post.author.handle}/post/${urip.rkey}`
|
|
}, [item.post.uri, item.post.author.handle])
|
|
const itemTitle = `Post by ${item.post.author.handle}`
|
|
const authorHref = `/profile/${item.post.author.handle}`
|
|
const authorTitle = item.post.author.handle
|
|
const upvotesHref = React.useMemo(() => {
|
|
const urip = new AtUri(item.post.uri)
|
|
return `/profile/${item.post.author.handle}/post/${urip.rkey}/upvoted-by`
|
|
}, [item.post.uri, item.post.author.handle])
|
|
const upvotesTitle = 'Likes on this post'
|
|
const repostsHref = React.useMemo(() => {
|
|
const urip = new AtUri(item.post.uri)
|
|
return `/profile/${item.post.author.handle}/post/${urip.rkey}/reposted-by`
|
|
}, [item.post.uri, item.post.author.handle])
|
|
const repostsTitle = 'Reposts of this post'
|
|
|
|
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 => store.log.error('Failed to toggle repost', e))
|
|
}, [item, store])
|
|
const onPressToggleUpvote = React.useCallback(() => {
|
|
return item
|
|
.toggleUpvote()
|
|
.catch(e => store.log.error('Failed to toggle upvote', e))
|
|
}, [item, store])
|
|
const onCopyPostText = React.useCallback(() => {
|
|
Clipboard.setString(record?.text || '')
|
|
Toast.show('Copied to clipboard')
|
|
}, [record])
|
|
const onOpenTranslate = React.useCallback(() => {
|
|
Linking.openURL(
|
|
encodeURI(`https://translate.google.com/#auto|en|${record?.text || ''}`),
|
|
)
|
|
}, [record])
|
|
const onDeletePost = React.useCallback(() => {
|
|
item.delete().then(
|
|
() => {
|
|
setDeleted(true)
|
|
Toast.show('Post deleted')
|
|
},
|
|
e => {
|
|
store.log.error('Failed to delete post', e)
|
|
Toast.show('Failed to delete post, please try again')
|
|
},
|
|
)
|
|
}, [item, store])
|
|
|
|
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 (
|
|
<>
|
|
<View
|
|
style={[
|
|
styles.outer,
|
|
styles.outerHighlighted,
|
|
{borderTopColor: pal.colors.border},
|
|
pal.view,
|
|
]}>
|
|
<View style={styles.layout}>
|
|
<View style={styles.layoutAvi}>
|
|
<Link href={authorHref} title={authorTitle} asAnchor>
|
|
<UserAvatar size={52} avatar={item.post.author.avatar} />
|
|
</Link>
|
|
</View>
|
|
<View style={styles.layoutContent}>
|
|
<View style={[styles.meta, styles.metaExpandedLine1]}>
|
|
<View style={[s.flexRow, s.alignBaseline]}>
|
|
<Link
|
|
style={styles.metaItem}
|
|
href={authorHref}
|
|
title={authorTitle}>
|
|
<Text
|
|
type="xl-bold"
|
|
style={[pal.text]}
|
|
numberOfLines={1}
|
|
lineHeight={1.2}>
|
|
{item.post.author.displayName || item.post.author.handle}
|
|
</Text>
|
|
</Link>
|
|
<Text type="md" style={[styles.metaItem, pal.textLight]}>
|
|
· {ago(item.post.indexedAt)}
|
|
</Text>
|
|
</View>
|
|
<View style={s.flex1} />
|
|
<PostDropdownBtn
|
|
style={styles.metaItem}
|
|
itemUri={itemUri}
|
|
itemCid={itemCid}
|
|
itemHref={itemHref}
|
|
itemTitle={itemTitle}
|
|
isAuthor={item.post.author.did === store.me.did}
|
|
onCopyPostText={onCopyPostText}
|
|
onOpenTranslate={onOpenTranslate}
|
|
onDeletePost={onDeletePost}>
|
|
<FontAwesomeIcon
|
|
icon="ellipsis-h"
|
|
size={14}
|
|
style={[s.mt2, s.mr5, pal.textLight]}
|
|
/>
|
|
</PostDropdownBtn>
|
|
</View>
|
|
<View style={styles.meta}>
|
|
<Link
|
|
style={styles.metaItem}
|
|
href={authorHref}
|
|
title={authorTitle}>
|
|
<Text type="md" style={[pal.textLight]} numberOfLines={1}>
|
|
@{item.post.author.handle}
|
|
</Text>
|
|
</Link>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
<View style={[s.pl10, s.pr10, s.pb10]}>
|
|
{item.richText?.text ? (
|
|
<View
|
|
style={[
|
|
styles.postTextContainer,
|
|
styles.postTextLargeContainer,
|
|
]}>
|
|
<RichText
|
|
type="post-text-lg"
|
|
richText={item.richText}
|
|
lineHeight={1.3}
|
|
/>
|
|
</View>
|
|
) : undefined}
|
|
<PostEmbeds embed={item.post.embed} style={s.mb10} />
|
|
{item._isHighlightedPost && hasEngagement ? (
|
|
<View style={[styles.expandedInfo, pal.border]}>
|
|
{item.post.repostCount ? (
|
|
<Link
|
|
style={styles.expandedInfoItem}
|
|
href={repostsHref}
|
|
title={repostsTitle}>
|
|
<Text type="lg" style={pal.textLight}>
|
|
<Text type="xl-bold" style={pal.text}>
|
|
{item.post.repostCount}
|
|
</Text>{' '}
|
|
{pluralize(item.post.repostCount, 'repost')}
|
|
</Text>
|
|
</Link>
|
|
) : (
|
|
<></>
|
|
)}
|
|
{item.post.upvoteCount ? (
|
|
<Link
|
|
style={styles.expandedInfoItem}
|
|
href={upvotesHref}
|
|
title={upvotesTitle}>
|
|
<Text type="lg" style={pal.textLight}>
|
|
<Text type="xl-bold" style={pal.text}>
|
|
{item.post.upvoteCount}
|
|
</Text>{' '}
|
|
{pluralize(item.post.upvoteCount, 'like')}
|
|
</Text>
|
|
</Link>
|
|
) : (
|
|
<></>
|
|
)}
|
|
</View>
|
|
) : (
|
|
<></>
|
|
)}
|
|
<View style={[s.pl10, s.pb5]}>
|
|
<PostCtrls
|
|
big
|
|
itemUri={itemUri}
|
|
itemCid={itemCid}
|
|
itemHref={itemHref}
|
|
itemTitle={itemTitle}
|
|
author={{
|
|
avatar: item.post.author.avatar!,
|
|
handle: item.post.author.handle,
|
|
displayName: item.post.author.displayName!,
|
|
}}
|
|
text={item.richText?.text || record.text}
|
|
indexedAt={item.post.indexedAt}
|
|
isAuthor={item.post.author.did === store.me.did}
|
|
isReposted={!!item.post.viewer.repost}
|
|
isUpvoted={!!item.post.viewer.upvote}
|
|
onPressReply={onPressReply}
|
|
onPressToggleRepost={onPressToggleRepost}
|
|
onPressToggleUpvote={onPressToggleUpvote}
|
|
onCopyPostText={onCopyPostText}
|
|
onOpenTranslate={onOpenTranslate}
|
|
onDeletePost={onDeletePost}
|
|
/>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
</>
|
|
)
|
|
} else {
|
|
return (
|
|
<PostMutedWrapper isMuted={item.post.author.viewer?.muted === true}>
|
|
<Link
|
|
style={[styles.outer, {borderTopColor: pal.colors.border}, pal.view]}
|
|
href={itemHref}
|
|
title={itemTitle}
|
|
noFeedback>
|
|
{item._showParentReplyLine && (
|
|
<View
|
|
style={[
|
|
styles.parentReplyLine,
|
|
{borderColor: pal.colors.replyLine},
|
|
]}
|
|
/>
|
|
)}
|
|
{item._showChildReplyLine && (
|
|
<View
|
|
style={[
|
|
styles.childReplyLine,
|
|
{borderColor: pal.colors.replyLine},
|
|
]}
|
|
/>
|
|
)}
|
|
<View style={styles.layout}>
|
|
<View style={styles.layoutAvi}>
|
|
<Link href={authorHref} title={authorTitle} asAnchor>
|
|
<UserAvatar size={52} avatar={item.post.author.avatar} />
|
|
</Link>
|
|
</View>
|
|
<View style={styles.layoutContent}>
|
|
<PostMeta
|
|
authorHandle={item.post.author.handle}
|
|
authorDisplayName={item.post.author.displayName}
|
|
timestamp={item.post.indexedAt}
|
|
postHref={itemHref}
|
|
did={item.post.author.did}
|
|
declarationCid={item.post.author.declaration.cid}
|
|
/>
|
|
{item.richText?.text ? (
|
|
<View style={styles.postTextContainer}>
|
|
<RichText
|
|
type="post-text"
|
|
richText={item.richText}
|
|
style={pal.text}
|
|
lineHeight={1.3}
|
|
/>
|
|
</View>
|
|
) : undefined}
|
|
<PostEmbeds embed={item.post.embed} style={s.mb10} />
|
|
<PostCtrls
|
|
itemUri={itemUri}
|
|
itemCid={itemCid}
|
|
itemHref={itemHref}
|
|
itemTitle={itemTitle}
|
|
author={{
|
|
avatar: item.post.author.avatar!,
|
|
handle: item.post.author.handle,
|
|
displayName: item.post.author.displayName!,
|
|
}}
|
|
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}
|
|
upvoteCount={item.post.upvoteCount}
|
|
isReposted={!!item.post.viewer.repost}
|
|
isUpvoted={!!item.post.viewer.upvote}
|
|
onPressReply={onPressReply}
|
|
onPressToggleRepost={onPressToggleRepost}
|
|
onPressToggleUpvote={onPressToggleUpvote}
|
|
onCopyPostText={onCopyPostText}
|
|
onOpenTranslate={onOpenTranslate}
|
|
onDeletePost={onDeletePost}
|
|
/>
|
|
</View>
|
|
</View>
|
|
</Link>
|
|
{item._hasMore ? (
|
|
<Link
|
|
style={[
|
|
styles.loadMore,
|
|
{borderTopColor: pal.colors.border},
|
|
pal.view,
|
|
]}
|
|
href={itemHref}
|
|
title={itemTitle}
|
|
noFeedback>
|
|
<Text style={pal.link}>Continue thread...</Text>
|
|
<FontAwesomeIcon
|
|
icon="angle-right"
|
|
style={pal.link as FontAwesomeIconStyle}
|
|
size={18}
|
|
/>
|
|
</Link>
|
|
) : undefined}
|
|
</PostMutedWrapper>
|
|
)
|
|
}
|
|
})
|
|
|
|
const styles = StyleSheet.create({
|
|
outer: {
|
|
borderTopWidth: 1,
|
|
paddingLeft: 10,
|
|
},
|
|
outerHighlighted: {
|
|
paddingTop: 2,
|
|
paddingLeft: 6,
|
|
paddingRight: 6,
|
|
},
|
|
parentReplyLine: {
|
|
position: 'absolute',
|
|
left: 44,
|
|
top: -1 * PARENT_REPLY_LINE_LENGTH + 6,
|
|
height: PARENT_REPLY_LINE_LENGTH,
|
|
borderLeftWidth: 2,
|
|
},
|
|
childReplyLine: {
|
|
position: 'absolute',
|
|
left: 44,
|
|
top: 65,
|
|
bottom: 0,
|
|
borderLeftWidth: 2,
|
|
},
|
|
layout: {
|
|
flexDirection: 'row',
|
|
},
|
|
layoutAvi: {
|
|
width: 70,
|
|
paddingLeft: 10,
|
|
paddingTop: 10,
|
|
paddingBottom: 10,
|
|
},
|
|
layoutContent: {
|
|
flex: 1,
|
|
paddingRight: 10,
|
|
paddingTop: 10,
|
|
paddingBottom: 10,
|
|
},
|
|
meta: {
|
|
flexDirection: 'row',
|
|
paddingTop: 2,
|
|
paddingBottom: 2,
|
|
},
|
|
metaExpandedLine1: {
|
|
paddingTop: 5,
|
|
paddingBottom: 0,
|
|
},
|
|
metaItem: {
|
|
paddingRight: 5,
|
|
maxWidth: 240,
|
|
},
|
|
postTextContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
flexWrap: 'wrap',
|
|
paddingBottom: 8,
|
|
paddingRight: 10,
|
|
minHeight: 36,
|
|
},
|
|
postTextLargeContainer: {
|
|
paddingHorizontal: 0,
|
|
paddingBottom: 10,
|
|
},
|
|
expandedInfo: {
|
|
flexDirection: 'row',
|
|
padding: 10,
|
|
borderTopWidth: 1,
|
|
borderBottomWidth: 1,
|
|
marginTop: 5,
|
|
marginBottom: 15,
|
|
},
|
|
expandedInfoItem: {
|
|
marginRight: 10,
|
|
},
|
|
loadMore: {
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
borderTopWidth: 1,
|
|
paddingLeft: 80,
|
|
paddingRight: 20,
|
|
paddingVertical: 10,
|
|
marginBottom: 8,
|
|
},
|
|
})
|