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

96 lines
3.9 KiB
CoffeeScript
Raw Normal View History

# Pony.fm - A community for pony fan music.
# Copyright (C) 2015 Peter Deltchev
#
# 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/>.
window.pfm.preloaders['playlists'] = [
'playlists', '$state'
(playlists) ->
playlists.loadFilters()
]
module.exports = angular.module('ponyfm').controller "playlists", [
2015-10-25 03:35:37 +01:00
'$scope', 'playlists', '$state'
($scope, playlists, $state) ->
2015-08-31 17:42:21 +02:00
$scope.query = playlists.mainQuery
$scope.filters = playlists.filters
2016-08-07 16:41:58 +02:00
filterDropdown = (newVar, oldVar) ->
if newVar instanceof Array && oldVar instanceof Array
if 'any' in newVar
if !('any' in oldVar)
newVar = ['any']
else if newVar.length > oldVar.length
anyIndex = newVar.indexOf('any')
newVar.splice(anyIndex, 1)
$scope.handleSingularDropdown = (filter, value) ->
$scope.clearFilter filter
$scope.setFilter filter, JSON.parse(value)
$scope.setFilter = (filter, value) ->
$scope.query.setFilter filter, value
$state.transitionTo 'content.playlists.list', {filter: $scope.query.toFilterString()}
2016-08-07 16:41:58 +02:00
$scope.clearFilter = (filter) ->
$scope.query.clearFilter filter
$state.transitionTo 'content.playlists.list', {filter: $scope.query.toFilterString()}
playlists.mainQuery.listen (searchResults) ->
$scope.playlists = searchResults.playlists
$scope.currentPage = parseInt(searchResults.current_page)
$scope.totalPages = parseInt(searchResults.total_pages)
2015-10-25 03:35:37 +01:00
delete $scope.nextPage
delete $scope.prevPage
2015-10-25 03:35:37 +01:00
$scope.nextPage = $scope.currentPage + 1 if $scope.currentPage < $scope.totalPages
$scope.prevPage = $scope.currentPage - 1 if $scope.currentPage > 1
$scope.allPages = [1..$scope.totalPages]
# TODO: turn this into a directive
# The actual first page will always be in the paginator.
$scope.pages = [1]
# This logic determines how many pages to add prior to the current page, if any.
firstPage = Math.max(2, $scope.currentPage-3)
$scope.pages = $scope.pages.concat [firstPage..$scope.currentPage] unless $scope.currentPage == 1
pagesLeftToAdd = 8-$scope.pages.length
2015-08-31 17:42:21 +02:00
lastPage = Math.min($scope.totalPages - 1, $scope.currentPage+1+pagesLeftToAdd)
$scope.pages = $scope.pages.concat([$scope.currentPage+1..lastPage]) unless $scope.currentPage >= lastPage
# The actual last page will always be in the paginator.
$scope.pages.push($scope.totalPages) unless $scope.totalPages in $scope.pages
2015-08-31 17:42:21 +02:00
$scope.pageSelectorShown = false
2015-10-25 03:35:37 +01:00
$scope.gotoPage = (page) ->
$state.transitionTo 'content.playlists.list', {filter: $state.params.filter, page: page}
$scope.showPageSelector = () ->
$scope.pageSelectorShown = true
focus('#pagination-jump-destination')
$scope.hidePageSelector = () ->
$scope.pageSelectorShown = false
$scope.jumpToPage = (inputPageNumber) ->
$scope.gotoPage(inputPageNumber)
$scope.$on '$destroy', -> playlists.mainQuery = playlists.createQuery()
2015-10-25 03:35:37 +01:00
]