[PR #2258] [MERGED] feat(mobile): Archive feature on mobile #9466

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

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/2258
Author: @alextran1502
Created: 4/15/2023
Status: Merged
Merged: 4/17/2023
Merged by: @alextran1502

Base: mainHead: feat/archived-on-mobile


📝 Commits (10+)

  • 83560df update asset to include isArchive property
  • 4972f5f Not display archived assets on timeline
  • 05b60f5 replace share button to archive button
  • 748ee3f Merge branch 'main' of github.com:immich-app/immich into feat/archived-on-mobile
  • b23bc91 Added archive page
  • 37d62e1 Add bottom nav bar
  • c083b3e Merge branch 'main' of github.com:immich-app/immich into feat/archived-on-mobile
  • bfbf76d clean up homepage
  • 58f663a remove deadcode
  • 9bf93ca improve on sync is archive

📊 Changes

27 files changed (+522 additions, -113 deletions)

View changed files

📝 mobile/assets/i18n/en-US.json (+6 -2)
📝 mobile/lib/main.dart (+8 -8)
📝 mobile/lib/modules/album/ui/add_to_album_bottom_sheet.dart (+12 -4)
📝 mobile/lib/modules/album/views/library_page.dart (+7 -6)
mobile/lib/modules/archive/models/store_model_here.txt (+0 -0)
mobile/lib/modules/archive/providers/archive_asset_provider.dart (+55 -0)
mobile/lib/modules/archive/providers/store_providers_here.txt (+0 -0)
mobile/lib/modules/archive/services/store_services_here.txt (+0 -0)
mobile/lib/modules/archive/ui/store_ui_here.txt (+0 -0)
mobile/lib/modules/archive/views/archive_page.dart (+124 -0)
📝 mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart (+9 -31)
📝 mobile/lib/modules/asset_viewer/views/gallery_viewer.dart (+73 -9)
📝 mobile/lib/modules/home/ui/asset_grid/asset_grid_data_structure.dart (+1 -1)
📝 mobile/lib/modules/home/ui/asset_grid/immich_asset_grid.dart (+3 -4)
📝 mobile/lib/modules/home/ui/control_bottom_app_bar.dart (+7 -0)
📝 mobile/lib/modules/home/views/home_page.dart (+21 -5)
📝 mobile/lib/routing/router.dart (+8 -0)
📝 mobile/lib/routing/router.gr.dart (+26 -0)
📝 mobile/lib/shared/models/asset.dart (+15 -4)
📝 mobile/lib/shared/models/asset.g.dart (+88 -33)

...and 7 more files

📄 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/2258 **Author:** [@alextran1502](https://github.com/alextran1502) **Created:** 4/15/2023 **Status:** ✅ Merged **Merged:** 4/17/2023 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `feat/archived-on-mobile` --- ### 📝 Commits (10+) - [`83560df`](https://github.com/immich-app/immich/commit/83560dff441be6f5475f70de5c2269908df8973f) update asset to include isArchive property - [`4972f5f`](https://github.com/immich-app/immich/commit/4972f5f02e83704d72caa5af5b8775732a8708d0) Not display archived assets on timeline - [`05b60f5`](https://github.com/immich-app/immich/commit/05b60f57f725685953bfe5a02d7033f1e19af0bd) replace share button to archive button - [`748ee3f`](https://github.com/immich-app/immich/commit/748ee3f560a66097ddfad64a518cbae0b569d729) Merge branch 'main' of github.com:immich-app/immich into feat/archived-on-mobile - [`b23bc91`](https://github.com/immich-app/immich/commit/b23bc91f2cb1a38a0ba867932b08e56097c0fa8e) Added archive page - [`37d62e1`](https://github.com/immich-app/immich/commit/37d62e16432c25ca468c6f326459e489ffe9645f) Add bottom nav bar - [`c083b3e`](https://github.com/immich-app/immich/commit/c083b3e6f3470047cadd9d3d8fee53faaff901fa) Merge branch 'main' of github.com:immich-app/immich into feat/archived-on-mobile - [`bfbf76d`](https://github.com/immich-app/immich/commit/bfbf76db6c75d6724a1c6ea5365bb7255cb1519c) clean up homepage - [`58f663a`](https://github.com/immich-app/immich/commit/58f663a3e3a9f4e18313b56c2907206f34f5bbea) remove deadcode - [`9bf93ca`](https://github.com/immich-app/immich/commit/9bf93ca62def03c0cb86821aeca962ca4d97ac26) improve on sync is archive ### 📊 Changes **27 files changed** (+522 additions, -113 deletions) <details> <summary>View changed files</summary> 📝 `mobile/assets/i18n/en-US.json` (+6 -2) 📝 `mobile/lib/main.dart` (+8 -8) 📝 `mobile/lib/modules/album/ui/add_to_album_bottom_sheet.dart` (+12 -4) 📝 `mobile/lib/modules/album/views/library_page.dart` (+7 -6) ➕ `mobile/lib/modules/archive/models/store_model_here.txt` (+0 -0) ➕ `mobile/lib/modules/archive/providers/archive_asset_provider.dart` (+55 -0) ➕ `mobile/lib/modules/archive/providers/store_providers_here.txt` (+0 -0) ➕ `mobile/lib/modules/archive/services/store_services_here.txt` (+0 -0) ➕ `mobile/lib/modules/archive/ui/store_ui_here.txt` (+0 -0) ➕ `mobile/lib/modules/archive/views/archive_page.dart` (+124 -0) 📝 `mobile/lib/modules/asset_viewer/ui/top_control_app_bar.dart` (+9 -31) 📝 `mobile/lib/modules/asset_viewer/views/gallery_viewer.dart` (+73 -9) 📝 `mobile/lib/modules/home/ui/asset_grid/asset_grid_data_structure.dart` (+1 -1) 📝 `mobile/lib/modules/home/ui/asset_grid/immich_asset_grid.dart` (+3 -4) 📝 `mobile/lib/modules/home/ui/control_bottom_app_bar.dart` (+7 -0) 📝 `mobile/lib/modules/home/views/home_page.dart` (+21 -5) 📝 `mobile/lib/routing/router.dart` (+8 -0) 📝 `mobile/lib/routing/router.gr.dart` (+26 -0) 📝 `mobile/lib/shared/models/asset.dart` (+15 -4) 📝 `mobile/lib/shared/models/asset.g.dart` (+88 -33) _...and 7 more files_ </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 14:05:17 +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#9466