From 2974b407be8c1153fb2dd9053fbfd23b735aada5 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 16 Apr 2024 20:38:41 +0100 Subject: add sort to searchPosts request (#3581) --- src/state/queries/search-posts.ts | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) (limited to 'src') diff --git a/src/state/queries/search-posts.ts b/src/state/queries/search-posts.ts index 1822577c9..1106f7461 100644 --- a/src/state/queries/search-posts.ts +++ b/src/state/queries/search-posts.ts @@ -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, -- cgit 1.4.1