UNPKG

react-sortable-hoc-rtl

Version:

Set of higher-order components to turn any list into a sortable, touch-friendly, animated list

32 lines (27 loc) 910 B
import React, {Component} from 'react'; import {render} from 'react-dom'; import {SortableContainer, SortableElement, arrayMove} from 'react-sortable-hoc'; const SortableItem = SortableElement(({value}) => <li>{value}</li>); const SortableList = SortableContainer(({items}) => { return ( <ul> {items.map((value, index) => ( <SortableItem key={`item-${index}`} index={index} value={value} /> ))} </ul> ); }); class SortableComponent extends Component { state = { items: ['Item 1', 'Item 2', 'Item 3', 'Item 4', 'Item 5', 'Item 6'], }; onSortEnd = ({oldIndex, newIndex}) => { this.setState({ items: arrayMove(this.state.items, oldIndex, newIndex), }); }; render() { return <SortableList items={this.state.items} onSortEnd={this.onSortEnd} />; } } render(<SortableComponent />, document.getElementById('root'));