An open API service indexing awesome lists of open source software.

https://github.com/mfuu/svelte-virtual-sortable

A virtual scrolling list component that can be sorted by dragging
https://github.com/mfuu/svelte-virtual-sortable

draggable list sort sortable svelte virtual virtual-list virtual-scroll

Last synced: 22 days ago
JSON representation

A virtual scrolling list component that can be sorted by dragging

Awesome Lists containing this project

README

          

# svelte-virtual-sortable

[![npm](https://img.shields.io/npm/v/svelte-virtual-sortable.svg)](https://www.npmjs.com/package/svelte-virtual-sortable) [![npm](https://img.shields.io/npm/dm/svelte-virtual-sortable.svg)](https://www.npmjs.com/package/svelte-virtual-sortable) [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE)

A virtual scrolling list component that can be sorted by dragging

### [Live Demo](https://mfuu.github.io/svelte-virtual-sortable/)

## Simple Usage

```bash
npm i svelte-virtual-sortable
```

Root component:

```svelte

import VirtualList from 'svelte-virtual-sortable';

let items = [{id: '1', text: 'a'}, {id: '2', text: 'b'}, ...];

function onDrop(event) {
console.log('onDrop', event);
items = event.list;
}

{#snippet item({ item, index, key })}

{item.desc}


{/snippet}

```

## Snippets

- item - Snippet for each item in the list
- Parameters
- `item` - The item data
- `index` - The index of the item
- `key` - The unique identifier of the item
- header - Snippet for the elements that should appear at the top of the list
- footer - Snippet for the elements that should appear at the bottom of the list

## Props

**Callback**

| **Emit** | **Type** | **Description** |
| --------------- | ---------- | --------------------------------------- |
| `onTop` | `Function` | Scrolling to the top of the scroller |
| `onBottom` | `Function` | Scrolling to the bottom of the scroller |
| `onDrag` | `Function` | Drag is started |
| `onDrop` | `Function` | Drag is complete |
| `onRangeChange` | `Function` | Range of visible items has changed |

**Required props**

| **Prop** | **Type** | **Default** | **Description** |
| ------------ | -------- | ----------- | --------------------------------------------------------------------- |
| `dataKey` | `String` | - | The unique identifier of each piece of data, in the form of `'a.b.c'` |
| `dataSource` | `Array` | `[]` | The data that needs to be rendered |

**Common used**

| **Prop** | **Type** | **Default** | **Description** |
| -------------- | ------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------- |
| `size` | `Number` | - | Estimated height of each row. it will be automatically calculated |
| `keeps` | `Number` | `30` | The number of lines rendered by the virtual scroll |
| `handle` | `String` | - | Drag handle selector within list items |
| `group` | `Object/String` | - | string: 'name' or object: `{ name: 'group', put: true/false, pull: true/false/'clone', revertDrag: true/false }` |
| `scroller` | `Document \| HTMLElement` | - | Virtual list scrolling element |
| `direction` | `vertical \| horizontal` | `vertical` | Scroll direction |
| `debounceTime` | `Number` | `0` | debounce time on scroll |
| `throttleTime` | `Number` | `0` | debounce time on scroll |
| `tableMode` | `Boolean` | `false` | display with table and tbody |

**Uncommonly used**

| **Prop** | **Type** | **Default** | **Description** |
| -------------------- | --------- | ----------------------- | --------------------------------------------------------------------------- |
| `buffer` | `Number` | `Math.round(keeps / 3)` | Buffer size to detect range change |
| `draggable` | `String` | `[role="item"]` | Specifies which items inside the element should be draggable |
| `sortable` | `Boolean` | `true` | Whether the current list can be sorted by dragging |
| `lockAxis` | `x \| y` | `-` | Axis on which dragging will be locked |
| `keepOffset` | `Boolean` | `false` | When scrolling up to load data, keep the same offset as the previous scroll |
| `disabled` | `Boolean` | `false` | Disables the sortable if set to true |
| `animation` | `Number` | `150` | Drag-and-drop's animation delay |
| `autoScroll` | `Boolean` | `true` | Automatic scrolling when moving to the edge of the container |
| `scrollSpeed` | `Object` | `{ x: 10, y: 10 }` | Vertical&Horizontal scrolling speed (px) |
| `scrollThreshold` | `Number` | `55` | Threshold to trigger autoscroll |
| `delay` | `Number` | `0` | Time in milliseconds to define when the sorting should start |
| `delayOnTouchOnly` | `Boolean` | `false` | Only delay on press if user is using touch |
| `appendToBody` | `Boolean` | `false` | Appends the ghost element into the document's body |
| `dropOnAnimationEnd` | `Boolean` | `true` | Drop item on animation end |
| `rootTag` | `String` | `div` | Label type for root element |
| `wrapTag` | `String` | `div` | Label type for list wrap element |
| `wrapStyle` | `Object` | `{}` | List wrapper element style |
| `wrapClass` | `String` | `''` | List wrapper element class |
| `itemTag` | `String` | `div` | Label type for list item element |
| `itemStyle` | `Object` | `{}` | List item element style |
| `itemClass` | `String` | `''` | List item element class |
| `ghostStyle` | `Object` | `{}` | The style of the mask element when dragging |
| `ghostClass` | `String` | `''` | The class of the mask element when dragging |
| `chosenClass` | `String` | `''` | Class name for the chosen item |
| `placeholderClass` | `String` | `''` | Class name for the drop placeholder |

## Methods

| **Method** | **Description** |
| ----------------------------- | ---------------------------------------------------------- |
| `getSize(key)` | get the height of the specified item by key value |
| `getOffset()` | get the current scroll top/left |
| `getClientSize()` | Get wrapper element client viewport size (width or height) |
| `getScrollSize()` | Get all scroll size (scrollHeight or scrollWidth) |
| `scrollToTop()` | scroll to the top of the list |
| `scrollToBottom()` | scroll to the bottom of the list |
| `scrollToKey(key, align)` | scroll to the specified data-key |
| `scrollToIndex(index, align)` | scroll to the specified index value |
| `scrollToOffset(offset)` | scroll to the specified height |

**Sample Usage**

```svelte

...

let virtualList;

function scrollToBottom() {
virtualList.scrollToBottom();
}

Scroll to Bottom

...
```