Package Exports
- playlist-combinator
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (playlist-combinator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
playlist-combinator
A javascript module to rotate through multiple users' music queues.
usage
Run this code:
var playlist = require('playlist-combinator')()
playlist.on('error', function (err) {
console.log(err)
})
playlist.addUser('Wheatley', [ 'accent' ])
playlist.addUser('GLaDOS')
playlist.addSong('GLaDOS', 'potato')
playlist.addSong('GLaDOS', 'neurotoxin')
playlist.addSong('GLaDOS', 'Caroline')Internally:
userOrder: ['GLaDOS', 'Wheatley']
songs: {
"Wheatley": [ 'accent' ],
"GLaDOS": [ 'potato', 'neurotoxin', 'Caroline' ]
}Run this code:
var song = playlist.getNextSong() //returns => 'potato'Internally:
userOrder: ['Wheatley', 'GLaDOS'] //note that GLaDOS was moved to the back; and it's Wheatley's turn next
songs: {
"Wheatley": [ 'accent' ]
"GLaDOS": [ 'neurotoxin', 'Caroline' ]
}Run this code:
var song = playlist.getNextSong() //returns => 'accent'
var song = playlist.getNextSong() //returns => 'neurotoxin'
var song = playlist.getNextSong() //returns => 'Caroline'api
var PlaylistCombinator = require('playlist-combinator')var playlist = PlaylistCombinator()
var song = playlist.getNextSong()
- Removes the first song from the first user's queue.
- Moves the first user to the back of the user list.
- Returns the
songobject.
var song = playlist.checkNextSong()
Basically playlist.getNextSong() but this does not mutate the playlist.
- Returns the first song from the first user's queue.
playlist.addSong(userId, song)
userIdis a string. Each user must have their own unique string. TheuserIdmust have been added viaplaylist.addUser(userId)previous to calling this.songis any object.
playlist.reorderSong(userId, newArray)
This is the suggested way to reorder songs. This is not the suggested way to add or remove songs, although it is completely allowed.
userIdis a string. Each user must have their own unique string. TheuserIdmust have been added viaplaylist.addUser(userId)previous to calling this.newArrayis an array of song ids in the new order. You can remove songs, add songs, and reorder songs.
playlist.reorderSong(userId, songId, newQueueLocationIndex)
This is not the suggested way to reorder songs.
userIdis a string. Each user must have their own unique string. TheuserIdmust have been added viaplaylist.addUser(userId)previous to calling this.songIdis compared to eachsong.idin the queue. This is the only place thatsong.idis assumed to exist.newQueueLocationIndexis the number that the located song is relocated to.
playlist.addUser(userId, userState)
userIdis a string. Each user must have their own unique string. TheuserIdmust have been added viaplaylist.addUser(userId)previous to calling this.userStateis an optional argument. It must come fromplaylist.removeUser().
var userState = playlist.removeUser(userId)
- Returns a
userStateobject. This object can be passed intoplaylist.addUser()to start a new user with the same state that this user gave up. This could be used for changing auserIdwithout losing their state, or saving a user's state for later use.