# react-sortable-items **Repository Path**: mirrors_geosolutions-it/react-sortable-items ## Basic Information - **Project Name**: react-sortable-items - **Description**: Sort stuff with React - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: react16 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-04-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # react-sortable-items Sort stuff with React.js Based on [jasonslyvia/react-anything-sortable](https://github.com/jasonslyvia/react-anything-sortable) but without jQuery. # Usage react-sortable-items requires React with addons. You can install react-sortable-items with `npm i react-sortable-items` and include it using webpack, Browserify, etc. If you're having trouble, Gulpfiles using webpack are included in the examples directory. If you just want to include the components directly in your pages, files that can be used with script tags are included in the `dist` directory. Both `Sortable{.min}.js` and `SortableItemMixin{.min}.js` expose the `Sortable` and `SortableItemMixin` global vars for use by your React components. To run the examples, run `gulp` in the respective example directories and open index.html in your favorite browser. ```javascript var React = require('react'); var Sortable = require('react-sortable-items'); var SortableMixin = require('react-sortable-items/SortableItemMixin'); var style = require('react-sortable-items/style.css'); // If you're using webpack or Browserify var Item = React.createClass({ propTypes: { title: React.PropTypes.string.isRequired }, mixins: [SortableMixin], render: function() { return this.renderWithSortable(
{this.props.title}
) } }); var List = React.createClass({ getInitialState: function() { return { items: ["Item 1", "Item 2", "Item 3"] } }, handleSort: function(reorder) { this.setState({ items: reorder.map(function (idx) { return this.state.items[idx]; }.bind(this)) }); }, render: function() { var items = this.state.items.map(function (item, idx) { return ; }); return (

Sortable List

{items}
); } }); React.render(, document.getElementById('boourns')); ``` # Configuration On ``: Property | Description -----|----- onSort | Callback that returns sorted array of data from `sortData`. horizontal | Default false. Whether to sort horizontally. floatUndraggables | Default false. Whether to only allow sorting below items with isDraggable set to false, sending undraggable items to the top of the list over time. sinkUndraggables | Default false. Whether to only allow sorting above items with isDraggable set to false, sending undraggable items to the bottom of the list over time. sensitivity | Default 1. A value 0-1 (0 for least sensitive, 1 for most) that will be used to determine the sensitivity of sorting. The smaller the number, the further from the center of an element you can drag before the list re-sorts. This is especially useful when you replace the placeholder contents with something at a smaller width or height than the sortable items in a horizontal or vertically sorted list respectively. minDragDistance | Default 0. A value in pixels that the mouse can be moved after clicking before a drag starts. On components with `SortableItemMixin`: Property | Description -----|----------- isDraggable | Default true. Whether the item can be dragged. sortData | Any data added here will be sent to the `onSort` callback on Sortable in the correct re-sorted order. Additionally, sortable items can define a `getPlaceholderContent()` function (example in the "simple" example directory) that will replace the placeholder for the item being dragged with whatever component you return. Styles for elements: Class | Description ------|------------ `.Sortable` | Class for the Sortable component. `.SortableItem` | Class for each sortable item. `.SortableItem.is-dragging` | Set on the item currently being dragged. `.SortableItem.is-placeholder` | Set on the placeholder item in the list. `.is-isolated` | A class you can set on any element inside a sortable item to prevent it from triggering a sort on click. # TODO - [x] Horizontal sorting - [ ] Grid sorting - [ ] Optional classnames if you're not using [SUIT CSS](http://suitcss.github.io/) - [x] npm - [x] CSS - [x] Examples - [ ] Tests