diff options
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r-- | src/view/com/post/Post.tsx | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index ec730a5e1..c87e361e1 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -27,6 +27,7 @@ import {AviFollowButton} from '#/view/com/posts/AviFollowButton' import {atoms as a} from '#/alf' import {ProfileHoverCard} from '#/components/ProfileHoverCard' import {RichText} from '#/components/RichText' +import {SubtleWebHover} from '#/components/SubtleWebHover' import {ContentHider} from '../../../components/moderation/ContentHider' import {LabelsOnMyPost} from '../../../components/moderation/LabelsOnMe' import {PostAlerts} from '../../../components/moderation/PostAlerts' @@ -148,6 +149,7 @@ function PostInner({ const {currentAccount} = useSession() const isMe = replyAuthorDid === currentAccount?.did + const [hover, setHover] = React.useState(false) return ( <Link href={itemHref} @@ -157,7 +159,14 @@ function PostInner({ !hideTopBorder && {borderTopWidth: StyleSheet.hairlineWidth}, style, ]} - onBeforePress={onBeforePress}> + onBeforePress={onBeforePress} + onPointerEnter={() => { + setHover(true) + }} + onPointerLeave={() => { + setHover(false) + }}> + <SubtleWebHover hover={hover} /> {showReplyLine && <View style={styles.replyLine} />} <View style={styles.layout}> <View style={styles.layoutAvi}> |