Pony.fm/public/scripts/app/services/playlists.coffee
2013-07-28 12:45:21 -05:00

83 lines
2.6 KiB
CoffeeScript

angular.module('ponyfm').factory('playlists', [
'$rootScope', '$state'
($rootScope, $state) ->
self =
pinnedPlaylists: []
refresh: () ->
$.getJSON('/api/web/playlists/pinned')
.done (playlists) -> $rootScope.$apply ->
self.pinnedPlaylists.length = 0
self.pinnedPlaylists.push playlist for playlist in playlists
deletePlaylist: (playlist) ->
def = new $.Deferred()
$.post('/api/web/playlists/delete/' + playlist.id, {_token: window.pfm.token})
.then -> $rootScope.$apply ->
if _.some(self.pinnedPlaylists, (p) -> p.id == playlist.id)
currentIndex = _.indexOf(self.pinnedPlaylists, (t) -> t.id == playlist.id)
self.pinnedPlaylists.splice currentIndex, 1
if $state.is('playlist') && $state.params.id == playlist.id
$state.transitionTo 'home'
def.resolve()
def
editPlaylist: (playlist) ->
def = new $.Deferred()
playlist._token = pfm.token
$.post('/api/web/playlists/edit/' + playlist.id, playlist)
.done (res) ->
$rootScope.$apply ->
currentIndex = _.indexOf(self.pinnedPlaylists, (t) -> t.id == playlist.id)
isPinned = _.some(self.pinnedPlaylists, (p) -> p.id == playlist.id)
if res.is_pinned && !isPinned
self.pinnedPlaylists.push res
self.pinnedPlaylists.sort (left, right) -> left.title.localeCompare right.title
currentIndex = _.indexOf(self.pinnedPlaylists, (t) -> t.id == playlist.id)
else if !res.is_pinned && isPinned
self.pinnedPlaylists.splice currentIndex, 1
currentIndex = _.indexOf(self.pinnedPlaylists, (t) -> t.id == playlist.id)
if res.is_pinned
current = self.pinnedPlaylists[currentIndex]
_.forEach res, (value, name) -> current[name] = value
self.pinnedPlaylists.sort (left, right) -> left.title.localeCompare right.title
def.resolve res
$rootScope.$broadcast 'playlist-updated', res
.fail (res)->
$rootScope.$apply ->
errors = {}
_.each res.responseJSON.errors, (value, key) -> errors[key] = value.join ', '
def.reject errors
def
createPlaylist: (playlist) ->
def = new $.Deferred()
playlist._token = pfm.token
$.post('/api/web/playlists/create', playlist)
.done (res) ->
$rootScope.$apply ->
if res.is_pinned
self.pinnedPlaylists.push res
self.pinnedPlaylists.sort (left, right) -> left.title.localeCompare right.title
def.resolve res
.fail (res)->
$rootScope.$apply ->
errors = {}
_.each res.responseJSON.errors, (value, key) -> errors[key] = value.join ', '
def.reject errors
def
self.refresh()
self
])