geosolutions-it/react-sortable-items

Name: react-sortable-items

Owner: GeoSolutions

Description: Sort stuff with React

Forked from: samvtran/react-sortable-items

Created: 2017-02-22 17:22:14.0

Updated: 2017-02-22 17:22:15.0

Pushed: 2017-02-22 17:27:55.0

Homepage:

Size: 256

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

react-sortable-items

Sort stuff with React.js

Based on 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.

React = require('react');
Sortable = require('react-sortable-items');
SortableMixin = require('react-sortable-items/SortableItemMixin');
style = require('react-sortable-items/style.css'); // If you're using webpack or Browserify

Item = React.createClass({
propTypes: { title: React.PropTypes.string.isRequired },
mixins: [SortableMixin],
render: function() {
    return this.renderWithSortable(<div>{this.props.title}</div>)
}


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 <Item title={item} key={idx} sortData={idx} isDraggable={true} />;
    });

    return (
        <div>
            <h1>Sortable List</h1>
            <Sortable onSort={this.handleSort}>
                {items}
            </Sortable>
        </div>
    );
}


t.render(<List />, document.getElementById('boourns'));

Configuration

On <Sortable />:

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


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.