Pony.fm/resources/assets/scripts/app/controllers/dashboard.coffee

22 lines
636 B
CoffeeScript
Raw Normal View History

2015-08-31 17:42:21 +02:00
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
]