Pony.fm/resources/assets/scripts/app/controllers/dashboard.coffee
2015-08-31 16:42:23 +01:00

22 lines
No EOL
636 B
CoffeeScript

window.pfm.preloaders['dashboard'] = [
'dashboard'
(dashboard) -> dashboard.refresh(true)
]
angular.module('ponyfm').controller "dashboard", [
'$scope', 'dashboard', 'auth', '$http'
($scope, dashboard, auth, $http) ->
$scope.recentTracks = null
$scope.popularTracks = null
$scope.news = null
dashboard.refresh().done (res) ->
$scope.recentTracks = res.recent_tracks
$scope.popularTracks = res.popular_tracks
$scope.news = res.news
$scope.markAsRead = (post) ->
if auth.data.isLogged
$http.post('/api/web/dashboard/read-news', {url: post.url, _token: window.pfm.token}).success ->
post.read = true
]