Pony.fm/resources/assets/scripts/app/directives/comments.coffee

29 lines
982 B
CoffeeScript
Raw Normal View History

2015-08-31 17:42:21 +02:00
angular.module('ponyfm').directive 'pfmComments', () ->
2015-10-25 03:35:37 +01:00
restrict: 'E'
templateUrl: '/templates/directives/comments.html'
scope:
resource: '=resource',
type: '@type'
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
controller: [
'$scope', 'comments', 'auth'
($scope, comments, auth) ->
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
$scope.isWorking = false
$scope.content = ''
$scope.auth = auth.data
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
refresh = () ->
comments.fetchList($scope.type, $scope.resource.id, true).done (comments) ->
$scope.resource.comments.length = 0
$scope.resource.comments.push comment for comment in comments.list
$scope.isWorking = false
2015-08-31 17:42:21 +02:00
2015-10-25 03:35:37 +01:00
$scope.addComment = () ->
content = $scope.content
$scope.content = ''
$scope.isWorking = true
comments.addComment($scope.type, $scope.resource.id, content).done () ->
refresh()
]