### # Copyright (C) 2014 Andrey Antukh # Copyright (C) 2014 Jesús Espino Garcia # Copyright (C) 2014 David Barragán Merino # # 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 . # # File: modules/taskboard/lightboxes.coffee ### taiga = @.taiga bindOnce = @.taiga.bindOnce CreateEditTaskDirective = ($repo, $model, $rs, $rootscope) -> link = ($scope, $el, attrs) -> isNew = true $scope.$on "taskform:new", (ctx, sprintId, usId) -> $scope.task = { project: $scope.projectId milestone: sprintId user_story: usId is_archived: false status: $scope.project.default_task_status assigned_to: null } isNew = true # Update texts for creation $el.find(".button-green span").html("Create") #TODO: i18n $el.find(".title").html("New task ") #TODO: i18n $el.removeClass("hidden") $scope.$on "taskform:edit", (ctx, task) -> $scope.task = task isNew = false # Update texts for edition $el.find(".button-green span").html("Save") #TODO: i18n $el.find(".title").html("Edit task ") #TODO: i18n $el.removeClass("hidden") # Update requirement info (team, client or blocked) if task.is_blocked $el.find(".blocked-note").show() $el.find("label.blocked").addClass("selected") if task.is_iocaine $el.find("label.iocaine").addClass("selected") # Dom Event Handlers $el.on "click", ".close", (event) -> event.preventDefault() $el.addClass("hidden") $el.on "click", ".button-green", (event) -> event.preventDefault() form = $el.find("form").checksley() if not form.validate() return if isNew promise = $repo.create("tasks", $scope.task) broadcastEvent = "taskform:new:success" else promise = $repo.save($scope.task) broadcastEvent = "taskform:edit:success" # FIXME: error handling? promise.then (data) -> $el.addClass("hidden") $rootscope.$broadcast(broadcastEvent, data) $el.on "click", "label.blocked", (event) -> event.preventDefault() target = angular.element(event.currentTarget) target.toggleClass("selected") $scope.task.is_blocked = not $scope.task.is_blocked $el.find(".blocked-note").toggle(400) $el.on "click", "label.iocaine", (event) -> event.preventDefault() angular.element(event.currentTarget).toggleClass("selected") $scope.task.is_iocaine = not $scope.task.is_iocaine $scope.$on "$destroy", -> $el.off() return {link: link} CreateBulkTasksDirective = ($repo, $rs, $rootscope) -> link = ($scope, $el, attrs) -> $scope.form = {data: "", usId: null} $scope.$on "taskform:bulk", (ctx, sprintId, usId)-> $el.removeClass("hidden") $scope.form = {data: "", sprintId: sprintId, usId: usId} $el.on "click", ".close", (event) -> event.preventDefault() $el.addClass("hidden") $el.on "click", ".button-green", (event) -> event.preventDefault() form = $el.find("form").checksley() if not form.validate() return data = $scope.form.data projectId = $scope.projectId sprintId = $scope.form.sprintId usId = $scope.form.usId promise = $rs.tasks.bulkCreate(projectId, sprintId, usId, data) promise.then (result) -> $rootscope.$broadcast("taskform:bulk:success", result) $el.addClass("hidden") # TODO: error handling promise.then null, -> console.log "FAIL" $scope.$on "$destroy", -> $el.off() return {link: link} module = angular.module("taigaTaskboard") module.directive("tgLbCreateEditTask", [ "$tgRepo", "$tgModel", "$tgResources", "$rootScope", CreateEditTaskDirective ]) module.directive("tgLbCreateBulkTasks", [ "$tgRepo", "$tgResources", "$rootScope", CreateBulkTasksDirective ])