1

我正在为我的客户开发拖放功能。我已经为拖放实现了 Dragular,但是在 Dragular 或任何其他为拖放提供的库中没有提供多元素拖放。

请建议我如何在角度或任何其他也应该与触摸设备兼容的 JavaScript 库中选择和拖放多元素。

提前致谢。

注意:我们可以在dragular中使用多次拖放吗?

更新(2016 年 11 月 30 日) :加一点我的要求。我们如何限制放置区中元素的冗余。

解释 :

  • 当我们从源复制任何项目时,如果它已经被拖放/在目标容器中,我们将无法拖动它。

  • 准确地说,如果项目已经在目标容器中,我们可以使项目不可拖动。

4

2 回答 2

0

这是您的问题的答案。 jQuery Sortable - 选择并拖动多个列表项

我认为好主意是使用 jQuery 进行拖放。我正在使用它并且工作正常。在这里你有例子

jsfiddle.net/hQnWG/614/

于 2016-11-14T18:46:39.147 回答
0

你的意思是多个单独的拖放?就像用一根手指拖动一个元素,用另一根手指拖动第二个元素?

Dragula 和 Dragular 都不支持,但我正在开发可能的新库,但它现在仍在进行中:/

我不知道有任何其他图书馆支持它。

编辑(27.11.16):

我已经更新了你的笔http://codepen.io/luckylooke/pen/zodmEO

angular.module("testDnD", ["dragularModule"]).
controller("test", ['$scope', 'dragularService', function($scope, dragularService) {

  $scope.selected = [];
  $scope.filter = [];
  $scope.testObj = [{...}];

  $scope.modelClickData = function(test) {
    console.log(test);
    $scope.popdata = test;
  };

  $scope.modelSelect = function(test) {
    test.selected = !test.selected;

    if (test.selected)
      $scope.selected.push(test);
    else
      $scope.selected.splice($scope.selected.indexOf(test), 1);

    // console.log('selected', test);
  };

  var containerLeft = document.querySelector('#thumbnailTST');
  var containerRight = document.querySelector('#filler');

  dragularService.cleanEnviroment();
  dragularService([containerLeft, containerRight], {
    copy: true,
    containersModel: [$scope.testObj, $scope.filter],
    scope: $scope
  });

  $scope.$on('dragularcloned', function() {
    var mirror = $('.gu-mirror');
    if ($scope.selected.length > 1 && mirror.length) { // is multiple drag
      mirror.addClass('multipledrag');
    }
  });

  $scope.$on('dragulardrop', function(e, el, targetcontainer, sourcecontainer, conmodel, elindex, targetmodel, dropindex) {
    if ($scope.selected.length > 1) { // is multiple drag
      $scope.selected.forEach(function(item) {
        if (item != $scope.testObj[elindex]) {
          var clone = {};
          clone = $.extend(true, clone, item);
          delete clone.$$hashKey;
          $scope.filter.splice(++dropindex, 0, clone);
        }
      });
    }
    console.log($scope.filter);
  });

}])
于 2016-11-15T16:43:21.873 回答