Update onboarding user suggestions with new endpoint (#9872)
This commit is contained in:
@@ -20,7 +20,7 @@ import {
|
|||||||
OnboardingTitleText,
|
OnboardingTitleText,
|
||||||
} from '#/screens/Onboarding/Layout'
|
} from '#/screens/Onboarding/Layout'
|
||||||
import {useOnboardingInternalState} from '#/screens/Onboarding/state'
|
import {useOnboardingInternalState} from '#/screens/Onboarding/state'
|
||||||
import {useSuggestedUsers} from '#/screens/Search/util/useSuggestedUsers'
|
import {useSuggestedOnboardingUsers} from '#/screens/Search/util/useSuggestedOnboardingUsers'
|
||||||
import {atoms as a, tokens, useBreakpoints, useTheme, web} from '#/alf'
|
import {atoms as a, tokens, useBreakpoints, useTheme, web} from '#/alf'
|
||||||
import {Admonition} from '#/components/Admonition'
|
import {Admonition} from '#/components/Admonition'
|
||||||
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
|
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
|
||||||
@@ -64,13 +64,14 @@ export function StepSuggestedAccounts() {
|
|||||||
const interests = Object.keys(interestsDisplayNames)
|
const interests = Object.keys(interestsDisplayNames)
|
||||||
.sort(boostInterests(popularInterests))
|
.sort(boostInterests(popularInterests))
|
||||||
.sort(boostInterests(state.interestsStepResults.selectedInterests))
|
.sort(boostInterests(state.interestsStepResults.selectedInterests))
|
||||||
|
|
||||||
const {
|
const {
|
||||||
data: suggestedUsers,
|
data: suggestedUsers,
|
||||||
isLoading,
|
isLoading,
|
||||||
error,
|
error,
|
||||||
isRefetching,
|
isRefetching,
|
||||||
refetch,
|
refetch,
|
||||||
} = useSuggestedUsers({
|
} = useSuggestedOnboardingUsers({
|
||||||
category: selectedInterest || (useFullExperience ? null : interests[0]),
|
category: selectedInterest || (useFullExperience ? null : interests[0]),
|
||||||
search: !useFullExperience,
|
search: !useFullExperience,
|
||||||
overrideInterests: state.interestsStepResults.selectedInterests,
|
overrideInterests: state.interestsStepResults.selectedInterests,
|
||||||
|
|||||||
@@ -0,0 +1,66 @@
|
|||||||
|
import {useMemo} from 'react'
|
||||||
|
|
||||||
|
import {useInterestsDisplayNames} from '#/lib/interests'
|
||||||
|
import {useActorSearch} from '#/state/queries/actor-search'
|
||||||
|
import {useGetSuggestedOnboardingUsersQuery} from '#/state/queries/trending/useGetSuggestedOnboardingUsersQuery'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Conditional hook, used in case a user is a non-english speaker, in which
|
||||||
|
* case we fall back to searching for users instead of our more curated set.
|
||||||
|
*/
|
||||||
|
export function useSuggestedOnboardingUsers({
|
||||||
|
category = null,
|
||||||
|
search = false,
|
||||||
|
overrideInterests,
|
||||||
|
}: {
|
||||||
|
category?: string | null
|
||||||
|
/**
|
||||||
|
* If true, we'll search for users using the translated value of `category`,
|
||||||
|
* based on the user's app language setting
|
||||||
|
*/
|
||||||
|
search?: boolean
|
||||||
|
/**
|
||||||
|
* In onboarding, interests haven't been saved to prefs yet, so we need to
|
||||||
|
* pass them down through here
|
||||||
|
*/
|
||||||
|
overrideInterests: string[]
|
||||||
|
}) {
|
||||||
|
const interestsDisplayNames = useInterestsDisplayNames()
|
||||||
|
const curated = useGetSuggestedOnboardingUsersQuery({
|
||||||
|
enabled: !search,
|
||||||
|
category,
|
||||||
|
overrideInterests,
|
||||||
|
})
|
||||||
|
const searched = useActorSearch({
|
||||||
|
enabled: !!search,
|
||||||
|
// use user's app language translation for this value
|
||||||
|
query: category ? interestsDisplayNames[category] : '',
|
||||||
|
limit: 10,
|
||||||
|
})
|
||||||
|
|
||||||
|
return useMemo(() => {
|
||||||
|
if (search) {
|
||||||
|
return {
|
||||||
|
// we're not paginating right now
|
||||||
|
data: searched?.data
|
||||||
|
? {
|
||||||
|
actors: searched.data.pages.flatMap(p => p.actors) ?? [],
|
||||||
|
recId: undefined,
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
isLoading: searched.isLoading,
|
||||||
|
error: searched.error,
|
||||||
|
isRefetching: searched.isRefetching,
|
||||||
|
refetch: searched.refetch,
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return {
|
||||||
|
data: curated.data,
|
||||||
|
isLoading: curated.isLoading,
|
||||||
|
error: curated.error,
|
||||||
|
isRefetching: curated.isRefetching,
|
||||||
|
refetch: curated.refetch,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, [curated, searched, search])
|
||||||
|
}
|
||||||
@@ -11,25 +11,18 @@ import {useGetSuggestedUsersQuery} from '#/state/queries/trending/useGetSuggeste
|
|||||||
export function useSuggestedUsers({
|
export function useSuggestedUsers({
|
||||||
category = null,
|
category = null,
|
||||||
search = false,
|
search = false,
|
||||||
overrideInterests,
|
|
||||||
}: {
|
}: {
|
||||||
category?: string | null
|
category?: string | null
|
||||||
/**
|
/**
|
||||||
* If true, we'll search for users using the translated value of `category`,
|
* If true, we'll search for users using the translated value of `category`,
|
||||||
* based on the user's "app language setting
|
* based on the user's app language setting
|
||||||
*/
|
*/
|
||||||
search?: boolean
|
search?: boolean
|
||||||
/**
|
|
||||||
* In onboarding, interests haven't been saved to prefs yet, so we need to
|
|
||||||
* pass them down through here
|
|
||||||
*/
|
|
||||||
overrideInterests?: string[]
|
|
||||||
}) {
|
}) {
|
||||||
const interestsDisplayNames = useInterestsDisplayNames()
|
const interestsDisplayNames = useInterestsDisplayNames()
|
||||||
const curated = useGetSuggestedUsersQuery({
|
const curated = useGetSuggestedUsersQuery({
|
||||||
enabled: !search,
|
enabled: !search,
|
||||||
category,
|
category,
|
||||||
overrideInterests,
|
|
||||||
})
|
})
|
||||||
const searched = useActorSearch({
|
const searched = useActorSearch({
|
||||||
enabled: !!search,
|
enabled: !!search,
|
||||||
|
|||||||
Vendored
+2
@@ -25,6 +25,7 @@ import {findAllProfilesInQueryData as findAllProfilesInProfileQueryData} from '#
|
|||||||
import {findAllProfilesInQueryData as findAllProfilesInProfileFollowersQueryData} from '#/state/queries/profile-followers'
|
import {findAllProfilesInQueryData as findAllProfilesInProfileFollowersQueryData} from '#/state/queries/profile-followers'
|
||||||
import {findAllProfilesInQueryData as findAllProfilesInProfileFollowsQueryData} from '#/state/queries/profile-follows'
|
import {findAllProfilesInQueryData as findAllProfilesInProfileFollowsQueryData} from '#/state/queries/profile-follows'
|
||||||
import {findAllProfilesInQueryData as findAllProfilesInSuggestedFollowsQueryData} from '#/state/queries/suggested-follows'
|
import {findAllProfilesInQueryData as findAllProfilesInSuggestedFollowsQueryData} from '#/state/queries/suggested-follows'
|
||||||
|
import {findAllProfilesInQueryData as findAllProfilesInSuggestedOnboardingUsersQueryData} from '#/state/queries/trending/useGetSuggestedOnboardingUsersQuery'
|
||||||
import {findAllProfilesInQueryData as findAllProfilesInSuggestedUsersQueryData} from '#/state/queries/trending/useGetSuggestedUsersQuery'
|
import {findAllProfilesInQueryData as findAllProfilesInSuggestedUsersQueryData} from '#/state/queries/trending/useGetSuggestedUsersQuery'
|
||||||
import {findAllProfilesInQueryData as findAllProfilesInPostThreadV2QueryData} from '#/state/queries/usePostThread/queryCache'
|
import {findAllProfilesInQueryData as findAllProfilesInPostThreadV2QueryData} from '#/state/queries/usePostThread/queryCache'
|
||||||
import type * as bsky from '#/types/bsky'
|
import type * as bsky from '#/types/bsky'
|
||||||
@@ -247,6 +248,7 @@ function* findProfilesInCache(
|
|||||||
yield* findAllProfilesInProfileQueryData(queryClient, did)
|
yield* findAllProfilesInProfileQueryData(queryClient, did)
|
||||||
yield* findAllProfilesInProfileFollowersQueryData(queryClient, did)
|
yield* findAllProfilesInProfileFollowersQueryData(queryClient, did)
|
||||||
yield* findAllProfilesInProfileFollowsQueryData(queryClient, did)
|
yield* findAllProfilesInProfileFollowsQueryData(queryClient, did)
|
||||||
|
yield* findAllProfilesInSuggestedOnboardingUsersQueryData(queryClient, did)
|
||||||
yield* findAllProfilesInSuggestedUsersQueryData(queryClient, did)
|
yield* findAllProfilesInSuggestedUsersQueryData(queryClient, did)
|
||||||
yield* findAllProfilesInSuggestedFollowsQueryData(queryClient, did)
|
yield* findAllProfilesInSuggestedFollowsQueryData(queryClient, did)
|
||||||
yield* findAllProfilesInActorSearchQueryData(queryClient, did)
|
yield* findAllProfilesInActorSearchQueryData(queryClient, did)
|
||||||
|
|||||||
@@ -0,0 +1,103 @@
|
|||||||
|
import {
|
||||||
|
type AppBskyActorDefs,
|
||||||
|
type AppBskyUnspeccedGetSuggestedOnboardingUsers,
|
||||||
|
} from '@atproto/api'
|
||||||
|
import {type QueryClient, useQuery} from '@tanstack/react-query'
|
||||||
|
|
||||||
|
import {createBskyTopicsHeader} from '#/lib/api/feed/utils'
|
||||||
|
import {logger} from '#/logger'
|
||||||
|
import {getContentLanguages} from '#/state/preferences/languages'
|
||||||
|
import {STALE} from '#/state/queries'
|
||||||
|
import {usePreferencesQuery} from '#/state/queries/preferences'
|
||||||
|
import {useAgent} from '#/state/session'
|
||||||
|
|
||||||
|
export type QueryProps = {
|
||||||
|
category?: string | null
|
||||||
|
limit?: number
|
||||||
|
enabled?: boolean
|
||||||
|
overrideInterests: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export const getSuggestedOnboardingUsersQueryKeyRoot =
|
||||||
|
'unspecced-suggested-onboarding-users'
|
||||||
|
export const createGetSuggestedOnboardingUsersQueryKey = (
|
||||||
|
props: QueryProps,
|
||||||
|
) => [
|
||||||
|
getSuggestedOnboardingUsersQueryKeyRoot,
|
||||||
|
props.category,
|
||||||
|
props.limit,
|
||||||
|
props.overrideInterests.join(','),
|
||||||
|
]
|
||||||
|
|
||||||
|
export function useGetSuggestedOnboardingUsersQuery(props: QueryProps) {
|
||||||
|
const agent = useAgent()
|
||||||
|
const {data: preferences} = usePreferencesQuery()
|
||||||
|
|
||||||
|
return useQuery({
|
||||||
|
enabled: !!preferences && props.enabled !== false,
|
||||||
|
staleTime: STALE.MINUTES.THREE,
|
||||||
|
queryKey: createGetSuggestedOnboardingUsersQueryKey(props),
|
||||||
|
queryFn: async () => {
|
||||||
|
const contentLangs = getContentLanguages().join(',')
|
||||||
|
|
||||||
|
const overrideInterests = props.overrideInterests.join(',')
|
||||||
|
|
||||||
|
const {data} = await agent.app.bsky.unspecced.getSuggestedOnboardingUsers(
|
||||||
|
{
|
||||||
|
category: props.category ?? undefined,
|
||||||
|
limit: props.limit || 10,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
...createBskyTopicsHeader(overrideInterests),
|
||||||
|
'Accept-Language': contentLangs,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
// FALLBACK: if no results for 'all', try again with no interests specified
|
||||||
|
if (!props.category && data.actors.length === 0) {
|
||||||
|
logger.error(
|
||||||
|
`Did not get any suggested onboarding users, falling back - interests: ${overrideInterests}`,
|
||||||
|
)
|
||||||
|
const {data: fallbackData} =
|
||||||
|
await agent.app.bsky.unspecced.getSuggestedOnboardingUsers(
|
||||||
|
{
|
||||||
|
category: props.category ?? undefined,
|
||||||
|
limit: props.limit || 10,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
'Accept-Language': contentLangs,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
return fallbackData
|
||||||
|
}
|
||||||
|
|
||||||
|
return data
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function* findAllProfilesInQueryData(
|
||||||
|
queryClient: QueryClient,
|
||||||
|
did: string,
|
||||||
|
): Generator<AppBskyActorDefs.ProfileView, void> {
|
||||||
|
const responses =
|
||||||
|
queryClient.getQueriesData<AppBskyUnspeccedGetSuggestedOnboardingUsers.OutputSchema>(
|
||||||
|
{
|
||||||
|
queryKey: [getSuggestedOnboardingUsersQueryKeyRoot],
|
||||||
|
},
|
||||||
|
)
|
||||||
|
for (const [_key, response] of responses) {
|
||||||
|
if (!response) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const actor of response.actors) {
|
||||||
|
if (actor.did === did) {
|
||||||
|
yield actor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -18,7 +18,6 @@ export type QueryProps = {
|
|||||||
category?: string | null
|
category?: string | null
|
||||||
limit?: number
|
limit?: number
|
||||||
enabled?: boolean
|
enabled?: boolean
|
||||||
overrideInterests?: string[]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const getSuggestedUsersQueryKeyRoot = 'unspecced-suggested-users'
|
export const getSuggestedUsersQueryKeyRoot = 'unspecced-suggested-users'
|
||||||
@@ -26,7 +25,6 @@ export const createGetSuggestedUsersQueryKey = (props: QueryProps) => [
|
|||||||
getSuggestedUsersQueryKeyRoot,
|
getSuggestedUsersQueryKeyRoot,
|
||||||
props.category,
|
props.category,
|
||||||
props.limit,
|
props.limit,
|
||||||
props.overrideInterests?.join(','),
|
|
||||||
]
|
]
|
||||||
|
|
||||||
export function useGetSuggestedUsersQuery(props: QueryProps) {
|
export function useGetSuggestedUsersQuery(props: QueryProps) {
|
||||||
@@ -41,11 +39,6 @@ export function useGetSuggestedUsersQuery(props: QueryProps) {
|
|||||||
const contentLangs = getContentLanguages().join(',')
|
const contentLangs = getContentLanguages().join(',')
|
||||||
const userInterests = aggregateUserInterests(preferences)
|
const userInterests = aggregateUserInterests(preferences)
|
||||||
|
|
||||||
const interests =
|
|
||||||
props.overrideInterests && props.overrideInterests.length > 0
|
|
||||||
? props.overrideInterests.join(',')
|
|
||||||
: userInterests
|
|
||||||
|
|
||||||
const {data} = await agent.app.bsky.unspecced.getSuggestedUsers(
|
const {data} = await agent.app.bsky.unspecced.getSuggestedUsers(
|
||||||
{
|
{
|
||||||
category: props.category ?? undefined,
|
category: props.category ?? undefined,
|
||||||
@@ -53,7 +46,7 @@ export function useGetSuggestedUsersQuery(props: QueryProps) {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
headers: {
|
headers: {
|
||||||
...createBskyTopicsHeader(interests),
|
...createBskyTopicsHeader(userInterests),
|
||||||
'Accept-Language': contentLangs,
|
'Accept-Language': contentLangs,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -61,7 +54,7 @@ export function useGetSuggestedUsersQuery(props: QueryProps) {
|
|||||||
// FALLBACK: if no results for 'all', try again with no interests specified
|
// FALLBACK: if no results for 'all', try again with no interests specified
|
||||||
if (!props.category && data.actors.length === 0) {
|
if (!props.category && data.actors.length === 0) {
|
||||||
logger.error(
|
logger.error(
|
||||||
`Did not get any suggested users, falling back - interests: ${interests}`,
|
`Did not get any suggested users, falling back - interests: ${userInterests}`,
|
||||||
)
|
)
|
||||||
const {data: fallbackData} =
|
const {data: fallbackData} =
|
||||||
await agent.app.bsky.unspecced.getSuggestedUsers(
|
await agent.app.bsky.unspecced.getSuggestedUsers(
|
||||||
|
|||||||
Reference in New Issue
Block a user