CSC207-fiveguys / music-java-app

MIT License
1 stars 1 forks source link

Allow the user to create playlists that show up on their “page” #17

Open ibrahimmmalik opened 11 months ago

ibrahimmmalik commented 11 months ago

Is your feature request related to a problem? Please describe. We have in our problem domain that we will allow users to search for songs (already addressed in a previous issue) but we still have to implement the ability for the user to add this song to a specific playlist.

Describe the solution you'd like We should try and ensure that as soon as the user is able to find songs that they may want to add to a playlist, we implement the ability to add to a playlist as soon as possible. This would require usage of the Playlist class to create objects containing Tracks the user likes, that are then available to see on their specific view by themselves or friends they may have.

Describe alternatives you've considered I originally thought we should have an automatic playlist, like Spotify has in their current application, that has a default playlist for songs a user “likes”. However, we can delegate on whether this kind of playlist is necessary or if we can just allow the user to add a song to any playlist they desire, and let them make a “Favourite Tracks” Playlist themselves.