add sort to searchPosts request (#3581)

zio/stable
Samuel Newman 2024-04-16 20:38:41 +01:00 committed by GitHub
parent 45e572b212
commit 2974b407be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 12 deletions

View File

@ -34,18 +34,13 @@ export function useSearchPostsQuery({
>({
queryKey: searchPostsQueryKey({query, sort}),
queryFn: async ({pageParam}) => {
// waiting on new APIs
switch (sort) {
// case 'top':
// case 'latest':
default:
const res = await getAgent().app.bsky.feed.searchPosts({
q: query,
limit: 25,
cursor: pageParam,
})
return res.data
}
const res = await getAgent().app.bsky.feed.searchPosts({
q: query,
limit: 25,
cursor: pageParam,
sort,
})
return res.data
},
initialPageParam: undefined,
getNextPageParam: lastPage => lastPage.cursor,