[PR #802] [MERGED] feat: Add support for smart lists #1700

Closed
opened 2026-03-02 11:58:47 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/karakeep-app/karakeep/pull/802
Author: @MohamedBassem
Created: 1/1/2025
Status: Merged
Merged: 1/2/2025
Merged by: @MohamedBassem

Base: mainHead: smart-lists


📝 Commits (10+)

  • 5d6d497 docs: Add search query language documentation
  • a055a98 refactor: Migrate from the deprecated drizzle-orm schema
  • dc14ba0 feat: Add support for smart lists
  • 863a0a7 docs: Add firefox import-export instructions (#799)
  • 7358f42 Merge branch 'main' into smart-lists
  • a0f2da6 i18n
  • 4d32f0f Fix update list endpoint
  • 6ac3b76 Add a test for smart lists
  • bacac82 Add header to the query explainer
  • e6d0986 Hide remove from lists in the smart context list

📊 Changes

26 files changed (+2045 additions, -100 deletions)

View changed files

📝 .dockerignore (+1 -0)
📝 apps/cli/src/commands/lists.ts (+10 -2)
📝 apps/web/app/api/v1/lists/[listId]/route.ts (+3 -3)
📝 apps/web/app/dashboard/lists/[listId]/page.tsx (+10 -6)
📝 apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx (+18 -14)
📝 apps/web/components/dashboard/lists/EditListModal.tsx (+96 -23)
📝 apps/web/components/dashboard/lists/ListHeader.tsx (+32 -6)
📝 apps/web/components/dashboard/lists/ListOptions.tsx (+3 -1)
📝 apps/web/components/dashboard/search/QueryExplainerTooltip.tsx (+3 -0)
📝 apps/web/components/dashboard/search/SearchInput.tsx (+23 -1)
📝 apps/web/lib/i18n/locales/en/translation.json (+8 -1)
packages/db/drizzle/0037_daily_smiling_tiger.sql (+2 -0)
packages/db/drizzle/meta/0037_snapshot.json (+1561 -0)
📝 packages/db/drizzle/meta/_journal.json (+7 -0)
📝 packages/db/schema.ts (+3 -0)
📝 packages/e2e_tests/setup/startContainers.ts (+1 -1)
📝 packages/e2e_tests/tests/api/lists.test.ts (+47 -0)
📝 packages/open-api/hoarder-openapi-spec.json (+28 -0)
📝 packages/open-api/lib/lists.ts (+2 -1)
📝 packages/sdk/src/hoarder-api.d.ts (+13 -0)

...and 6 more files

📄 Description

Fixes #65


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/karakeep-app/karakeep/pull/802 **Author:** [@MohamedBassem](https://github.com/MohamedBassem) **Created:** 1/1/2025 **Status:** ✅ Merged **Merged:** 1/2/2025 **Merged by:** [@MohamedBassem](https://github.com/MohamedBassem) **Base:** `main` ← **Head:** `smart-lists` --- ### 📝 Commits (10+) - [`5d6d497`](https://github.com/karakeep-app/karakeep/commit/5d6d4972c68a4e0c8ac55c26b61594ba76391f68) docs: Add search query language documentation - [`a055a98`](https://github.com/karakeep-app/karakeep/commit/a055a9860dbd2d451fe0ed35ba6a535ad0888668) refactor: Migrate from the deprecated drizzle-orm schema - [`dc14ba0`](https://github.com/karakeep-app/karakeep/commit/dc14ba0f955701de6c0624f5f283929029abb894) feat: Add support for smart lists - [`863a0a7`](https://github.com/karakeep-app/karakeep/commit/863a0a71bebb416ceaa164a805c14fddb49df24d) docs: Add firefox import-export instructions (#799) - [`7358f42`](https://github.com/karakeep-app/karakeep/commit/7358f423b5c90d13753aeb32fa94adc25e475254) Merge branch 'main' into smart-lists - [`a0f2da6`](https://github.com/karakeep-app/karakeep/commit/a0f2da6c104ba4ffc19f696681cf998f27418470) i18n - [`4d32f0f`](https://github.com/karakeep-app/karakeep/commit/4d32f0f25e0299060cfe6f1090804815a416cd72) Fix update list endpoint - [`6ac3b76`](https://github.com/karakeep-app/karakeep/commit/6ac3b76ebb5a9575e19c170cfe9cc6490dc91145) Add a test for smart lists - [`bacac82`](https://github.com/karakeep-app/karakeep/commit/bacac82ba19a6121604144407b58cb6bf6fd9591) Add header to the query explainer - [`e6d0986`](https://github.com/karakeep-app/karakeep/commit/e6d0986d14c5ae2a0d26020b42267c8760489244) Hide remove from lists in the smart context list ### 📊 Changes **26 files changed** (+2045 additions, -100 deletions) <details> <summary>View changed files</summary> 📝 `.dockerignore` (+1 -0) 📝 `apps/cli/src/commands/lists.ts` (+10 -2) 📝 `apps/web/app/api/v1/lists/[listId]/route.ts` (+3 -3) 📝 `apps/web/app/dashboard/lists/[listId]/page.tsx` (+10 -6) 📝 `apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx` (+18 -14) 📝 `apps/web/components/dashboard/lists/EditListModal.tsx` (+96 -23) 📝 `apps/web/components/dashboard/lists/ListHeader.tsx` (+32 -6) 📝 `apps/web/components/dashboard/lists/ListOptions.tsx` (+3 -1) 📝 `apps/web/components/dashboard/search/QueryExplainerTooltip.tsx` (+3 -0) 📝 `apps/web/components/dashboard/search/SearchInput.tsx` (+23 -1) 📝 `apps/web/lib/i18n/locales/en/translation.json` (+8 -1) ➕ `packages/db/drizzle/0037_daily_smiling_tiger.sql` (+2 -0) ➕ `packages/db/drizzle/meta/0037_snapshot.json` (+1561 -0) 📝 `packages/db/drizzle/meta/_journal.json` (+7 -0) 📝 `packages/db/schema.ts` (+3 -0) 📝 `packages/e2e_tests/setup/startContainers.ts` (+1 -1) 📝 `packages/e2e_tests/tests/api/lists.test.ts` (+47 -0) 📝 `packages/open-api/hoarder-openapi-spec.json` (+28 -0) 📝 `packages/open-api/lib/lists.ts` (+2 -1) 📝 `packages/sdk/src/hoarder-api.d.ts` (+13 -0) _...and 6 more files_ </details> ### 📄 Description Fixes #65 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 11:58:47 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/karakeep#1700
No description provided.