### # Copyright (C) 2014-2016 Andrey Antukh # Copyright (C) 2014-2016 Jesús Espino Garcia # Copyright (C) 2014-2016 David Barragán Merino # Copyright (C) 2014-2016 Alejandro Alonso # Copyright (C) 2014-2016 Juan Francisco Alcántara # Copyright (C) 2014-2016 Xavi Julian # # 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/kanban/sortable.coffee ### taiga = @.taiga mixOf = @.taiga.mixOf toggleText = @.taiga.toggleText scopeDefer = @.taiga.scopeDefer bindOnce = @.taiga.bindOnce groupBy = @.taiga.groupBy timeout = @.taiga.timeout module = angular.module("taigaKanban") ############################################################################# ## Sortable Directive ############################################################################# KanbanSortableDirective = ($repo, $rs, $rootscope) -> link = ($scope, $el, $attrs) -> unwatch = $scope.$watch "usByStatus", (usByStatus) -> return if !usByStatus || !usByStatus.size unwatch() if not ($scope.project.my_permissions.indexOf("modify_us") > -1) return oldParentScope = null newParentScope = null itemEl = null tdom = $el deleteElement = (itemEl) -> # Completelly remove item and its scope from dom itemEl.scope().$destroy() itemEl.off() itemEl.remove() containers = _.map $el.find('.task-column'), (item) -> return item drake = dragula(containers, { copySortSource: false, copy: false, mirrorContainer: tdom[0], moves: (item) -> return $(item).is('tg-card') }) drake.on 'drag', (item) -> oldParentScope = $(item).parent().scope() drake.on 'dragend', (item) -> parentEl = $(item).parent() itemEl = $(item) itemUs = itemEl.scope().us itemIndex = itemEl.index() newParentScope = parentEl.scope() newStatusId = newParentScope.s.id oldStatusId = oldParentScope.s.id if newStatusId != oldStatusId deleteElement(itemEl) $scope.$apply -> $rootscope.$broadcast("kanban:us:move", itemUs, itemUs.getIn(['model', 'status']), newStatusId, itemIndex) scroll = autoScroll(containers, { margin: 100, pixels: 30, scrollWhenOutside: true, autoScroll: () -> return this.down && drake.dragging }) $scope.$on "$destroy", -> $el.off() drake.destroy() return {link: link} module.directive("tgKanbanSortable", [ "$tgRepo", "$tgResources", "$rootScope", KanbanSortableDirective ])