Switch to using typeahead for user search

This commit is contained in:
Zed
2023-08-23 10:14:44 +02:00
parent 45808361af
commit a3e11e3272
5 changed files with 15 additions and 11 deletions

View File

@@ -115,22 +115,16 @@ proc getGraphTweetSearch*(query: Query; after=""): Future[Timeline] {.async.} =
result = parseGraphSearch(await fetch(url, Api.search), after)
result.query = query
proc getUserSearch*(query: Query; page="1"): Future[Result[User]] {.async.} =
proc getUserSearch*(query: Query): Future[Result[User]] {.async.} =
if query.text.len == 0:
return Result[User](query: query, beginning: true)
let
page = if page.len == 0: "1" else: page
url = userSearch ? genParams({"q": query.text, "skip_status": "1", "page": page})
url = userSearch ? genParams({"q": query.text, "result_type": "users"})
js = await fetchRaw(url, Api.userSearch)
result = parseUsers(js)
result = parseTypeahead(js)
result.query = query
if page.len == 0:
result.bottom = "2"
elif page.allCharsInSet(Digits):
result.bottom = $(parseInt(page) + 1)
proc getPhotoRail*(name: string): Future[PhotoRail] {.async.} =
if name.len == 0: return