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}), queryKey: searchPostsQueryKey({query, sort}),
queryFn: async ({pageParam}) => { queryFn: async ({pageParam}) => {
// waiting on new APIs const res = await getAgent().app.bsky.feed.searchPosts({
switch (sort) { q: query,
// case 'top': limit: 25,
// case 'latest': cursor: pageParam,
default: sort,
const res = await getAgent().app.bsky.feed.searchPosts({ })
q: query, return res.data
limit: 25,
cursor: pageParam,
})
return res.data
}
}, },
initialPageParam: undefined, initialPageParam: undefined,
getNextPageParam: lastPage => lastPage.cursor, getNextPageParam: lastPage => lastPage.cursor,