[PR #7397] [MERGED] refactor(web): search box #11611

Closed
opened 2026-02-05 14:42:43 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/7397
Author: @danieldietzler
Created: 2/25/2024
Status: Merged
Merged: 2/27/2024
Merged by: @alextran1502

Base: mainHead: refactor/search-box


📝 Commits (10+)

📊 Changes

9 files changed (+468 additions, -491 deletions)

View changed files

📝 server/src/domain/search/search.service.ts (+16 -20)
📝 web/src/lib/components/shared-components/combobox.svelte (+4 -0)
web/src/lib/components/shared-components/search-bar/search-camera-section.svelte (+63 -0)
web/src/lib/components/shared-components/search-bar/search-date-section.svelte (+37 -0)
web/src/lib/components/shared-components/search-bar/search-display-section.svelte (+32 -0)
📝 web/src/lib/components/shared-components/search-bar/search-filter-box.svelte (+78 -471)
web/src/lib/components/shared-components/search-bar/search-location-section.svelte (+96 -0)
web/src/lib/components/shared-components/search-bar/search-media-section.svelte (+47 -0)
web/src/lib/components/shared-components/search-bar/search-people-section.svelte (+95 -0)

📄 Description

The GET /search/suggestions endpoint has been updated and returns now an object of all suggestions. As a result, the SearchSuggestionsType has been removed.


🔄 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/immich-app/immich/pull/7397 **Author:** [@danieldietzler](https://github.com/danieldietzler) **Created:** 2/25/2024 **Status:** ✅ Merged **Merged:** 2/27/2024 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `refactor/search-box` --- ### 📝 Commits (10+) - [`ad62f95`](https://github.com/immich-app/immich/commit/ad62f9566ab216902733108e27e2d61f616006f8) refactor search suggestion handling - [`60c025e`](https://github.com/immich-app/immich/commit/60c025e7b4d250a1f97199a0015c10142aa8d903) chore: open api - [`f0421d7`](https://github.com/immich-app/immich/commit/f0421d7dad2561d33dd4e7b0d3c0b48ea121af4a) revert server changes - [`ffef819`](https://github.com/immich-app/immich/commit/ffef819c503e3954c2a4dc2457b7ccff4f64f0c9) chore: open api - [`2d94b2c`](https://github.com/immich-app/immich/commit/2d94b2c0189781666c5e9c7a749b544831fb3dfd) update location filters - [`741b493`](https://github.com/immich-app/immich/commit/741b4939e637ce2405410ba16ecf6d80d4b8bdaa) location filter cleanup - [`fc53922`](https://github.com/immich-app/immich/commit/fc53922b23ba2c19693f40a729a281ead98215ce) refactor people filter - [`e485386`](https://github.com/immich-app/immich/commit/e485386dd6acbe3c7990599a4619cd8617ece3c4) refactor camera filter - [`da85fb2`](https://github.com/immich-app/immich/commit/da85fb23c03d1b5d2fb89b91075a7409597e4be4) refactor display filter - [`758216c`](https://github.com/immich-app/immich/commit/758216c706c55ad90e3149a171447783f0c591ca) cleanup ### 📊 Changes **9 files changed** (+468 additions, -491 deletions) <details> <summary>View changed files</summary> 📝 `server/src/domain/search/search.service.ts` (+16 -20) 📝 `web/src/lib/components/shared-components/combobox.svelte` (+4 -0) ➕ `web/src/lib/components/shared-components/search-bar/search-camera-section.svelte` (+63 -0) ➕ `web/src/lib/components/shared-components/search-bar/search-date-section.svelte` (+37 -0) ➕ `web/src/lib/components/shared-components/search-bar/search-display-section.svelte` (+32 -0) 📝 `web/src/lib/components/shared-components/search-bar/search-filter-box.svelte` (+78 -471) ➕ `web/src/lib/components/shared-components/search-bar/search-location-section.svelte` (+96 -0) ➕ `web/src/lib/components/shared-components/search-bar/search-media-section.svelte` (+47 -0) ➕ `web/src/lib/components/shared-components/search-bar/search-people-section.svelte` (+95 -0) </details> ### 📄 Description ~The `GET /search/suggestions` endpoint has been updated and returns now an object of all suggestions. As a result, the `SearchSuggestionsType` has been removed.~ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 14:42:43 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#11611