react-native-drax
A drag-and-drop system for React Native
"Not to be confused with react-native-picksaw"
Overview
Drax is a declarative drag-and-drop system for React Native, written in TypeScript. It is designed to be flexible and powerful with the goal of supporting many use cases, while its stock components and default settings should cover the most common scenarios with minimal configuration.
Note: as of version 0.7.0, React Native 0.62 or higher is required. For RN 0.61 projects, you may be able to use 0.6.0, but it will no longer be supported.
Contents
Screenshots
(Click images to see larger versions.)
Status
This library adheres to Semantic Versioning (semver) and is in its 0.y.z initial development phase. It has been released so that early adopters (such as the project author) can begin to use it in production and identify gaps in the functionality. The API is subject to potentially significant rework until version 1.0.0 is released, and any minor version increment before then may include breaking changes. Documentation and full examples are still being written.
Background
To give an idea of the problem this library is trying to solve, here is some informal background from the creator:
In our React Native application we had a screen which showed a
FlatList of cards that could be scrolled through or individually
tapped to view details. We wanted to add the ability for a user
to long-press a card then drag it into a different position in
the list; in other words, we needed a reorderable list.
I figured there must already be a library out there that would
suit our needs. I tried out a few different packages, which each
looked to have pros and cons, but nothing quite worked right how
we expected. To complicate things further, our application used
react-navigation
, which seemed to conflict with some of them.
We also had future features on our roadmap which would necessitate
a more generic drag-and-drop solution. I found it a bit odd that,
although reorderable lists and drag-and-drop have much functional
overlap, there didn't seem to be a package for React Native which
did both. It looked like React for the web was a little more mature
in this arena, but that didn't help us. I asked some other
developers if they knew of a solid React Native library for this,
but they agreed that it was a gap in the ecosystem.
I decided to create my own drag-and-drop library, including
stock components for common behaviors. The goal, first and
foremost, was to fulfill our draggable reorderable list wish.
But beyond that, I wanted a robust foundation that could be
used to flexibly implement various drag-and-drop-related
solutions. I am sure that there are scenarios I have not
yet considered, and I am open to input from other people
who are working in this space.
Concept
Descriptions of the library's approach, underlying implementation, and drag-and-drop event lifecycle can be found in the Concept Document.
Installation
First you must have a project using react-native
version >=0.62
, including react-native-gesture-handler
version >=1.8.0
. For further information on installing the latter, see that library's documentation.
Then simply install Drax with:
yarn add react-native-drax
or
npm install react-native-drax
There is no Cocoapods or native linking step here. You've already covered those needs with react-native-gesture-handler
.
Usage
Basic Usage
Import the library components:
import { DraxProvider, DraxView } from 'react-native-drax';
Wrap the area of your app that will use Drax with a DraxProvider
, and create a couple DraxView
s, one draggable and one receptive:
<DraxProvider>
<View style={styles.container}>
<DraxView
style={styles.draggable}
onDragStart={() => {
console.log('start drag');
}}
payload="world"
/>
<DraxView
style={styles.receiver}
onReceiveDragEnter={({ dragged: { payload } }) => {
console.log(`hello ${payload}`);
}}
onReceiveDragExit={({ dragged: { payload } }) => {
console.log(`goodbye ${payload}`);
}}
onReceiveDragDrop={({ dragged: { payload } }) => {
console.log(`received ${payload}`);
}}
/>
</View>
</DraxProvider>
The styles are provided here for completeness:
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
draggable: {
width: 100,
height: 100,
backgroundColor: 'blue',
},
receiver: {
width: 100,
height: 100,
backgroundColor: 'green',
},
});
This will give you a blue box which can be dragged around and a green box which it can be dragged into. Watch the console log messages while you drag the blue box around, releasing the drag either in or out of the green box.
API
Full API description coming soon
Caveats
This library has several known issues and limitations, particularly around the Android platform. We hope to address these and improve the library over time. For most use cases, the current functionality is probably fine.
This library has been developed with React Native 0.61 and React Native Gesture Handler 1.5, and due to complexity, its use with older versions of them will not be supported.
Examples
A reference application can be found at react-native-drax-example
demonstrating several use cases.
If you don't want to download and run the sample application, here are two Snack examples:
Note: these Snack examples will not work in the Web device. You must use an iOS (default) or Android device.
Contributing
See the Contribution Guidelines for details.
Code of Conduct
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
License
This software library is licensed under the MIT License.
Acknowledgments
The bulk of this library was written by Joe Lafiosca over the course of December 2019. Joe would like to give thanks to co-founder Mark Thomas for being patient with the development process. Joe would also like to give thanks to Lena Raine, Tom Jenkinson, Rollie Pemberton, David Minnick, Tim Smith, and Danny Baranowsky for providing most of the coding background music that inspired this work.