82 lines
2.4 KiB
CoffeeScript
82 lines
2.4 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/lightboxes.coffee
|
|
###
|
|
|
|
taiga = @.taiga
|
|
bindOnce = @.taiga.bindOnce
|
|
debounce = @.taiga.debounce
|
|
trim = @.taiga.trim
|
|
|
|
|
|
module = angular.module("taigaTaskboard")
|
|
|
|
|
|
CreateBulkTasksDirective = ($repo, $rs, $rootscope, $loading, lightboxService, $model) ->
|
|
link = ($scope, $el, attrs) ->
|
|
$scope.form = {data: "", usId: null}
|
|
|
|
submit = debounce 2000, (event) =>
|
|
event.preventDefault()
|
|
|
|
form = $el.find("form").checksley()
|
|
if not form.validate()
|
|
return
|
|
|
|
currentLoading = $loading()
|
|
.target(submitButton)
|
|
.start()
|
|
|
|
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) ->
|
|
result = _.map(result, (x) => $model.make_model('tasks', x))
|
|
currentLoading.finish()
|
|
$rootscope.$broadcast("taskform:bulk:success", result)
|
|
lightboxService.close($el)
|
|
|
|
# TODO: error handling
|
|
promise.then null, ->
|
|
currentLoading.finish()
|
|
|
|
$scope.$on "taskform:bulk", (ctx, sprintId, usId)->
|
|
lightboxService.open($el)
|
|
$scope.form = {data: "", sprintId: sprintId, usId: usId}
|
|
|
|
submitButton = $el.find(".submit-button")
|
|
|
|
$el.on "submit", "form", submit
|
|
|
|
$scope.$on "$destroy", ->
|
|
$el.off()
|
|
|
|
return {link: link}
|
|
|
|
module.directive("tgLbCreateBulkTasks", [
|
|
"$tgRepo",
|
|
"$tgResources",
|
|
"$rootScope",
|
|
"$tgLoading",
|
|
"lightboxService",
|
|
"$tgModel",
|
|
CreateBulkTasksDirective
|
|
])
|