300 lines
8.9 KiB
TypeScript
300 lines
8.9 KiB
TypeScript
import {useCallback, useMemo, useState} from 'react'
|
|
import {type ListRenderItemInfo, View} from 'react-native'
|
|
import {type AppBskyFeedDefs} from '@atproto/api'
|
|
import {msg} from '@lingui/core/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
import {Trans} from '@lingui/react/macro'
|
|
import {useFocusEffect} from '@react-navigation/native'
|
|
import {type NativeStackScreenProps} from '@react-navigation/native-stack'
|
|
|
|
import {HITSLOP_10} from '#/lib/constants'
|
|
import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender'
|
|
import {usePostViewTracking} from '#/lib/hooks/usePostViewTracking'
|
|
import {type CommonNavigatorParams} from '#/lib/routes/types'
|
|
import {shareUrl} from '#/lib/sharing'
|
|
import {cleanError} from '#/lib/strings/errors'
|
|
import {sanitizeHandle} from '#/lib/strings/handles'
|
|
import {enforceLen} from '#/lib/strings/helpers'
|
|
import {useSearchPostsQuery} from '#/state/queries/search-posts'
|
|
import {useSession} from '#/state/session'
|
|
import {useSetMinimalShellMode} from '#/state/shell'
|
|
import {useLoggedOutViewControls} from '#/state/shell/logged-out'
|
|
import {useCloseAllActiveElements} from '#/state/util'
|
|
import {Pager} from '#/view/com/pager/Pager'
|
|
import {TabBar} from '#/view/com/pager/TabBar'
|
|
import {Post} from '#/view/com/post/Post'
|
|
import {List} from '#/view/com/util/List'
|
|
import {atoms as a, useTheme, web} from '#/alf'
|
|
import {Button, ButtonIcon} from '#/components/Button'
|
|
import {ArrowOutOfBoxModified_Stroke2_Corner2_Rounded as Share} from '#/components/icons/ArrowOutOfBox'
|
|
import * as Layout from '#/components/Layout'
|
|
import {InlineLinkText} from '#/components/Link'
|
|
import {ListFooter, ListMaybePlaceholder} from '#/components/Lists'
|
|
import {SearchError} from '#/components/SearchError'
|
|
import {Text} from '#/components/Typography'
|
|
|
|
const renderItem = ({item}: ListRenderItemInfo<AppBskyFeedDefs.PostView>) => {
|
|
return <Post post={item} />
|
|
}
|
|
|
|
const keyExtractor = (item: AppBskyFeedDefs.PostView, index: number) => {
|
|
return `${item.uri}-${index}`
|
|
}
|
|
|
|
export default function HashtagScreen({
|
|
route,
|
|
}: NativeStackScreenProps<CommonNavigatorParams, 'Hashtag'>) {
|
|
const {tag, author} = route.params
|
|
const {_} = useLingui()
|
|
|
|
const decodedTag = useMemo(() => {
|
|
return decodeURIComponent(tag)
|
|
}, [tag])
|
|
|
|
const isCashtag = decodedTag.startsWith('$')
|
|
|
|
const fullTag = useMemo(() => {
|
|
// Cashtags already include the $ prefix, hashtags need # added
|
|
return isCashtag ? decodedTag : `#${decodedTag}`
|
|
}, [decodedTag, isCashtag])
|
|
|
|
const headerTitle = useMemo(() => {
|
|
// Keep cashtags uppercase, lowercase hashtags
|
|
const displayTag = isCashtag ? fullTag.toUpperCase() : fullTag.toLowerCase()
|
|
return enforceLen(displayTag, 24, true, 'middle')
|
|
}, [fullTag, isCashtag])
|
|
|
|
const sanitizedAuthor = useMemo(() => {
|
|
if (!author) return ''
|
|
return sanitizeHandle(author)
|
|
}, [author])
|
|
|
|
const onShare = useCallback(() => {
|
|
const url = new URL('https://bsky.app')
|
|
url.pathname = `/hashtag/${decodeURIComponent(tag)}`
|
|
if (author) {
|
|
url.searchParams.set('author', author)
|
|
}
|
|
shareUrl(url.toString())
|
|
}, [tag, author])
|
|
|
|
const [activeTab, setActiveTab] = useState(0)
|
|
const setMinimalShellMode = useSetMinimalShellMode()
|
|
|
|
useFocusEffect(
|
|
useCallback(() => {
|
|
setMinimalShellMode(false)
|
|
}, [setMinimalShellMode]),
|
|
)
|
|
|
|
const onPageSelected = useCallback(
|
|
(index: number) => {
|
|
setMinimalShellMode(false)
|
|
setActiveTab(index)
|
|
},
|
|
[setMinimalShellMode],
|
|
)
|
|
|
|
const sections = useMemo(() => {
|
|
return [
|
|
{
|
|
title: _(msg`Top`),
|
|
component: (
|
|
<HashtagScreenTab
|
|
fullTag={fullTag}
|
|
author={author}
|
|
sort="top"
|
|
active={activeTab === 0}
|
|
/>
|
|
),
|
|
},
|
|
{
|
|
title: _(msg`Latest`),
|
|
component: (
|
|
<HashtagScreenTab
|
|
fullTag={fullTag}
|
|
author={author}
|
|
sort="latest"
|
|
active={activeTab === 1}
|
|
/>
|
|
),
|
|
},
|
|
]
|
|
}, [_, fullTag, author, activeTab])
|
|
|
|
return (
|
|
<Layout.Screen>
|
|
<Pager
|
|
onPageSelected={onPageSelected}
|
|
renderTabBar={props => (
|
|
<Layout.Center style={[a.z_10, web([a.sticky, {top: 0}])]}>
|
|
<Layout.Header.Outer noBottomBorder>
|
|
<Layout.Header.BackButton />
|
|
<Layout.Header.Content>
|
|
<Layout.Header.TitleText>{headerTitle}</Layout.Header.TitleText>
|
|
{author && (
|
|
<Layout.Header.SubtitleText>
|
|
{_(msg`From @${sanitizedAuthor}`)}
|
|
</Layout.Header.SubtitleText>
|
|
)}
|
|
</Layout.Header.Content>
|
|
<Layout.Header.Slot>
|
|
<Button
|
|
label={_(msg`Share`)}
|
|
size="small"
|
|
variant="ghost"
|
|
color="primary"
|
|
shape="round"
|
|
onPress={onShare}
|
|
hitSlop={HITSLOP_10}
|
|
style={[{right: -3}]}>
|
|
<ButtonIcon icon={Share} size="md" />
|
|
</Button>
|
|
</Layout.Header.Slot>
|
|
</Layout.Header.Outer>
|
|
<TabBar items={sections.map(section => section.title)} {...props} />
|
|
</Layout.Center>
|
|
)}
|
|
initialPage={0}>
|
|
{sections.map((section, i) => (
|
|
<View key={i}>{section.component}</View>
|
|
))}
|
|
</Pager>
|
|
</Layout.Screen>
|
|
)
|
|
}
|
|
|
|
function HashtagScreenTab({
|
|
fullTag,
|
|
author,
|
|
sort,
|
|
active,
|
|
}: {
|
|
fullTag: string
|
|
author: string | undefined
|
|
sort: 'top' | 'latest'
|
|
active: boolean
|
|
}) {
|
|
const {_} = useLingui()
|
|
const initialNumToRender = useInitialNumToRender()
|
|
const [isPTR, setIsPTR] = useState(false)
|
|
const t = useTheme()
|
|
const {hasSession} = useSession()
|
|
const trackPostView = usePostViewTracking('Hashtag')
|
|
|
|
const isCashtag = fullTag.startsWith('$')
|
|
|
|
const queryParam = useMemo(() => {
|
|
// Cashtags need # prefix for search: "#$BTC" or "#$BTC from:author"
|
|
const searchTag = isCashtag ? `#${fullTag}` : fullTag
|
|
if (!author) return searchTag
|
|
return `${searchTag} from:${author}`
|
|
}, [fullTag, author, isCashtag])
|
|
|
|
const {
|
|
data,
|
|
isFetched,
|
|
isFetchingNextPage,
|
|
isLoading,
|
|
isError,
|
|
error,
|
|
refetch,
|
|
fetchNextPage,
|
|
hasNextPage,
|
|
} = useSearchPostsQuery({query: queryParam, sort, enabled: active})
|
|
|
|
const posts = useMemo(() => {
|
|
return data?.pages.flatMap(page => page.posts) || []
|
|
}, [data])
|
|
|
|
const onRefresh = useCallback(async () => {
|
|
setIsPTR(true)
|
|
await refetch()
|
|
setIsPTR(false)
|
|
}, [refetch])
|
|
|
|
const onEndReached = useCallback(() => {
|
|
if (isFetchingNextPage || !hasNextPage || error) return
|
|
fetchNextPage()
|
|
}, [isFetchingNextPage, hasNextPage, error, fetchNextPage])
|
|
|
|
const closeAllActiveElements = useCloseAllActiveElements()
|
|
const {requestSwitchToAccount} = useLoggedOutViewControls()
|
|
|
|
const showSignIn = () => {
|
|
closeAllActiveElements()
|
|
requestSwitchToAccount({requestedAccount: 'none'})
|
|
}
|
|
|
|
const showCreateAccount = () => {
|
|
closeAllActiveElements()
|
|
requestSwitchToAccount({requestedAccount: 'new'})
|
|
}
|
|
|
|
if (!hasSession) {
|
|
return (
|
|
<SearchError
|
|
title={_(msg`Search is currently unavailable when logged out`)}>
|
|
<Text style={[a.text_md, a.text_center, a.leading_snug]}>
|
|
<Trans>
|
|
<InlineLinkText
|
|
label={_(msg`Sign in`)}
|
|
to={'#'}
|
|
onPress={showSignIn}>
|
|
Sign in
|
|
</InlineLinkText>
|
|
<Text style={t.atoms.text_contrast_medium}> or </Text>
|
|
<InlineLinkText
|
|
label={_(msg`Create an account`)}
|
|
to={'#'}
|
|
onPress={showCreateAccount}>
|
|
create an account
|
|
</InlineLinkText>
|
|
<Text> </Text>
|
|
<Text style={t.atoms.text_contrast_medium}>
|
|
to search for news, sports, politics, and everything else
|
|
happening on Bluesky.
|
|
</Text>
|
|
</Trans>
|
|
</Text>
|
|
</SearchError>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{posts.length < 1 ? (
|
|
<ListMaybePlaceholder
|
|
isLoading={isLoading || !isFetched}
|
|
isError={isError}
|
|
onRetry={refetch}
|
|
emptyType="results"
|
|
emptyMessage={_(msg`We couldn't find any results for that tag.`)}
|
|
/>
|
|
) : (
|
|
<List
|
|
data={posts}
|
|
renderItem={renderItem}
|
|
keyExtractor={keyExtractor}
|
|
refreshing={isPTR}
|
|
onRefresh={onRefresh}
|
|
onEndReached={onEndReached}
|
|
onEndReachedThreshold={4}
|
|
onItemSeen={trackPostView}
|
|
// @ts-ignore web only -prf
|
|
desktopFixedHeight
|
|
ListFooterComponent={
|
|
<ListFooter
|
|
isFetchingNextPage={isFetchingNextPage}
|
|
error={cleanError(error)}
|
|
onRetry={fetchNextPage}
|
|
/>
|
|
}
|
|
initialNumToRender={initialNumToRender}
|
|
windowSize={11}
|
|
/>
|
|
)}
|
|
</>
|
|
)
|
|
}
|