119 lines
3.7 KiB
CoffeeScript
119 lines
3.7 KiB
CoffeeScript
###
|
|
# Copyright (C) 2014-2018 Taiga Agile LLC
|
|
#
|
|
# 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/>.
|
|
#
|
|
# File: history/history.controller.coffee
|
|
###
|
|
|
|
module = angular.module("taigaHistory")
|
|
|
|
class HistorySectionController
|
|
@.$inject = [
|
|
"$tgResources",
|
|
"$tgRepo",
|
|
"$tgStorage",
|
|
"tgProjectService",
|
|
"tgActivityService"
|
|
]
|
|
|
|
constructor: (@rs, @repo, @storage, @projectService, @activityService) ->
|
|
@.editing = null
|
|
@.deleting = null
|
|
@.editMode = {}
|
|
@.viewComments = true
|
|
|
|
@.reverse = @storage.get("orderComments")
|
|
|
|
taiga.defineImmutableProperty @, 'disabledActivityPagination', () =>
|
|
return @activityService.disablePagination
|
|
taiga.defineImmutableProperty @, 'loadingActivity', () =>
|
|
return @activityService.loading
|
|
|
|
_loadHistory: () ->
|
|
@._loadComments()
|
|
@._loadActivity()
|
|
|
|
_loadActivity: () ->
|
|
@activityService.init(@.name, @.id)
|
|
@activityService.fetchEntries().then (response) =>
|
|
@.activitiesNum = @activityService.count
|
|
@.activities = response.toJS()
|
|
|
|
_loadComments: () ->
|
|
@rs.history.get(@.name, @.id).then (comments) =>
|
|
@.comments = _.filter(comments, (item) -> item.comment != "")
|
|
if @.reverse
|
|
@.comments - _.reverse(@.comments)
|
|
@.commentsNum = @.comments.length
|
|
|
|
nextActivityPage: () ->
|
|
@activityService.nextPage().then (response) =>
|
|
@.activities = response.toJS()
|
|
|
|
showHistorySection: () ->
|
|
return @.showCommentTab() or @.showActivityTab()
|
|
|
|
showCommentTab: () ->
|
|
return @.commentsNum > 0 or @projectService.hasPermission("comment_#{@.name}")
|
|
|
|
showActivityTab: () ->
|
|
return @.activitiesNum > 0
|
|
|
|
toggleEditMode: (commentId) ->
|
|
@.editMode[commentId] = !@.editMode[commentId]
|
|
|
|
onActiveHistoryTab: (active) ->
|
|
@.viewComments = active
|
|
|
|
deleteComment: (commentId) ->
|
|
type = @.name
|
|
objectId = @.id
|
|
activityId = commentId
|
|
@.deleting = commentId
|
|
return @rs.history.deleteComment(type, objectId, activityId).then =>
|
|
@._loadComments()
|
|
@.deleting = null
|
|
|
|
editComment: (commentId, comment) ->
|
|
type = @.name
|
|
objectId = @.id
|
|
activityId = commentId
|
|
@.editing = commentId
|
|
return @rs.history.editComment(type, objectId, activityId, comment).then =>
|
|
@._loadComments()
|
|
@.toggleEditMode(commentId)
|
|
@.editing = null
|
|
|
|
restoreDeletedComment: (commentId) ->
|
|
type = @.name
|
|
objectId = @.id
|
|
activityId = commentId
|
|
@.editing = commentId
|
|
return @rs.history.undeleteComment(type, objectId, activityId).then =>
|
|
@._loadComments()
|
|
@.editing = null
|
|
|
|
addComment: () ->
|
|
@.editMode = {}
|
|
@.editing = null
|
|
@._loadComments()
|
|
|
|
onOrderComments: () ->
|
|
@.reverse = !@.reverse
|
|
@storage.set("orderComments", @.reverse)
|
|
@._loadComments()
|
|
|
|
module.controller("HistorySection", HistorySectionController)
|