356 lines
12 KiB
CoffeeScript
356 lines
12 KiB
CoffeeScript
###
|
|
# Copyright (C) 2014 Andrey Antukh <niwi@niwi.be>
|
|
# Copyright (C) 2014 Jesús Espino Garcia <jespinog@gmail.com>
|
|
# Copyright (C) 2014 David Barragán Merino <bameda@dbarragan.com>
|
|
#
|
|
# 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/tasks/detail.coffee
|
|
###
|
|
|
|
taiga = @.taiga
|
|
|
|
mixOf = @.taiga.mixOf
|
|
groupBy = @.taiga.groupBy
|
|
|
|
module = angular.module("taigaTasks")
|
|
|
|
#############################################################################
|
|
## Task Detail Controller
|
|
#############################################################################
|
|
|
|
class TaskDetailController extends mixOf(taiga.Controller, taiga.PageMixin)
|
|
@.$inject = [
|
|
"$scope",
|
|
"$rootScope",
|
|
"$tgRepo",
|
|
"$tgConfirm",
|
|
"$tgResources",
|
|
"$routeParams",
|
|
"$q",
|
|
"$tgLocation",
|
|
"$log",
|
|
"$appTitle",
|
|
"$tgNavUrls",
|
|
"$tgAnalytics",
|
|
"tgLoader"
|
|
]
|
|
|
|
constructor: (@scope, @rootscope, @repo, @confirm, @rs, @params, @q, @location,
|
|
@log, @appTitle, @navUrls, @analytics, tgLoader) ->
|
|
@scope.taskRef = @params.taskref
|
|
@scope.sectionName = "Task Details"
|
|
@.initializeEventHandlers()
|
|
|
|
promise = @.loadInitialData()
|
|
|
|
promise.then () =>
|
|
@appTitle.set(@scope.task.subject + " - " + @scope.project.name)
|
|
@.initializeOnDeleteGoToUrl()
|
|
tgLoader.pageLoaded()
|
|
|
|
promise.then null, @.onInitialDataError.bind(@)
|
|
|
|
initializeEventHandlers: ->
|
|
@scope.$on "attachment:create", =>
|
|
@analytics.trackEvent("attachment", "create", "create attachment on task", 1)
|
|
@rootscope.$broadcast("history:reload")
|
|
@scope.$on "attachment:edit", =>
|
|
@rootscope.$broadcast("history:reload")
|
|
@scope.$on "attachment:delete", =>
|
|
@rootscope.$broadcast("history:reload")
|
|
|
|
initializeOnDeleteGoToUrl: ->
|
|
ctx = {project: @scope.project.slug}
|
|
@scope.onDeleteGoToUrl = @navUrls.resolve("project", ctx)
|
|
if @scope.project.is_backlog_activated
|
|
if @scope.task.milestone
|
|
ctx.sprint = @scope.sprint.slug
|
|
@scope.onDeleteGoToUrl = @navUrls.resolve("project-taskboard", ctx)
|
|
else if @scope.task.us
|
|
ctx.ref = @scope.us.ref
|
|
@scope.onDeleteGoToUrl = @navUrls.resolve("project-userstories-detail", ctx)
|
|
else if @scope.project.is_kanban_activated
|
|
if @scope.us
|
|
ctx.ref = @scope.us.ref
|
|
@scope.onDeleteGoToUrl = @navUrls.resolve("project-userstories-detail", ctx)
|
|
|
|
loadProject: ->
|
|
return @rs.projects.getBySlug(@params.pslug).then (project) =>
|
|
@scope.projectId = project.id
|
|
@scope.project = project
|
|
@scope.$emit('project:loaded', project)
|
|
@scope.statusList = project.task_statuses
|
|
@scope.statusById = groupBy(project.task_statuses, (x) -> x.id)
|
|
@scope.membersById = groupBy(project.memberships, (x) -> x.user)
|
|
return project
|
|
|
|
loadTask: ->
|
|
return @rs.tasks.getByRef(@scope.projectId, @params.taskref).then (task) =>
|
|
@scope.task = task
|
|
@scope.taskId = task.id
|
|
@scope.commentModel = task
|
|
|
|
if @scope.task.neighbors.previous.ref?
|
|
ctx = {
|
|
project: @scope.project.slug
|
|
ref: @scope.task.neighbors.previous.ref
|
|
}
|
|
@scope.previousUrl = @navUrls.resolve("project-tasks-detail", ctx)
|
|
|
|
if @scope.task.neighbors.next.ref?
|
|
ctx = {
|
|
project: @scope.project.slug
|
|
ref: @scope.task.neighbors.next.ref
|
|
}
|
|
@scope.nextUrl = @navUrls.resolve("project-tasks-detail", ctx)
|
|
return task
|
|
|
|
loadSprint: ->
|
|
if @scope.task.milestone
|
|
return @rs.sprints.get(@scope.task.project, @scope.task.milestone).then (sprint) =>
|
|
@scope.sprint = sprint
|
|
return sprint
|
|
|
|
loadUserStory: ->
|
|
if @scope.task.user_story
|
|
return @rs.userstories.get(@scope.task.project, @scope.task.user_story).then (us) =>
|
|
@scope.us = us
|
|
return us
|
|
|
|
loadInitialData: ->
|
|
promise = @.loadProject()
|
|
return promise.then (project) =>
|
|
@.fillUsersAndRoles(project.users, project.roles)
|
|
@.loadTask().then(=> @q.all([@.loadSprint(), @.loadUserStory()]))
|
|
|
|
module.controller("TaskDetailController", TaskDetailController)
|
|
|
|
|
|
#############################################################################
|
|
## Task status display directive
|
|
#############################################################################
|
|
|
|
TaskStatusDisplayDirective = ->
|
|
# Display if a Task is open or closed and its taskboard status.
|
|
#
|
|
# Example:
|
|
# tg-task-status-display(ng-model="task")
|
|
#
|
|
# Requirements:
|
|
# - Task object (ng-model)
|
|
# - scope.statusById object
|
|
|
|
template = _.template("""
|
|
<span>
|
|
<% if (status.is_closed) { %>
|
|
Closed
|
|
<% } else { %>
|
|
Open
|
|
<% } %>
|
|
</span>
|
|
<span class="us-detail-status" style="color:<%- status.color %>">
|
|
<%- status.name %>
|
|
</span>
|
|
""") # TODO: i18n
|
|
|
|
link = ($scope, $el, $attrs) ->
|
|
render = (task) ->
|
|
html = template({
|
|
status: $scope.statusById[task.status]
|
|
})
|
|
$el.html(html)
|
|
|
|
$scope.$watch $attrs.ngModel, (task) ->
|
|
render(task) if task?
|
|
|
|
$scope.$on "$destroy", ->
|
|
$el.off()
|
|
|
|
return {
|
|
link: link
|
|
restrict: "EA"
|
|
require: "ngModel"
|
|
}
|
|
|
|
module.directive("tgTaskStatusDisplay", TaskStatusDisplayDirective)
|
|
|
|
|
|
#############################################################################
|
|
## Task status button directive
|
|
#############################################################################
|
|
|
|
TaskStatusButtonDirective = ($rootScope, $repo, $confirm, $loading, $qqueue) ->
|
|
# Display the status of Task and you can edit it.
|
|
#
|
|
# Example:
|
|
# tg-task-status-button(ng-model="task")
|
|
#
|
|
# Requirements:
|
|
# - Task object (ng-model)
|
|
# - scope.statusById object
|
|
# - $scope.project.my_permissions
|
|
|
|
template = _.template("""
|
|
<div class="status-data <% if(editable){ %>clickable<% }%>">
|
|
<span class="level" style="background-color:<%- status.color %>"></span>
|
|
<span class="status-status"><%- status.name %></span>
|
|
<% if(editable){ %><span class="icon icon-arrow-bottom"></span><% }%>
|
|
<span class="level-name">status</span>
|
|
|
|
<ul class="popover pop-status">
|
|
<% _.each(statuses, function(st) { %>
|
|
<li><a href="" class="status" title="<%- st.name %>"
|
|
data-status-id="<%- st.id %>"><%- st.name %></a></li>
|
|
<% }); %>
|
|
</ul>
|
|
</div>
|
|
""") #TODO: i18n
|
|
|
|
link = ($scope, $el, $attrs, $model) ->
|
|
isEditable = ->
|
|
return $scope.project.my_permissions.indexOf("modify_task") != -1
|
|
|
|
render = (task) =>
|
|
status = $scope.statusById[task.status]
|
|
|
|
html = template({
|
|
status: status
|
|
statuses: $scope.statusList
|
|
editable: isEditable()
|
|
})
|
|
$el.html(html)
|
|
|
|
save = $qqueue.bindAdd (status) =>
|
|
task = $model.$modelValue.clone()
|
|
task.status = status
|
|
|
|
$model.$setViewValue(task)
|
|
|
|
onSuccess = ->
|
|
$confirm.notify("success")
|
|
$rootScope.$broadcast("history:reload")
|
|
$loading.finish($el.find(".level-name"))
|
|
|
|
onError = ->
|
|
$confirm.notify("error")
|
|
task.revert()
|
|
$model.$setViewValue(task)
|
|
$loading.finish($el.find(".level-name"))
|
|
|
|
$loading.start($el.find(".level-name"))
|
|
$repo.save($model.$modelValue).then(onSuccess, onError)
|
|
|
|
$el.on "click", ".status-data", (event) ->
|
|
event.preventDefault()
|
|
event.stopPropagation()
|
|
return if not isEditable()
|
|
|
|
$el.find(".pop-status").popover().open()
|
|
|
|
$el.on "click", ".status", (event) ->
|
|
event.preventDefault()
|
|
event.stopPropagation()
|
|
return if not isEditable()
|
|
|
|
target = angular.element(event.currentTarget)
|
|
|
|
$.fn.popover().closeAll()
|
|
|
|
save(target.data("status-id"))
|
|
|
|
$scope.$watch $attrs.ngModel, (task) ->
|
|
render(task) if task
|
|
|
|
$scope.$on "$destroy", ->
|
|
$el.off()
|
|
|
|
return {
|
|
link: link
|
|
restrict: "EA"
|
|
require: "ngModel"
|
|
}
|
|
|
|
module.directive("tgTaskStatusButton", ["$rootScope", "$tgRepo", "$tgConfirm", "$tgLoading", "$tgQqueue",
|
|
TaskStatusButtonDirective])
|
|
|
|
|
|
TaskIsIocaineButtonDirective = ($rootscope, $tgrepo, $confirm, $loading, $qqueue) ->
|
|
template = _.template("""
|
|
<fieldset title="Feeling a bit overwhelmed by a task? Make sure others know about it by clicking on Iocaine when editing a task. It's possible to become immune to this (fictional) deadly poison by consuming small amounts over time just as it's possible to get better at what you do by occasionally taking on extra challenges!">
|
|
<label for="is-iocaine"
|
|
class="button button-gray is-iocaine <% if(isEditable){ %>editable<% }; %> <% if(isIocaine){ %>active<% }; %>">
|
|
Iocaine
|
|
</label>
|
|
<input type="checkbox" id="is-iocaine" name="is-iocaine"/>
|
|
</fieldset>
|
|
""")
|
|
|
|
link = ($scope, $el, $attrs, $model) ->
|
|
isEditable = ->
|
|
return $scope.project.my_permissions.indexOf("modify_task") != -1
|
|
|
|
render = (task) ->
|
|
if not isEditable() and not task.is_iocaine
|
|
$el.html("")
|
|
return
|
|
|
|
ctx = {
|
|
isIocaine: task.is_iocaine
|
|
isEditable: isEditable()
|
|
}
|
|
html = template(ctx)
|
|
$el.html(html)
|
|
|
|
save = $qqueue.bindAdd (is_iocaine) =>
|
|
task = $model.$modelValue.clone()
|
|
task.is_iocaine = is_iocaine
|
|
|
|
$model.$setViewValue(task)
|
|
$loading.start($el.find('label'))
|
|
|
|
promise = $tgrepo.save(task)
|
|
|
|
promise.then ->
|
|
$confirm.notify("success")
|
|
$rootscope.$broadcast("history:reload")
|
|
|
|
promise.then null, ->
|
|
task.revert()
|
|
$model.$setViewValue(task)
|
|
$confirm.notify("error")
|
|
|
|
promise.finally ->
|
|
$loading.finish($el.find('label'))
|
|
|
|
$el.on "click", ".is-iocaine", (event) ->
|
|
return if not isEditable()
|
|
|
|
is_iocaine = not $model.$modelValue.is_iocaine
|
|
save(is_iocaine)
|
|
|
|
$scope.$watch $attrs.ngModel, (task) ->
|
|
render(task) if task
|
|
|
|
$scope.$on "$destroy", ->
|
|
$el.off()
|
|
|
|
return {
|
|
link: link
|
|
restrict: "EA"
|
|
require: "ngModel"
|
|
}
|
|
|
|
module.directive("tgTaskIsIocaineButton", ["$rootScope", "$tgRepo", "$tgConfirm", "$tgLoading", "$tgQqueue", TaskIsIocaineButtonDirective])
|