Pony.fm/resources/assets/scripts/app/controllers/track-stats.coffee

58 lines
2 KiB
CoffeeScript
Raw Normal View History

2016-05-03 00:25:54 +02:00
# Pony.fm - A community for pony fan music.
2016-05-05 11:48:15 +02:00
# Copyright (C) 2016 Josef Citrine
2016-05-03 00:25:54 +02:00
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-05-03 21:30:57 +02:00
module.exports = angular.module('ponyfm').controller 'track-stats', [
2016-05-03 00:25:54 +02:00
'$scope', '$state', 'track-stats'
($scope, $state, statsService) ->
$scope.trackId = parseInt($state.params.id)
2016-05-03 21:30:57 +02:00
labelArray = []
2016-05-04 00:20:55 +02:00
dailyArray = []
2016-05-04 01:50:59 +02:00
cumulativeArray = []
2016-05-03 21:30:57 +02:00
2016-05-03 00:25:54 +02:00
statsLoaded = (stats) ->
2016-05-03 14:01:50 +02:00
for key, value of stats.playStats
labelArray.push value.hours || value.days
2016-05-04 00:20:55 +02:00
dailyArray.push value.plays
2016-05-03 14:01:50 +02:00
2016-05-03 21:30:57 +02:00
i = 0
2016-05-04 00:20:55 +02:00
while i < dailyArray.length
2016-05-03 21:30:57 +02:00
if i == 0
2016-05-04 01:50:59 +02:00
cumulativeArray[i] = dailyArray[0]
2016-05-03 21:30:57 +02:00
else
2016-05-04 01:50:59 +02:00
cumulativeArray[i] = cumulativeArray[i - 1] + dailyArray[i]
2016-05-03 21:30:57 +02:00
i++
2016-05-03 14:01:50 +02:00
$scope.playsLabels = labelArray
2016-05-04 01:50:59 +02:00
$scope.playsData = cumulativeArray
$scope.colours = ['#B885BD']
2016-05-03 14:01:50 +02:00
$scope.series = ['Plays']
2016-05-04 00:20:55 +02:00
$scope.totalSelected = true
2016-05-03 21:30:57 +02:00
$scope.dailyText = stats.type
$scope.totalClick = () ->
2016-05-04 01:50:59 +02:00
$scope.playsData = cumulativeArray
2016-05-03 21:30:57 +02:00
$scope.totalSelected = true
$scope.dailyClick = () ->
2016-05-04 00:20:55 +02:00
$scope.playsData = dailyArray
2016-05-03 21:30:57 +02:00
$scope.totalSelected = false
2016-05-03 14:01:50 +02:00
2016-05-03 00:25:54 +02:00
statsService.loadStats($scope.trackId).done statsLoaded
]