[PR #35] [MERGED] Dev/bottom tab bar #8440

Closed
opened 2026-02-05 13:47:13 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/35
Author: @alextran1502
Created: 2/27/2022
Status: Merged
Merged: 2/27/2022
Merged by: @alextran1502

Base: mainHead: dev/bottom-tab-bar


📝 Commits (9)

  • 85e4009 Added bottom tab bar for tab page navigation
  • 1c5b031 Added search bar
  • b0044dc Added overlay when there is no search
  • 783be81 Implemented placeholder for quick suggestion
  • e23dc5b Added search term endpoint
  • a6ba35a Endpoint to get suggested search term
  • 4a6eb84 Added distinct
  • 4ef984b Implement enpoint for getting possiple search terms
  • fe7e5c7 Get suggested search terms from server

📊 Changes

14 files changed (+487 additions, -39 deletions)

View changed files

📝 mobile/lib/modules/home/ui/immich_sliver_appbar.dart (+1 -3)
📝 mobile/lib/modules/home/views/home_page.dart (+1 -8)
📝 mobile/lib/modules/login/ui/login_form.dart (+3 -2)
mobile/lib/modules/search/models/store_model_here.txt (+0 -0)
mobile/lib/modules/search/providers/search_page_state.provider.dart (+131 -0)
mobile/lib/modules/search/services/search.service.dart (+20 -0)
mobile/lib/modules/search/ui/search_bar.dart (+56 -0)
mobile/lib/modules/search/ui/search_suggestion_list.dart (+35 -0)
mobile/lib/modules/search/views/search_page.dart (+67 -0)
📝 mobile/lib/routing/router.dart (+11 -2)
📝 mobile/lib/routing/router.gr.dart (+78 -23)
mobile/lib/shared/views/tab_controller_page.dart (+44 -0)
📝 server/src/api-v1/asset/asset.controller.ts (+5 -0)
📝 server/src/api-v1/asset/asset.service.ts (+35 -1)

📄 Description

No description provided


🔄 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/35 **Author:** [@alextran1502](https://github.com/alextran1502) **Created:** 2/27/2022 **Status:** ✅ Merged **Merged:** 2/27/2022 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `dev/bottom-tab-bar` --- ### 📝 Commits (9) - [`85e4009`](https://github.com/immich-app/immich/commit/85e4009928b6cb12777b2e48f8c6f8e7304cd1f9) Added bottom tab bar for tab page navigation - [`1c5b031`](https://github.com/immich-app/immich/commit/1c5b0313a4aaced12cc7b1fed3dd2a6e8bf5b249) Added search bar - [`b0044dc`](https://github.com/immich-app/immich/commit/b0044dcbb101e9046b776a04aca2f1bbb8e53805) Added overlay when there is no search - [`783be81`](https://github.com/immich-app/immich/commit/783be81c280822e144121c686e47b82edec7f1b3) Implemented placeholder for quick suggestion - [`e23dc5b`](https://github.com/immich-app/immich/commit/e23dc5b96b2ecf5524ec1003eae7e8ef104b25f4) Added search term endpoint - [`a6ba35a`](https://github.com/immich-app/immich/commit/a6ba35aa95fd9898a8b5ba7b4ed7d85790eb7d01) Endpoint to get suggested search term - [`4a6eb84`](https://github.com/immich-app/immich/commit/4a6eb842e68e02bbfe1c6a7145337957e5479067) Added distinct - [`4ef984b`](https://github.com/immich-app/immich/commit/4ef984b081606e1178beae38cc0d993172670336) Implement enpoint for getting possiple search terms - [`fe7e5c7`](https://github.com/immich-app/immich/commit/fe7e5c70d3e46f7ef7f4a2bc0b486ff8d17b30b1) Get suggested search terms from server ### 📊 Changes **14 files changed** (+487 additions, -39 deletions) <details> <summary>View changed files</summary> 📝 `mobile/lib/modules/home/ui/immich_sliver_appbar.dart` (+1 -3) 📝 `mobile/lib/modules/home/views/home_page.dart` (+1 -8) 📝 `mobile/lib/modules/login/ui/login_form.dart` (+3 -2) ➕ `mobile/lib/modules/search/models/store_model_here.txt` (+0 -0) ➕ `mobile/lib/modules/search/providers/search_page_state.provider.dart` (+131 -0) ➕ `mobile/lib/modules/search/services/search.service.dart` (+20 -0) ➕ `mobile/lib/modules/search/ui/search_bar.dart` (+56 -0) ➕ `mobile/lib/modules/search/ui/search_suggestion_list.dart` (+35 -0) ➕ `mobile/lib/modules/search/views/search_page.dart` (+67 -0) 📝 `mobile/lib/routing/router.dart` (+11 -2) 📝 `mobile/lib/routing/router.gr.dart` (+78 -23) ➕ `mobile/lib/shared/views/tab_controller_page.dart` (+44 -0) 📝 `server/src/api-v1/asset/asset.controller.ts` (+5 -0) 📝 `server/src/api-v1/asset/asset.service.ts` (+35 -1) </details> ### 📄 Description _No description provided_ --- <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 13:47:13 +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#8440