Merge branch 'bluesky-social:main' into patch-3
commit
4813f26158
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bsky.app",
|
"name": "bsky.app",
|
||||||
"version": "1.72.0",
|
"version": "1.73.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
|
|
|
@ -78,7 +78,7 @@ import {createNativeStackNavigatorWithAuth} from './view/shell/createNativeStack
|
||||||
import {msg} from '@lingui/macro'
|
import {msg} from '@lingui/macro'
|
||||||
import {i18n, MessageDescriptor} from '@lingui/core'
|
import {i18n, MessageDescriptor} from '@lingui/core'
|
||||||
import HashtagScreen from '#/screens/Hashtag'
|
import HashtagScreen from '#/screens/Hashtag'
|
||||||
import {logEvent} from './lib/statsig/statsig'
|
import {logEvent, attachRouteToLogEvents} from './lib/statsig/statsig'
|
||||||
|
|
||||||
const navigationRef = createNavigationContainerRef<AllNavigatorParams>()
|
const navigationRef = createNavigationContainerRef<AllNavigatorParams>()
|
||||||
|
|
||||||
|
@ -543,6 +543,7 @@ function RoutesContainer({children}: React.PropsWithChildren<{}>) {
|
||||||
linking={LINKING}
|
linking={LINKING}
|
||||||
theme={theme}
|
theme={theme}
|
||||||
onReady={() => {
|
onReady={() => {
|
||||||
|
attachRouteToLogEvents(getCurrentRouteName)
|
||||||
logModuleInitTime()
|
logModuleInitTime()
|
||||||
onReady()
|
onReady()
|
||||||
}}>
|
}}>
|
||||||
|
@ -551,6 +552,10 @@ function RoutesContainer({children}: React.PropsWithChildren<{}>) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getCurrentRouteName() {
|
||||||
|
return navigationRef.getCurrentRoute()?.name
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* These helpers can be used from outside of the RoutesContainer
|
* These helpers can be used from outside of the RoutesContainer
|
||||||
* (eg in the state models).
|
* (eg in the state models).
|
||||||
|
@ -656,7 +661,9 @@ function logModuleInitTime() {
|
||||||
performance.now() - global.__BUNDLE_START_TIME__,
|
performance.now() - global.__BUNDLE_START_TIME__,
|
||||||
)
|
)
|
||||||
console.log(`Time to first paint: ${initMs} ms`)
|
console.log(`Time to first paint: ${initMs} ms`)
|
||||||
logEvent('init', initMs)
|
logEvent('init', {
|
||||||
|
initMs,
|
||||||
|
})
|
||||||
|
|
||||||
if (__DEV__) {
|
if (__DEV__) {
|
||||||
// This log is noisy, so keep false committed
|
// This log is noisy, so keep false committed
|
||||||
|
|
|
@ -18,7 +18,14 @@ export async function openPicker(opts?: ImagePickerOptions) {
|
||||||
Toast.show('You may only select up to 4 images')
|
Toast.show('You may only select up to 4 images')
|
||||||
}
|
}
|
||||||
|
|
||||||
return (response.assets ?? []).slice(0, 4).map(image => ({
|
return (response.assets ?? [])
|
||||||
|
.slice(0, 4)
|
||||||
|
.filter(asset => {
|
||||||
|
if (asset.mimeType?.startsWith('image/')) return true
|
||||||
|
Toast.show('Only image files are supported')
|
||||||
|
return false
|
||||||
|
})
|
||||||
|
.map(image => ({
|
||||||
mime: 'image/jpeg',
|
mime: 'image/jpeg',
|
||||||
height: image.height,
|
height: image.height,
|
||||||
width: image.width,
|
width: image.width,
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
export type LogEvents = {
|
||||||
|
init: {
|
||||||
|
initMs: number
|
||||||
|
}
|
||||||
|
'feed:endReached': {
|
||||||
|
feedType: string
|
||||||
|
itemCount: number
|
||||||
|
}
|
||||||
|
'post:create': {
|
||||||
|
imageCount: number
|
||||||
|
isReply: boolean
|
||||||
|
hasLink: boolean
|
||||||
|
hasQuote: boolean
|
||||||
|
langs: string
|
||||||
|
logContext: 'Composer'
|
||||||
|
}
|
||||||
|
'post:like': {
|
||||||
|
logContext: 'FeedItem' | 'PostThreadItem' | 'Post'
|
||||||
|
}
|
||||||
|
'post:repost': {
|
||||||
|
logContext: 'FeedItem' | 'PostThreadItem' | 'Post'
|
||||||
|
}
|
||||||
|
'post:unlike': {
|
||||||
|
logContext: 'FeedItem' | 'PostThreadItem' | 'Post'
|
||||||
|
}
|
||||||
|
'post:unrepost': {
|
||||||
|
logContext: 'FeedItem' | 'PostThreadItem' | 'Post'
|
||||||
|
}
|
||||||
|
'profile:follow': {
|
||||||
|
logContext:
|
||||||
|
| 'RecommendedFollowsItem'
|
||||||
|
| 'PostThreadItem'
|
||||||
|
| 'ProfileCard'
|
||||||
|
| 'ProfileHeader'
|
||||||
|
| 'ProfileHeaderSuggestedFollows'
|
||||||
|
| 'ProfileMenu'
|
||||||
|
}
|
||||||
|
'profile:unfollow': {
|
||||||
|
logContext:
|
||||||
|
| 'RecommendedFollowsItem'
|
||||||
|
| 'PostThreadItem'
|
||||||
|
| 'ProfileCard'
|
||||||
|
| 'ProfileHeader'
|
||||||
|
| 'ProfileHeaderSuggestedFollows'
|
||||||
|
| 'ProfileMenu'
|
||||||
|
}
|
||||||
|
}
|
|
@ -6,6 +6,9 @@ import {
|
||||||
} from 'statsig-react-native-expo'
|
} from 'statsig-react-native-expo'
|
||||||
import {useSession} from '../../state/session'
|
import {useSession} from '../../state/session'
|
||||||
import {sha256} from 'js-sha256'
|
import {sha256} from 'js-sha256'
|
||||||
|
import {LogEvents} from './events'
|
||||||
|
|
||||||
|
export type {LogEvents}
|
||||||
|
|
||||||
const statsigOptions = {
|
const statsigOptions = {
|
||||||
environment: {
|
environment: {
|
||||||
|
@ -17,12 +20,28 @@ const statsigOptions = {
|
||||||
initTimeoutMs: 1,
|
initTimeoutMs: 1,
|
||||||
}
|
}
|
||||||
|
|
||||||
export function logEvent(
|
type FlatJSONRecord = Record<
|
||||||
eventName: string,
|
string,
|
||||||
value?: string | number | null,
|
string | number | boolean | null | undefined
|
||||||
metadata?: Record<string, string> | null,
|
>
|
||||||
|
|
||||||
|
let getCurrentRouteName: () => string | null | undefined = () => null
|
||||||
|
|
||||||
|
export function attachRouteToLogEvents(
|
||||||
|
getRouteName: () => string | null | undefined,
|
||||||
) {
|
) {
|
||||||
Statsig.logEvent(eventName, value, metadata)
|
getCurrentRouteName = getRouteName
|
||||||
|
}
|
||||||
|
|
||||||
|
export function logEvent<E extends keyof LogEvents>(
|
||||||
|
eventName: E & string,
|
||||||
|
rawMetadata: LogEvents[E] & FlatJSONRecord,
|
||||||
|
) {
|
||||||
|
const fullMetadata = {
|
||||||
|
...rawMetadata,
|
||||||
|
} as Record<string, string> // Statsig typings are unnecessarily strict here.
|
||||||
|
fullMetadata.routeName = getCurrentRouteName() ?? '(Uninitialized)'
|
||||||
|
Statsig.logEvent(eventName, null, fullMetadata)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function useGate(gateName: string) {
|
export function useGate(gateName: string) {
|
||||||
|
|
|
@ -5,6 +5,7 @@ import {Shadow} from '#/state/cache/types'
|
||||||
import {getAgent} from '#/state/session'
|
import {getAgent} from '#/state/session'
|
||||||
import {updatePostShadow} from '#/state/cache/post-shadow'
|
import {updatePostShadow} from '#/state/cache/post-shadow'
|
||||||
import {track} from '#/lib/analytics/analytics'
|
import {track} from '#/lib/analytics/analytics'
|
||||||
|
import {logEvent, LogEvents} from '#/lib/statsig/statsig'
|
||||||
import {useToggleMutationQueue} from '#/lib/hooks/useToggleMutationQueue'
|
import {useToggleMutationQueue} from '#/lib/hooks/useToggleMutationQueue'
|
||||||
|
|
||||||
export const RQKEY = (postUri: string) => ['post', postUri]
|
export const RQKEY = (postUri: string) => ['post', postUri]
|
||||||
|
@ -58,12 +59,14 @@ export function useGetPost() {
|
||||||
|
|
||||||
export function usePostLikeMutationQueue(
|
export function usePostLikeMutationQueue(
|
||||||
post: Shadow<AppBskyFeedDefs.PostView>,
|
post: Shadow<AppBskyFeedDefs.PostView>,
|
||||||
|
logContext: LogEvents['post:like']['logContext'] &
|
||||||
|
LogEvents['post:unlike']['logContext'],
|
||||||
) {
|
) {
|
||||||
const postUri = post.uri
|
const postUri = post.uri
|
||||||
const postCid = post.cid
|
const postCid = post.cid
|
||||||
const initialLikeUri = post.viewer?.like
|
const initialLikeUri = post.viewer?.like
|
||||||
const likeMutation = usePostLikeMutation()
|
const likeMutation = usePostLikeMutation(logContext)
|
||||||
const unlikeMutation = usePostUnlikeMutation()
|
const unlikeMutation = usePostUnlikeMutation(logContext)
|
||||||
|
|
||||||
const queueToggle = useToggleMutationQueue({
|
const queueToggle = useToggleMutationQueue({
|
||||||
initialState: initialLikeUri,
|
initialState: initialLikeUri,
|
||||||
|
@ -111,22 +114,30 @@ export function usePostLikeMutationQueue(
|
||||||
return [queueLike, queueUnlike]
|
return [queueLike, queueUnlike]
|
||||||
}
|
}
|
||||||
|
|
||||||
function usePostLikeMutation() {
|
function usePostLikeMutation(logContext: LogEvents['post:like']['logContext']) {
|
||||||
return useMutation<
|
return useMutation<
|
||||||
{uri: string}, // responds with the uri of the like
|
{uri: string}, // responds with the uri of the like
|
||||||
Error,
|
Error,
|
||||||
{uri: string; cid: string} // the post's uri and cid
|
{uri: string; cid: string} // the post's uri and cid
|
||||||
>({
|
>({
|
||||||
mutationFn: post => getAgent().like(post.uri, post.cid),
|
mutationFn: post => {
|
||||||
|
logEvent('post:like', {logContext})
|
||||||
|
return getAgent().like(post.uri, post.cid)
|
||||||
|
},
|
||||||
onSuccess() {
|
onSuccess() {
|
||||||
track('Post:Like')
|
track('Post:Like')
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function usePostUnlikeMutation() {
|
function usePostUnlikeMutation(
|
||||||
|
logContext: LogEvents['post:unlike']['logContext'],
|
||||||
|
) {
|
||||||
return useMutation<void, Error, {postUri: string; likeUri: string}>({
|
return useMutation<void, Error, {postUri: string; likeUri: string}>({
|
||||||
mutationFn: ({likeUri}) => getAgent().deleteLike(likeUri),
|
mutationFn: ({likeUri}) => {
|
||||||
|
logEvent('post:unlike', {logContext})
|
||||||
|
return getAgent().deleteLike(likeUri)
|
||||||
|
},
|
||||||
onSuccess() {
|
onSuccess() {
|
||||||
track('Post:Unlike')
|
track('Post:Unlike')
|
||||||
},
|
},
|
||||||
|
@ -135,12 +146,14 @@ function usePostUnlikeMutation() {
|
||||||
|
|
||||||
export function usePostRepostMutationQueue(
|
export function usePostRepostMutationQueue(
|
||||||
post: Shadow<AppBskyFeedDefs.PostView>,
|
post: Shadow<AppBskyFeedDefs.PostView>,
|
||||||
|
logContext: LogEvents['post:repost']['logContext'] &
|
||||||
|
LogEvents['post:unrepost']['logContext'],
|
||||||
) {
|
) {
|
||||||
const postUri = post.uri
|
const postUri = post.uri
|
||||||
const postCid = post.cid
|
const postCid = post.cid
|
||||||
const initialRepostUri = post.viewer?.repost
|
const initialRepostUri = post.viewer?.repost
|
||||||
const repostMutation = usePostRepostMutation()
|
const repostMutation = usePostRepostMutation(logContext)
|
||||||
const unrepostMutation = usePostUnrepostMutation()
|
const unrepostMutation = usePostUnrepostMutation(logContext)
|
||||||
|
|
||||||
const queueToggle = useToggleMutationQueue({
|
const queueToggle = useToggleMutationQueue({
|
||||||
initialState: initialRepostUri,
|
initialState: initialRepostUri,
|
||||||
|
@ -188,22 +201,32 @@ export function usePostRepostMutationQueue(
|
||||||
return [queueRepost, queueUnrepost]
|
return [queueRepost, queueUnrepost]
|
||||||
}
|
}
|
||||||
|
|
||||||
function usePostRepostMutation() {
|
function usePostRepostMutation(
|
||||||
|
logContext: LogEvents['post:repost']['logContext'],
|
||||||
|
) {
|
||||||
return useMutation<
|
return useMutation<
|
||||||
{uri: string}, // responds with the uri of the repost
|
{uri: string}, // responds with the uri of the repost
|
||||||
Error,
|
Error,
|
||||||
{uri: string; cid: string} // the post's uri and cid
|
{uri: string; cid: string} // the post's uri and cid
|
||||||
>({
|
>({
|
||||||
mutationFn: post => getAgent().repost(post.uri, post.cid),
|
mutationFn: post => {
|
||||||
|
logEvent('post:repost', {logContext})
|
||||||
|
return getAgent().repost(post.uri, post.cid)
|
||||||
|
},
|
||||||
onSuccess() {
|
onSuccess() {
|
||||||
track('Post:Repost')
|
track('Post:Repost')
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function usePostUnrepostMutation() {
|
function usePostUnrepostMutation(
|
||||||
|
logContext: LogEvents['post:unrepost']['logContext'],
|
||||||
|
) {
|
||||||
return useMutation<void, Error, {postUri: string; repostUri: string}>({
|
return useMutation<void, Error, {postUri: string; repostUri: string}>({
|
||||||
mutationFn: ({repostUri}) => getAgent().deleteRepost(repostUri),
|
mutationFn: ({repostUri}) => {
|
||||||
|
logEvent('post:unrepost', {logContext})
|
||||||
|
return getAgent().deleteRepost(repostUri)
|
||||||
|
},
|
||||||
onSuccess() {
|
onSuccess() {
|
||||||
track('Post:Unrepost')
|
track('Post:Unrepost')
|
||||||
},
|
},
|
||||||
|
|
|
@ -26,6 +26,7 @@ import {RQKEY as RQKEY_MY_MUTED} from './my-muted-accounts'
|
||||||
import {RQKEY as RQKEY_MY_BLOCKED} from './my-blocked-accounts'
|
import {RQKEY as RQKEY_MY_BLOCKED} from './my-blocked-accounts'
|
||||||
import {STALE} from '#/state/queries'
|
import {STALE} from '#/state/queries'
|
||||||
import {track} from '#/lib/analytics/analytics'
|
import {track} from '#/lib/analytics/analytics'
|
||||||
|
import {logEvent, LogEvents} from '#/lib/statsig/statsig'
|
||||||
import {ThreadNode} from './post-thread'
|
import {ThreadNode} from './post-thread'
|
||||||
|
|
||||||
export const RQKEY = (did: string) => ['profile', did]
|
export const RQKEY = (did: string) => ['profile', did]
|
||||||
|
@ -186,11 +187,13 @@ export function useProfileUpdateMutation() {
|
||||||
|
|
||||||
export function useProfileFollowMutationQueue(
|
export function useProfileFollowMutationQueue(
|
||||||
profile: Shadow<AppBskyActorDefs.ProfileViewDetailed>,
|
profile: Shadow<AppBskyActorDefs.ProfileViewDetailed>,
|
||||||
|
logContext: LogEvents['profile:follow']['logContext'] &
|
||||||
|
LogEvents['profile:unfollow']['logContext'],
|
||||||
) {
|
) {
|
||||||
const did = profile.did
|
const did = profile.did
|
||||||
const initialFollowingUri = profile.viewer?.following
|
const initialFollowingUri = profile.viewer?.following
|
||||||
const followMutation = useProfileFollowMutation()
|
const followMutation = useProfileFollowMutation(logContext)
|
||||||
const unfollowMutation = useProfileUnfollowMutation()
|
const unfollowMutation = useProfileUnfollowMutation(logContext)
|
||||||
|
|
||||||
const queueToggle = useToggleMutationQueue({
|
const queueToggle = useToggleMutationQueue({
|
||||||
initialState: initialFollowingUri,
|
initialState: initialFollowingUri,
|
||||||
|
@ -237,9 +240,12 @@ export function useProfileFollowMutationQueue(
|
||||||
return [queueFollow, queueUnfollow]
|
return [queueFollow, queueUnfollow]
|
||||||
}
|
}
|
||||||
|
|
||||||
function useProfileFollowMutation() {
|
function useProfileFollowMutation(
|
||||||
|
logContext: LogEvents['profile:follow']['logContext'],
|
||||||
|
) {
|
||||||
return useMutation<{uri: string; cid: string}, Error, {did: string}>({
|
return useMutation<{uri: string; cid: string}, Error, {did: string}>({
|
||||||
mutationFn: async ({did}) => {
|
mutationFn: async ({did}) => {
|
||||||
|
logEvent('profile:follow', {logContext})
|
||||||
return await getAgent().follow(did)
|
return await getAgent().follow(did)
|
||||||
},
|
},
|
||||||
onSuccess(data, variables) {
|
onSuccess(data, variables) {
|
||||||
|
@ -248,9 +254,12 @@ function useProfileFollowMutation() {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function useProfileUnfollowMutation() {
|
function useProfileUnfollowMutation(
|
||||||
|
logContext: LogEvents['profile:unfollow']['logContext'],
|
||||||
|
) {
|
||||||
return useMutation<void, Error, {did: string; followUri: string}>({
|
return useMutation<void, Error, {did: string; followUri: string}>({
|
||||||
mutationFn: async ({followUri}) => {
|
mutationFn: async ({followUri}) => {
|
||||||
|
logEvent('profile:unfollow', {logContext})
|
||||||
track('Profile:Unfollow', {username: followUri})
|
track('Profile:Unfollow', {username: followUri})
|
||||||
return await getAgent().deleteFollow(followUri)
|
return await getAgent().deleteFollow(followUri)
|
||||||
},
|
},
|
||||||
|
|
|
@ -57,7 +57,7 @@ export function RecommendedFollowsItem({
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function ProfileCard({
|
function ProfileCard({
|
||||||
profile,
|
profile,
|
||||||
onFollowStateChange,
|
onFollowStateChange,
|
||||||
moderation,
|
moderation,
|
||||||
|
@ -74,7 +74,10 @@ export function ProfileCard({
|
||||||
const {_} = useLingui()
|
const {_} = useLingui()
|
||||||
const [addingMoreSuggestions, setAddingMoreSuggestions] =
|
const [addingMoreSuggestions, setAddingMoreSuggestions] =
|
||||||
React.useState(false)
|
React.useState(false)
|
||||||
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(profile)
|
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(
|
||||||
|
profile,
|
||||||
|
'RecommendedFollowsItem',
|
||||||
|
)
|
||||||
|
|
||||||
const onToggleFollow = React.useCallback(async () => {
|
const onToggleFollow = React.useCallback(async () => {
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -65,6 +65,7 @@ import {logger} from '#/logger'
|
||||||
import {ComposerReplyTo} from 'view/com/composer/ComposerReplyTo'
|
import {ComposerReplyTo} from 'view/com/composer/ComposerReplyTo'
|
||||||
import * as Prompt from '#/components/Prompt'
|
import * as Prompt from '#/components/Prompt'
|
||||||
import {useDialogStateControlContext} from 'state/dialogs'
|
import {useDialogStateControlContext} from 'state/dialogs'
|
||||||
|
import {logEvent} from '#/lib/statsig/statsig'
|
||||||
|
|
||||||
type Props = ComposerOpts
|
type Props = ComposerOpts
|
||||||
export const ComposePost = observer(function ComposePost({
|
export const ComposePost = observer(function ComposePost({
|
||||||
|
@ -255,6 +256,16 @@ export const ComposePost = observer(function ComposePost({
|
||||||
setIsProcessing(false)
|
setIsProcessing(false)
|
||||||
return
|
return
|
||||||
} finally {
|
} finally {
|
||||||
|
if (postUri) {
|
||||||
|
logEvent('post:create', {
|
||||||
|
imageCount: gallery.size,
|
||||||
|
isReply: replyTo != null,
|
||||||
|
hasLink: extLink != null,
|
||||||
|
hasQuote: quote != null,
|
||||||
|
langs: langPrefs.postLanguage,
|
||||||
|
logContext: 'Composer',
|
||||||
|
})
|
||||||
|
}
|
||||||
track('Create Post', {
|
track('Create Post', {
|
||||||
imageCount: gallery.size,
|
imageCount: gallery.size,
|
||||||
})
|
})
|
||||||
|
|
|
@ -42,7 +42,10 @@ function PostThreadFollowBtnLoaded({
|
||||||
const {isTabletOrDesktop} = useWebMediaQueries()
|
const {isTabletOrDesktop} = useWebMediaQueries()
|
||||||
const profile: Shadow<AppBskyActorDefs.ProfileViewBasic> =
|
const profile: Shadow<AppBskyActorDefs.ProfileViewBasic> =
|
||||||
useProfileShadow(profileUnshadowed)
|
useProfileShadow(profileUnshadowed)
|
||||||
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(profile)
|
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(
|
||||||
|
profile,
|
||||||
|
'PostThreadItem',
|
||||||
|
)
|
||||||
const requireAuth = useRequireAuth()
|
const requireAuth = useRequireAuth()
|
||||||
|
|
||||||
const isFollowing = !!profile.viewer?.following
|
const isFollowing = !!profile.viewer?.following
|
||||||
|
|
|
@ -407,6 +407,7 @@ let PostThreadItemLoaded = ({
|
||||||
record={record}
|
record={record}
|
||||||
richText={richText}
|
richText={richText}
|
||||||
onPressReply={onPressReply}
|
onPressReply={onPressReply}
|
||||||
|
logContext="PostThreadItem"
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
@ -560,6 +561,7 @@ let PostThreadItemLoaded = ({
|
||||||
record={record}
|
record={record}
|
||||||
richText={richText}
|
richText={richText}
|
||||||
onPressReply={onPressReply}
|
onPressReply={onPressReply}
|
||||||
|
logContext="PostThreadItem"
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
|
|
@ -220,6 +220,7 @@ function PostInner({
|
||||||
record={record}
|
record={record}
|
||||||
richText={richText}
|
richText={richText}
|
||||||
onPressReply={onPressReply}
|
onPressReply={onPressReply}
|
||||||
|
logContext="Post"
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
|
|
@ -33,6 +33,7 @@ import {useLingui} from '@lingui/react'
|
||||||
import {DiscoverFallbackHeader} from './DiscoverFallbackHeader'
|
import {DiscoverFallbackHeader} from './DiscoverFallbackHeader'
|
||||||
import {FALLBACK_MARKER_POST} from '#/lib/api/feed/home'
|
import {FALLBACK_MARKER_POST} from '#/lib/api/feed/home'
|
||||||
import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender'
|
import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender'
|
||||||
|
import {logEvent} from '#/lib/statsig/statsig'
|
||||||
|
|
||||||
const LOADING_ITEM = {_reactKey: '__loading__'}
|
const LOADING_ITEM = {_reactKey: '__loading__'}
|
||||||
const EMPTY_FEED_ITEM = {_reactKey: '__empty__'}
|
const EMPTY_FEED_ITEM = {_reactKey: '__empty__'}
|
||||||
|
@ -223,16 +224,29 @@ let Feed = ({
|
||||||
setIsPTRing(false)
|
setIsPTRing(false)
|
||||||
}, [refetch, track, setIsPTRing, onHasNew])
|
}, [refetch, track, setIsPTRing, onHasNew])
|
||||||
|
|
||||||
|
const feedType = feed.split('|')[0]
|
||||||
const onEndReached = React.useCallback(async () => {
|
const onEndReached = React.useCallback(async () => {
|
||||||
if (isFetching || !hasNextPage || isError) return
|
if (isFetching || !hasNextPage || isError) return
|
||||||
|
|
||||||
|
logEvent('feed:endReached', {
|
||||||
|
feedType: feedType,
|
||||||
|
itemCount: feedItems.length,
|
||||||
|
})
|
||||||
track('Feed:onEndReached')
|
track('Feed:onEndReached')
|
||||||
try {
|
try {
|
||||||
await fetchNextPage()
|
await fetchNextPage()
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error('Failed to load more posts', {message: err})
|
logger.error('Failed to load more posts', {message: err})
|
||||||
}
|
}
|
||||||
}, [isFetching, hasNextPage, isError, fetchNextPage, track])
|
}, [
|
||||||
|
isFetching,
|
||||||
|
hasNextPage,
|
||||||
|
isError,
|
||||||
|
fetchNextPage,
|
||||||
|
track,
|
||||||
|
feedType,
|
||||||
|
feedItems.length,
|
||||||
|
])
|
||||||
|
|
||||||
const onPressTryAgain = React.useCallback(() => {
|
const onPressTryAgain = React.useCallback(() => {
|
||||||
refetch()
|
refetch()
|
||||||
|
|
|
@ -310,6 +310,7 @@ let FeedItemInner = ({
|
||||||
showAppealLabelItem={
|
showAppealLabelItem={
|
||||||
post.author.did === currentAccount?.did && isModeratedPost
|
post.author.did === currentAccount?.did && isModeratedPost
|
||||||
}
|
}
|
||||||
|
logContext="FeedItem"
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
|
|
@ -13,13 +13,18 @@ export function FollowButton({
|
||||||
followedType = 'default',
|
followedType = 'default',
|
||||||
profile,
|
profile,
|
||||||
labelStyle,
|
labelStyle,
|
||||||
|
logContext,
|
||||||
}: {
|
}: {
|
||||||
unfollowedType?: ButtonType
|
unfollowedType?: ButtonType
|
||||||
followedType?: ButtonType
|
followedType?: ButtonType
|
||||||
profile: Shadow<AppBskyActorDefs.ProfileViewBasic>
|
profile: Shadow<AppBskyActorDefs.ProfileViewBasic>
|
||||||
labelStyle?: StyleProp<TextStyle>
|
labelStyle?: StyleProp<TextStyle>
|
||||||
|
logContext: 'ProfileCard'
|
||||||
}) {
|
}) {
|
||||||
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(profile)
|
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(
|
||||||
|
profile,
|
||||||
|
logContext,
|
||||||
|
)
|
||||||
const {_} = useLingui()
|
const {_} = useLingui()
|
||||||
|
|
||||||
const onPressFollow = async () => {
|
const onPressFollow = async () => {
|
||||||
|
|
|
@ -230,7 +230,9 @@ export function ProfileCardWithFollowBtn({
|
||||||
renderButton={
|
renderButton={
|
||||||
isMe
|
isMe
|
||||||
? undefined
|
? undefined
|
||||||
: profileShadow => <FollowButton profile={profileShadow} />
|
: profileShadow => (
|
||||||
|
<FollowButton profile={profileShadow} logContext="ProfileCard" />
|
||||||
|
)
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
|
|
|
@ -103,7 +103,10 @@ let ProfileHeader = ({
|
||||||
const invalidHandle = isInvalidHandle(profile.handle)
|
const invalidHandle = isInvalidHandle(profile.handle)
|
||||||
const {isDesktop} = useWebMediaQueries()
|
const {isDesktop} = useWebMediaQueries()
|
||||||
const [showSuggestedFollows, setShowSuggestedFollows] = React.useState(false)
|
const [showSuggestedFollows, setShowSuggestedFollows] = React.useState(false)
|
||||||
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(profile)
|
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(
|
||||||
|
profile,
|
||||||
|
'ProfileHeader',
|
||||||
|
)
|
||||||
const [__, queueUnblock] = useProfileBlockMutationQueue(profile)
|
const [__, queueUnblock] = useProfileBlockMutationQueue(profile)
|
||||||
const unblockPromptControl = Prompt.usePromptControl()
|
const unblockPromptControl = Prompt.usePromptControl()
|
||||||
const moderation = useMemo(
|
const moderation = useMemo(
|
||||||
|
|
|
@ -172,7 +172,10 @@ function SuggestedFollow({
|
||||||
const {_} = useLingui()
|
const {_} = useLingui()
|
||||||
const moderationOpts = useModerationOpts()
|
const moderationOpts = useModerationOpts()
|
||||||
const profile = useProfileShadow(profileUnshadowed)
|
const profile = useProfileShadow(profileUnshadowed)
|
||||||
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(profile)
|
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(
|
||||||
|
profile,
|
||||||
|
'ProfileHeaderSuggestedFollows',
|
||||||
|
)
|
||||||
|
|
||||||
const onPressFollow = React.useCallback(async () => {
|
const onPressFollow = React.useCallback(async () => {
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -52,7 +52,10 @@ let ProfileMenu = ({
|
||||||
|
|
||||||
const [queueMute, queueUnmute] = useProfileMuteMutationQueue(profile)
|
const [queueMute, queueUnmute] = useProfileMuteMutationQueue(profile)
|
||||||
const [queueBlock, queueUnblock] = useProfileBlockMutationQueue(profile)
|
const [queueBlock, queueUnblock] = useProfileBlockMutationQueue(profile)
|
||||||
const [, queueUnfollow] = useProfileFollowMutationQueue(profile)
|
const [, queueUnfollow] = useProfileFollowMutationQueue(
|
||||||
|
profile,
|
||||||
|
'ProfileMenu',
|
||||||
|
)
|
||||||
|
|
||||||
const blockPromptControl = Prompt.usePromptControl()
|
const blockPromptControl = Prompt.usePromptControl()
|
||||||
|
|
||||||
|
|
|
@ -44,6 +44,7 @@ let PostCtrls = ({
|
||||||
showAppealLabelItem,
|
showAppealLabelItem,
|
||||||
style,
|
style,
|
||||||
onPressReply,
|
onPressReply,
|
||||||
|
logContext,
|
||||||
}: {
|
}: {
|
||||||
big?: boolean
|
big?: boolean
|
||||||
post: Shadow<AppBskyFeedDefs.PostView>
|
post: Shadow<AppBskyFeedDefs.PostView>
|
||||||
|
@ -52,13 +53,17 @@ let PostCtrls = ({
|
||||||
showAppealLabelItem?: boolean
|
showAppealLabelItem?: boolean
|
||||||
style?: StyleProp<ViewStyle>
|
style?: StyleProp<ViewStyle>
|
||||||
onPressReply: () => void
|
onPressReply: () => void
|
||||||
|
logContext: 'FeedItem' | 'PostThreadItem' | 'Post'
|
||||||
}): React.ReactNode => {
|
}): React.ReactNode => {
|
||||||
const theme = useTheme()
|
const theme = useTheme()
|
||||||
const {_} = useLingui()
|
const {_} = useLingui()
|
||||||
const {openComposer} = useComposerControls()
|
const {openComposer} = useComposerControls()
|
||||||
const {closeModal} = useModalControls()
|
const {closeModal} = useModalControls()
|
||||||
const [queueLike, queueUnlike] = usePostLikeMutationQueue(post)
|
const [queueLike, queueUnlike] = usePostLikeMutationQueue(post, logContext)
|
||||||
const [queueRepost, queueUnrepost] = usePostRepostMutationQueue(post)
|
const [queueRepost, queueUnrepost] = usePostRepostMutationQueue(
|
||||||
|
post,
|
||||||
|
logContext,
|
||||||
|
)
|
||||||
const requireAuth = useRequireAuth()
|
const requireAuth = useRequireAuth()
|
||||||
|
|
||||||
const defaultCtrlColor = React.useMemo(
|
const defaultCtrlColor = React.useMemo(
|
||||||
|
|
Loading…
Reference in New Issue