Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SortableJS/react-sortablejs
React bindings for SortableJS
https://github.com/SortableJS/react-sortablejs
drag-and-drop draggable multidrag react sortable
Last synced: 12 days ago
JSON representation
React bindings for SortableJS
- Host: GitHub
- URL: https://github.com/SortableJS/react-sortablejs
- Owner: SortableJS
- License: mit
- Created: 2016-03-10T07:18:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-06T13:47:48.000Z (11 months ago)
- Last Synced: 2024-10-29T15:06:44.005Z (13 days ago)
- Topics: drag-and-drop, draggable, multidrag, react, sortable
- Language: TypeScript
- Homepage: http://sortablejs.github.io/react-sortablejs/
- Size: 6.59 MB
- Stars: 2,049
- Watchers: 26
- Forks: 209
- Open Issues: 105
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-nodejs - react-sortablejs - 基于 SortableJS 的 React 官方提供的拖拽库 (Uncategorized / Uncategorized)
README
# `react-sortablejs`
React bindings to [SortableJS](https://github.com/SortableJS/Sortable)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
Please note that this is not considered ready for production, as there are still a number of bugs being sent through.
## Features
## Installation
`sortablejs` and `@types/sortablejs` are peer dependencies. The latter is only used if intellisense/typescript is desired.
```shell
npm install --save react-sortablejs sortablejs
npm install --save-dev @types/sortablejs# OR
yarn add react-sortablejs sortablejs
yarn add -D @types/sortablejs
```## Learn
Here is the TLDR of what sortable is:
```md
- Shopping List: # list of items / sortable. This represents `react-sortablejs`
- eggs # list item. These are all the items in the list and are what you move around.
- bread # list item
- milk # list item
```## Usage/Examples
### Function Component
```tsx
import React, { FC, useState } from "react";
import { ReactSortable } from "react-sortablejs";interface ItemType {
id: number;
name: string;
}export const BasicFunction: FC = (props) => {
const [state, setState] = useState([
{ id: 1, name: "shrek" },
{ id: 2, name: "fiona" },
]);return (
{state.map((item) => (
{item.name}
))}
);
};
```### Class Component
```tsx
import React, { Component } from "react";
import { ReactSortable } from "react-sortablejs";interface BasicClassState {
list: { id: string; name: string }[];
}export class BasicClass extends Component<{}, BasicClassState> {
state: BasicClassState = {
list: [{ id: "1", name: "shrek" }],
};
render() {
return (
this.setState({ list: newState })}
>
{this.state.list.map((item) => (
{item.name}
))}
);
}
}
```## Plugins
Sortable has some pretty cool plugins such as MultiDrag and Swap.
By Default:
- AutoScroll is premounted and enabled.
- OnSpill is premounted and NOT enabled.
- MultiDrag and Swap and NOT premounted and NOT enabledYou must mount the plugin with sortable **ONCE ONLY**.
```tsx
import React from "react";
import { ReactSortable, Sortable, MultiDrag, Swap } from "react-sortablejs";// mount whatever plugins you'd like to. These are the only current options.
Sortable.mount(new MultiDrag(), new Swap());const App = () => {
const [state, setState] = useState([
{ id: 1, name: "shrek" },
{ id: 2, name: "fiona" },
]);return (
{state.map((item) => (
{item.name}
))}
);
};
```## Sortable API
For a comprehensive list of options, please visit https://github.com/SortableJS/Sortable#options.
Those options are applied as follows.
```tsx
Sortable.create(element, {
group: " groupName",
animation: 200,
delayOnTouchStart: true,
delay: 2,
});// --------------------------
// Will now be...
// --------------------------import React from "react";
import { ReactSortable } from "react-sortablejs";const App = () => {
const [state, setState] = useState([
{ id: 1, name: "shrek" },
{ id: 2, name: "fiona" },
]);return (
{state.map((item) => (
{item.name}
))}
);
};
```## React API
### id, className, style
These are all default DOM attributes. Nothing special here.
### list
The same as `state` in `const [ state, setState] = useState([{ id: 1}, {id: 2}])`
`state` must be an array of items, with each item being an object that has the following shape:
```ts
/** The unique id associated with your item. It's recommended this is the same as the key prop for your list item. */
id: string | number;
/** When true, the item is selected using MultiDrag */
selected?: boolean;
/** When true, the item is deemed "chosen", which basically just a mousedown event. */
chosen?: boolean;
/** When true, it will not be possible to pick this item up in the list. */
filtered?: boolean;
[property: string]: any;
```### setList
The same as `setState` in `const [ state, setState] = useState([{ id: 1}, {id: 2}])`
### clone
If you're using `{group: { name: 'groupName', pull: 'clone'}}`, this means you're in 'clone' mode. You should provide a function for this.
Check out the source code of the clone example for more information. I'll write it here soon.
### tag
ReactSortable is a `div` element by default. This can be changed to be any HTML element (for example `ul`, `ol`)
or can be a React component.This value, be it the component or the HTML element, should be passed down under `props.tag`.
Let's explore both here.
#### HTML Element
Here we will use an `ul`. You can use any HTML.
Just add the string and ReactSortable will use a `ul` instead of a `div`.```tsx
import React, { FC, useState } from "react";
import { ReactSortable } from "react-sortablejs";export const BasicFunction: FC = (props) => {
const [state, setState] = useState([{ id: "1", name: "shrek" }]);return (
{state.map((item) => (
))}
);
};
```
#### Custom Component
When using a custom component in the `tag` prop, the only component it allows is a `forwardRef` component.
Currently, we only support components that use the `React.forwardRef` API.
If it doesn't have one, you can add one using `React.forwardRef()`.
> todo: Some third-party UI components may have nested elements to create the look they're after.
> This could be an issue and not sure how to fix it.
```tsx
import React, { FC, useState, forwardRef } from "react";
import { ReactSortable } from "react-sortablejs";
// This is just like a normal component, but now has a ref.
const CustomComponent = forwardRef((props, ref) => {
return
});
export const BasicFunction: FC = (props) => {
const [state, setState] = useState([
{ id: 1, name: "shrek" },
{ id: 2, name: "fiona" },
]);
return (
{state.map((item) => (
))}
);
};
```
## How does it work?
Sortable affects the DOM, adding, and removing nodes/css when it needs to in order to achieve the smooth transitions we all know an love.
This component reverses many of its actions of the DOM so React can handle this when the state changes.
## Caveats / Gotchas
### `key !== index`
DO NOT use the index as a key for your list items. Sorting will not work.
In all the examples above, I used an object with an ID. You should do the same!
I may even enforce this into the design to eliminate errors.
### Nesting
#### Problem
Basically, the child updates the state twice. I'm working on this.
#### What does work?
Our usage indicates that as long as we only move items between lists that don't use the same `setState` function.
I hope to provide an example soon.
#### Solutions
We don't have anything that works 100%, but here I'd like to spitball some potential avenues to look down.
- Use `onMove` to handle state changes instead of `onAdd`,`onRemove`, etc.
- Create a Sortable plugin specifically for react-sortbalejs