Pony.fm/public/scripts/app/services/taxonomies.coffee
2013-07-27 23:37:32 -05:00

25 lines
No EOL
602 B
CoffeeScript

angular.module('ponyfm').factory('taxonomies', [
'$rootScope'
($rootScope) ->
def = null
self =
trackTypes: []
licenses: []
genres: []
showSongs: []
refresh: () ->
return def if def != null
def = new $.Deferred()
$.getJSON('/api/web/taxonomies/all')
.done (taxonomies) -> $rootScope.$apply ->
self.trackTypes.push t for t in taxonomies.track_types
self.licenses.push t for t in taxonomies.licenses
self.genres.push t for t in taxonomies.genres
self.showSongs.push t for t in taxonomies.show_songs
def.resolve self
def
self
])