1.0.9 • Published 4 years ago

dr-niels-sortable-list v1.0.9

Weekly downloads
31
License
-
Repository
-
Last release
4 years ago

This is a Polymer 3 conversion of the sortable-list element from pdgago (https://github.com/sharedlabs/sortable-list) with some minor adjustments. The readme was not updated and is still the one from the original sotable-list element!

License Published on webcomponents.org

Demo and API docs

GIF

sortable-list

sortable-list is a custom element that allows you to sort an element from a list by dragging it.

<sortable-list on-sort-finish="_onSortFinish" dragging="{{dragging}}">
  <div>Item 1</div>
  <div>Item 2</div>
  <div>Item 3</div>
</sortable-list>

...
onSortFinish(event) {
  const sortedItem = event.detail.target;
}

When using a dom-repeat you must specify which items are sortable.

<sortable-list sortable=".item">
  <dom-repeat>
    <div class="item"></div>
  </dom-repeat>
</sortable-list>

TODO:

  • Allow sort of elements with different sizes #2