BenediktAlkin / SongTaggerForSpotify

Song tagging for Spotify
MIT License
83 stars 4 forks source link

Feature request: Sort by date added #14

Open jhudis opened 2 years ago

jhudis commented 2 years ago

Spotify allows you to sort a playlist by the date each track was added to that playlist. It would be great if this was a feature of the Song Tagger GUI as well, since nearly all of my playlists are sorted this way on Spotify. That way, I could listen, in order, to new tracks I've added and tag them as I listen. (I know it's also possible to use Tagify or just drag tags onto the player built into the Song Tagger GUI, but I like the fact that the playlist viewer in the GUI lets you see all of the tags for each track since I can know at a glance what I've already tagged.) This shouldn't be too hard to implement, since you'd just need to request the added_at field from Spotify, create that field in your Track object, and add a column in the playlist viewer.

jhudis commented 2 years ago

On second thought I suppose this would be a bit more challenging than I initially described, since "date added" isn't a field inherent to a track on its own but rather the relationship between a track and a playlist its in. (Perhaps, then, this field would need to be stored in the PlaylistTrack table.) It would still be awesome if we could get this feature, though. Maybe if I get a lot of free time I'll try implementing it myself and make a PR for it lol.