You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Nothing precludes duplicate titles for scene, gallery, or movie objects. Therefore, dropdown select values of each may contain duplicate string values that are impossible to differentiate from one another.
Example of official duplicate gallery titles from ATK
This is more prevalent among particular studios that heavily recycle titles, but regardless, given enough content, just as with performer names, duplicates emerge.
Describe the solution you'd like
Display complimentary metadata to disambiguate each select title value in the drop down.
A tiny thumbnail of a cover image may seem irrelevant due to its size, but consider small distinctions in colors and shapes would be enough to disambiguate it from other cover images all other values being equal.
Title select value should take precedence (ie. white color)
Complimentary select values are secondary, and can be conveniently presented below title value with a muted color
For example, something like:
.select-options {
/* Set default styling for all span elements */span {
color: white;
display: block;
}
span.select-option-title {
}
/* Mute text of complimentary metadata span elements */span.select-option-date,span.select-option-studio_code {
opacity:0.7;
}
}
Additional context
I should have included this broad request in my initial request #3076 (to add performer images to the performer select) implemented here #4227, since it falls under the same conceptual umbrella.
Side note: if studio objects ever have the ability to either use non-unique names or can have favicons, this concept should be applied to them as well since duplicate studio names do exist (outside of Stash).
Nothing precludes duplicate titles for scene, gallery, or movie objects.
Correct for scenes and galleries, but that's not true for movies... I get a "Unique constraint failed" SQL error when attempting to create a Movie with the same title as an existing one.
Correct for scenes and galleries, but that's not true for movies... I get a "Unique constraint failed" SQL error when attempting to create a Movie with the same title as an existing one.
Thanks for correcting this inaccuracy. I assumed it would allow unique movie titles too, given the volume of duplicate movie titles that exist out there. I suspect this might be addressed when/if movie objects get their eventual refactor.
Is your feature request related to a problem? Please describe.
Nothing precludes duplicate titles for scene, gallery, or movie objects. Therefore, dropdown select values of each may contain duplicate string values that are impossible to differentiate from one another.
Example of official duplicate gallery titles from ATK
This is more prevalent among particular studios that heavily recycle titles, but regardless, given enough content, just as with performer names, duplicates emerge.
Describe the solution you'd like
Display complimentary metadata to disambiguate each select title value in the drop down.
A tiny thumbnail of a cover image may seem irrelevant due to its size, but consider small distinctions in colors and shapes would be enough to disambiguate it from other cover images all other values being equal.
Styling should consider the following:
For example, something like:
Additional context
I should have included this broad request in my initial request #3076 (to add performer images to the performer select) implemented here #4227, since it falls under the same conceptual umbrella.
Side note: if studio objects ever have the ability to either use non-unique names or can have favicons, this concept should be applied to them as well since duplicate studio names do exist (outside of Stash).
The text was updated successfully, but these errors were encountered: