diff options
author | Alex Benzer <abenzer@users.noreply.github.com> | 2025-08-26 08:52:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-26 08:52:38 -0700 |
commit | acd7211b357f2bfc74bf0828994e12f0c41d39d5 (patch) | |
tree | 34a09d23bf3862ccb9683ba4975e3af0889c11d0 /src/screens/PostThread/components/ThreadItemAnchor.tsx | |
parent | b70e5b2f387e8de6dac5d388aee1ccbf5b217adc (diff) | |
download | voidsky-acd7211b357f2bfc74bf0828994e12f0c41d39d5.tar.zst |
Adds signup CTA tests for logged-out visitors (#8906)
Diffstat (limited to 'src/screens/PostThread/components/ThreadItemAnchor.tsx')
-rw-r--r-- | src/screens/PostThread/components/ThreadItemAnchor.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/screens/PostThread/components/ThreadItemAnchor.tsx b/src/screens/PostThread/components/ThreadItemAnchor.tsx index 550bddc6a..7b0d567b8 100644 --- a/src/screens/PostThread/components/ThreadItemAnchor.tsx +++ b/src/screens/PostThread/components/ThreadItemAnchor.tsx @@ -40,12 +40,13 @@ import { OUTER_SPACE, REPLY_LINE_WIDTH, } from '#/screens/PostThread/const' -import {atoms as a, useTheme} from '#/alf' +import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {colors} from '#/components/Admonition' import {Button} from '#/components/Button' import {CalendarClock_Stroke2_Corner0_Rounded as CalendarClockIcon} from '#/components/icons/CalendarClock' import {Trash_Stroke2_Corner0_Rounded as TrashIcon} from '#/components/icons/Trash' import {InlineLinkText, Link} from '#/components/Link' +import {LoggedOutCTA} from '#/components/LoggedOutCTA' import {ContentHider} from '#/components/moderation/ContentHider' import {LabelsOnMyPost} from '#/components/moderation/LabelsOnMe' import {PostAlerts} from '#/components/moderation/PostAlerts' @@ -178,6 +179,7 @@ const ThreadItemAnchorInner = memo(function ThreadItemAnchorInner({ const {_, i18n} = useLingui() const {openComposer} = useOpenComposer() const {currentAccount, hasSession} = useSession() + const {gtTablet} = useBreakpoints() const feedFeedback = useFeedFeedback(postSource?.feed, hasSession) const post = postShadow @@ -311,6 +313,8 @@ const ThreadItemAnchorInner = memo(function ThreadItemAnchorInner({ }, isRoot && [a.pt_lg], ]}> + {/* Show CTA for logged-out visitors - hide on desktop and check gate */} + {!gtTablet && <LoggedOutCTA gateName="cta_above_post_heading" />} <View style={[a.flex_row, a.gap_md, a.pb_md]}> <View collapsable={false}> <PreviewableUserAvatar |