[Feature]: photo list should show if an item is in an album #1621
Replies: 19 comments 6 replies
-
Discord
That is indeed convenient. And very well implemented from an UX point of view. Kudos for it! However those extra steps of opening the album (slow) then click add are quite opposed to having it "at a glance" in the photo list. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
I have the same issue. I simply like to know if a photo is not in an album at all. This helps me to organize my photos by forcing me to put photos in an album (or delete unwanted ones). Otherwise I would simply overlook so many "minor" photos in my full timeline. A proposal on how this could be solved: On the original macOS Photo App I simply created a "smart album" which listed photos that are not in any other album. Maybe something like "smart albums" (including filters, detected objects/categories) could be something for Immich as well. This would improve the album functionality and also solve this issue here? |
Beta Was this translation helpful? Give feedback.
-
This feature can be encompassed into a filter/search system as well. |
Beta Was this translation helpful? Give feedback.
-
Hi, I was just wondering if there is a way to do this yet. I'm interested in getting started with Immich, and it would be really helpful to me to be able to see which files haven't been added to an album. (I plan to organize the vast majority of my images into albums.) I would be fine with any way to do it: A smart album, a special search (which feels like the best way to do it), etc. |
Beta Was this translation helpful? Give feedback.
-
#2559 is a similar request from me. Here is a copy-paste so that you can see my take on it:
|
Beta Was this translation helpful? Give feedback.
-
Any update on this? Just started with Immich and started to organize my photos, but realized there is no easy way to find which photos are not in an album. Would love to see this feature in the upcoming builds. |
Beta Was this translation helpful? Give feedback.
-
Would also appreciate to have this filter/search enabled to filter-out/show which photos are not assigned to any of albums. Simple scenario:
Thank you. |
Beta Was this translation helpful? Give feedback.
-
I would very much like to see this as well. Often I, or other users, upload images which were taken before photos previously uploaded and it's difficult to find them in the mix. Especially with people who share photos, we need a way to quickly see if photos haven't been shared yet so they don't get lost. |
Beta Was this translation helpful? Give feedback.
-
+1 I've never had a photo library app before so I'm doing an initial import of several decades of photos and movies that are, for the most part, uncategorized if only by date. I'd really like to be able to view all items not part of any album, still sorted by date, so I can efficiently categorize them. An other thought: Some photos may not end up in any album (a "cute bunny" album with a single photo would be overkill). Perhaps having a sort of "review flow" where newly uploaded items (and not assigned to an album during upload) could be marked with some flag (e.g., "new" or "uncategorized") until it is cleared or the item is assigned to an album. |
Beta Was this translation helpful? Give feedback.
-
+1 This would definitely be a great feature to allow us to keep our photo libraries organized with albums. |
Beta Was this translation helpful? Give feedback.
-
+1 Also like a review flow like mentioned by jstrot would be great. Now I upload all my finished camera photos into Immich, but also mobile photos that I want to review and delete later. |
Beta Was this translation helpful? Give feedback.
-
Immich 1.95.1 solves this for me by allowing Advanced Search -> Display Options -> Not In Any Album |
Beta Was this translation helpful? Give feedback.
-
The "Not in any album" option is nice, but those photos in Search aren't laid out as nicely as in the timeline, and you can't multi-select by clicking on one asset, holding shift, then clicking on the last asset of the set (at least I can't). You have to do it one-by-one. Plus, seeing an in-album indicator (just a see-through icon) on assets in the timeline would give peace of mind as you scroll through your timeline. You'd know that every asset is accounted for (i.e. placed in an album). This is like @JeromeGillard's original idea. |
Beta Was this translation helpful? Give feedback.
-
I hacked my personal instance to only show assets in the main view if they are not assigned to any album. This retains the date separators and other features that are not avaible from the search result view. However, with this approach I do not see the (related?) assets that already are in some album. Would this already help, or should the solution show both types of assets in the same view (in-album and not-in-album)? If both are shown in the same view, I fear that it might be too hard to see the difference. If one made the visual difference more outstanding, this would cause the view to be unsuitable for generic browsing - calling for a new view as suggested before.
|
Beta Was this translation helpful? Give feedback.
-
This is the single thing that is still keeping me on Photoprism. |
Beta Was this translation helpful? Give feedback.
-
As a (ugly) workaround, I found that this works:
docker exec -it <postgres_container_name> psql -U <DB_USERNAME> -d <DB_DATABASE_NAME>
INSERT INTO albums_assets_assets ("assetsId", "albumsId")
SELECT a.id AS "assetsId", a2.id AS "albumsId"
FROM assets a
JOIN albums a2 ON a2."albumName" = 'Unsorted'
WHERE NOT EXISTS (SELECT 1 FROM albums_assets_assets aaa WHERE aaa."assetsId" = a.Id)
AND a."originalPath" LIKE '/libraries/%'; (Omit the first line if you just want to see whether there are unsorted images) I can't say it's a perfectly correct solutions, but it works. Similarly it's possible to assign photos to albums based on filesystem path. Edit: added the last line of the SQL to differentiate from auto-converted videos, check that |
Beta Was this translation helpful? Give feedback.
-
Suggestion: the album name displayed as an overlay on mouse hover make it optional to show picture info like and the ability to choose how its shown
|
Beta Was this translation helpful? Give feedback.
-
I think the mouse over in mobile can't be easily reproduced. Maybe an easier solution could be a tick at the right of the album in the 'add to album' tab, where the asset is already in. Same in web app. This also could be useful to remove an asset from an album added by mistake without entering in the album. Also, to see if an asset is into some album, could be put a line in its info section. |
Beta Was this translation helpful? Give feedback.
-
Feature detail
Instead of going within each of my pictures one by one, it would be nice if the
/photos
screen could show me at a glance if a picture is already in an album or not.Suggestion: Maybe by having an icon or the album name displayed as an overlay on mouse hover?
Platform
Web
Beta Was this translation helpful? Give feedback.
All reactions