132 lines
4.4 KiB
CoffeeScript
132 lines
4.4 KiB
CoffeeScript
###
|
|
# Copyright (C) 2014-2017 Andrey Antukh <niwi@niwi.nz>
|
|
# Copyright (C) 2014-2017 Jesús Espino Garcia <jespinog@gmail.com>
|
|
# Copyright (C) 2014-2017 David Barragán Merino <bameda@dbarragan.com>
|
|
# Copyright (C) 2014-2017 Alejandro Alonso <alejandro.alonso@kaleidos.net>
|
|
# Copyright (C) 2014-2017 Juan Francisco Alcántara <juanfran.alcantara@kaleidos.net>
|
|
# Copyright (C) 2014-2017 Xavi Julian <xavier.julian@kaleidos.net>
|
|
#
|
|
# 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/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
|
|
|
|
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,
|
|
moves: (item) ->
|
|
return $(item).is('tg-card')
|
|
})
|
|
|
|
drake.on 'drag', (item) ->
|
|
window.dragMultiple.start(item, containers)
|
|
|
|
drake.on 'cloned', (item, dropTarget) ->
|
|
$(item).addClass('multiple-drag-mirror')
|
|
|
|
drake.on 'dragend', (item) ->
|
|
parentEl = $(item).parent()
|
|
newParentScope = parentEl.scope()
|
|
|
|
newStatusId = newParentScope.s.id
|
|
dragMultipleItems = window.dragMultiple.stop()
|
|
|
|
# if it is not drag multiple
|
|
if !dragMultipleItems.length
|
|
dragMultipleItems = [item]
|
|
|
|
firstElement = dragMultipleItems[0]
|
|
index = $(firstElement).index()
|
|
newStatus = newParentScope.s.id
|
|
|
|
usList = _.map dragMultipleItems, (item) -> $(item).scope().us
|
|
|
|
finalUsList = _.map usList, (item) ->
|
|
return {
|
|
id: item.get('id'),
|
|
oldStatusId: item.getIn(['model', 'status'])
|
|
}
|
|
|
|
$scope.$apply ->
|
|
_.each usList, (item, key) =>
|
|
oldStatus = item.getIn(['model', 'status'])
|
|
sameContainer = newStatus == oldStatus
|
|
|
|
if !sameContainer
|
|
itemEl = $(dragMultipleItems[key])
|
|
deleteElement(itemEl)
|
|
|
|
$rootscope.$broadcast("kanban:us:move", finalUsList, newStatus, index)
|
|
|
|
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
|
|
])
|