taiga-front/app/coffee/modules/taskboard/taskboard-issues.coffee

93 lines
2.8 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: modules/taskboard/taskboard-issues.coffee
###
groupBy = @.taiga.groupBy
class TaskboardIssuesService extends taiga.Service
@.$inject = []
constructor: () ->
@.reset()
reset: () ->
@.foldStatusChanged = {}
@.issuesRaw = []
init: (project, usersById, issueStatusById) ->
@.issueStatusById = issueStatusById
@.project = project
@.usersById = usersById
resetFolds: () ->
@.foldStatusChanged = {}
@.refresh()
toggleFold: (issueId) ->
@.foldStatusChanged[issueId] = !@.foldStatusChanged[issueId]
@.refresh()
add: (issue) ->
@.issuesRaw = @.issuesRaw.concat(issue)
@.refresh()
remove: (issue) ->
for key, item of @.issuesRaw
if issue.id == item.id
@.issuesRaw.splice(key, 1)
@.refresh()
return
set: (issues) ->
@.issuesRaw = issues
@.refresh()
getIssue: (id) ->
return @.milestoneIssues.find (issue) -> return issue.get('id') == id
getIssueModel: (id) ->
return _.find @.issuesRaw, (issue) -> return issue.id == id
replaceModel: (issue) ->
@.issuesRaw = _.map @.issuesRaw, (item) ->
if issue.id == item.id
return issue
else
return item
@.refresh()
refresh: ->
issues = []
for issueModel in @.issuesRaw
issue = {}
issue.foldStatusChanged = @.foldStatusChanged[issueModel.id]
issue.model = issueModel.getAttrs()
issue.modelName = issueModel.getName()
issue.id = issueModel.id
issue.status = @.issueStatusById[issueModel.status]
issue.images = _.filter issue.model.attachments, (it) -> return !!it.thumbnail_card_url
issue.assigned_to = @.usersById[issueModel.assigned_to]
issue.colorized_tags = _.map issue.model.tags, (tag) ->
return {name: tag[0], color: tag[1]}
issues.push(issue)
@.milestoneIssues = Immutable.fromJS(issues)
angular.module("taigaKanban").service("tgTaskboardIssues", TaskboardIssuesService)