### # 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/issues/lightboxes.coffee ### taiga = @.taiga bindOnce = @.taiga.bindOnce module = angular.module("taigaIssues") ############################################################################# ## Issue Create Lightbox Directive ############################################################################# CreateIssueDirective = ($repo, $model, $rs, $rootscope) -> link = ($scope, $el, $attrs) -> form = $el.find("form").checksley() $scope.issue = {} $scope.$on "issueform:new", -> $el.removeClass("hidden") $scope.issue = { project: $scope.projectId subject: "" status: $scope.project.default_issue_status type: $scope.project.default_issue_type priority: $scope.project.default_priority severity: $scope.project.default_severity estimated_start: null estimated_finish: null } $scope.$on "$destroy", -> $el.off() submit = -> console.log $scope.issue if not form.validate() return promise = $repo.create("issues", $scope.issue) promise.then (data) -> $el.addClass("hidden") console.log "succcess", data $rootscope.$broadcast("issueform:new:success", data) # FIXME: error handling? promise.then null, -> console.log "FAIL" $el.on "click", ".close", (event) -> event.preventDefault() $el.addClass("hidden") $el.on "click", ".button-green", (event) -> event.preventDefault() submit() $el.on "submit", "form", (event) -> event.preventDefault() submit() return {link:link} module.directive("tgLbCreateIssue", [ "$tgRepo", "$tgModel", "$tgResources", "$rootScope", CreateIssueDirective ]) ############################################################################# ## Issue Create Lightbox Directive ############################################################################# # BulkCreateIssuesDirective = ($repo, $model, $rs, $rootscope) -> # link = ($scope, $el, $attrs) -> # $scope.$on "issueform:new", -> # $el.removeClass("hidden") # # $scope.$on "$destroy", -> # $el.off() # # $el.on "click", ".close", (event) -> # event.preventDefault() # $el.addClass("hidden") # # return {link:link} # module.directive("tgLbCreateIssue", [ # "$tgRepo", # "$tgModel", # "$tgResources", # "$rootScope", # CreateIssueDirective # ])