aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/search/useSearchAutocomplete.ts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* feat: add source filter to query language (#2465)Mohamed Bassem6 days1-1/+57
| | | | | | | | | | | * feat: add source filter to query language Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * autocomplete source --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* refactor: remove unused trpc files from web and mobileMohamed Bassem13 days1-1/+1
|
* refactor: migrate trpc to the new react query integration mode (#2438)Mohamed Bassem13 days1-4/+8
| | | | | | | | | * refactor: migrate trpc to the new react query integration mode * more fixes * more migrations * upgrade trpc client
* fix: only trigger search autocomplete on first search charMohamed Bassem2025-12-201-2/+7
|
* feat: add is:broken search qualifier for broken links (#2225)Mohamed Bassem2025-12-081-0/+6
| | | | | | | | | | | | | | | | | | | | Add a new search qualifier `is:broken` that allows users to filter bookmarks with broken or failed links. This matches the functionality on the broken links settings page, where a link is considered broken if: - crawlStatus is "failure" - crawlStatusCode is less than 200 - crawlStatusCode is greater than 299 The qualifier supports negation with `-is:broken` to find working links. Changes: - Add brokenLinks matcher type definition - Update search query parser to handle is:broken qualifier - Implement query execution logic for broken links filtering - Add autocomplete support with translations - Add parser tests - Update search query language documentation Co-authored-by: Claude <noreply@anthropic.com>
* feat: autocomplete search terms (#2178)Mohamed Bassem2025-11-291-0/+555
* refactor(web): split search autocomplete logic * some improvements * restructure the code * fix typesafety * add feed suggestions * fix