[PR #3754] [MERGED] feat(mobile): Improve album UI and Interactions #10107

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

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/3754
Author: @alextran1502
Created: 8/17/2023
Status: Merged
Merged: 8/18/2023
Merged by: @alextran1502

Base: mainHead: fix/album-page-interaction-mobile


📝 Commits (10+)

📊 Changes

18 files changed (+532 additions, -126 deletions)

View changed files

📝 mobile/assets/i18n/en-US.json (+3 -2)
📝 mobile/lib/modules/album/providers/shared_album.provider.dart (+10 -0)
📝 mobile/lib/modules/album/services/album.service.dart (+20 -0)
📝 mobile/lib/modules/album/ui/album_title_text_field.dart (+5 -0)
📝 mobile/lib/modules/album/ui/album_viewer_appbar.dart (+98 -32)
📝 mobile/lib/modules/album/ui/album_viewer_editable_title.dart (+5 -0)
mobile/lib/modules/album/views/album_options_part.dart (+205 -0)
📝 mobile/lib/modules/album/views/album_viewer_page.dart (+32 -31)
📝 mobile/lib/modules/album/views/asset_selection_page.dart (+5 -2)
📝 mobile/lib/modules/album/views/create_album_page.dart (+4 -2)
📝 mobile/lib/modules/album/views/select_additional_user_for_sharing_page.dart (+3 -4)
📝 mobile/lib/modules/album/views/select_user_for_sharing_page.dart (+3 -4)
📝 mobile/lib/modules/home/ui/home_page_app_bar.dart (+5 -3)
📝 mobile/lib/modules/home/ui/profile_drawer/profile_drawer_header.dart (+5 -2)
mobile/lib/modules/home/ui/user_circle_avatar.dart (+0 -44)
📝 mobile/lib/routing/router.dart (+2 -0)
📝 mobile/lib/routing/router.gr.dart (+52 -0)
mobile/lib/shared/ui/user_circle_avatar.dart (+75 -0)

📄 Description

This PR improves album UI elements and actions on the mobile app

  • Fixed issue with confirming album name change does not unfocus the edit field.
  • Added confirmation dialog when deleting the album
  • Standardize usage of user circle avatar such that users without a profile picture will display the first name character.
  • Album's owner can now remove the shared user

🔄 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/3754 **Author:** [@alextran1502](https://github.com/alextran1502) **Created:** 8/17/2023 **Status:** ✅ Merged **Merged:** 8/18/2023 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `fix/album-page-interaction-mobile` --- ### 📝 Commits (10+) - [`76403ed`](https://github.com/immich-app/immich/commit/76403edc37406a37e0d7fff587a141fe85541bb4) fix: outlick editable field does not change edit icon - [`63ed82d`](https://github.com/immich-app/immich/commit/63ed82d365a265faff55da24568b410e8fdff6c3) fix: unfocus on submit change album name - [`3ab1a5e`](https://github.com/immich-app/immich/commit/3ab1a5ee364b0b782559daf082bac003a36a70d3) styling - [`d8e4548`](https://github.com/immich-app/immich/commit/d8e4548b4e79cabd5f965c1cd8e27d11e04502db) styling - [`fa54307`](https://github.com/immich-app/immich/commit/fa543070d9d2938aea2bbb23b1ea4e181a8b98b3) confirm dialog - [`28be86a`](https://github.com/immich-app/immich/commit/28be86a2b5fe66210b1595ef5f357afc6fe4bd98) Confirm deletion - [`a55555a`](https://github.com/immich-app/immich/commit/a55555a85a32062e6bc4ed920b0c4b1f1a2bc614) render user - [`783c7ba`](https://github.com/immich-app/immich/commit/783c7baec1e95aeb6c6e67b4fcc5ffcfecb6f511) user avatar with image - [`4d81a79`](https://github.com/immich-app/immich/commit/4d81a7951a55cf55b9249d3ce55a3a92fa48ebe7) use UserCircleAvatar - [`e2dbb4e`](https://github.com/immich-app/immich/commit/e2dbb4e44916060bde9335499d98b2667c1d885a) rights ### 📊 Changes **18 files changed** (+532 additions, -126 deletions) <details> <summary>View changed files</summary> 📝 `mobile/assets/i18n/en-US.json` (+3 -2) 📝 `mobile/lib/modules/album/providers/shared_album.provider.dart` (+10 -0) 📝 `mobile/lib/modules/album/services/album.service.dart` (+20 -0) 📝 `mobile/lib/modules/album/ui/album_title_text_field.dart` (+5 -0) 📝 `mobile/lib/modules/album/ui/album_viewer_appbar.dart` (+98 -32) 📝 `mobile/lib/modules/album/ui/album_viewer_editable_title.dart` (+5 -0) ➕ `mobile/lib/modules/album/views/album_options_part.dart` (+205 -0) 📝 `mobile/lib/modules/album/views/album_viewer_page.dart` (+32 -31) 📝 `mobile/lib/modules/album/views/asset_selection_page.dart` (+5 -2) 📝 `mobile/lib/modules/album/views/create_album_page.dart` (+4 -2) 📝 `mobile/lib/modules/album/views/select_additional_user_for_sharing_page.dart` (+3 -4) 📝 `mobile/lib/modules/album/views/select_user_for_sharing_page.dart` (+3 -4) 📝 `mobile/lib/modules/home/ui/home_page_app_bar.dart` (+5 -3) 📝 `mobile/lib/modules/home/ui/profile_drawer/profile_drawer_header.dart` (+5 -2) ➖ `mobile/lib/modules/home/ui/user_circle_avatar.dart` (+0 -44) 📝 `mobile/lib/routing/router.dart` (+2 -0) 📝 `mobile/lib/routing/router.gr.dart` (+52 -0) ➕ `mobile/lib/shared/ui/user_circle_avatar.dart` (+75 -0) </details> ### 📄 Description This PR improves album UI elements and actions on the mobile app - Fixed issue with confirming album name change does not unfocus the edit field. - Added confirmation dialog when deleting the album - Standardize usage of user circle avatar such that users without a profile picture will display the first name character. - Album's owner can now remove the shared user --- <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:16:06 +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#10107