Pony.fm/public/scripts/app/services/artists.coffee

32 lines
829 B
CoffeeScript
Raw Normal View History

2013-08-01 04:01:41 +02:00
angular.module('ponyfm').factory('artists', [
'$rootScope', '$http'
($rootScope, $http) ->
artistPage = []
artists = {}
self =
filters: {}
fetchList: (page, force) ->
force = force || false
page = 1 if !page
return artistPage[page] if !force && artistPage[page]
artistsDef = new $.Deferred()
$http.get('/api/web/artists?page=' + page).success (albums) ->
artistsDef.resolve albums
$rootScope.$broadcast 'artists-feteched', albums
artistPage[page] = artistsDef.promise()
fetch: (slug, force) ->
force = force || false
slug = 1 if !slug
return artists[slug] if !force && artists[slug]
artistsDef = new $.Deferred()
$http.get('/api/web/artists/' + slug).success (albums) ->
artistsDef.resolve albums
artists[slug] = artistsDef.promise()
self
])