You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit 3 jaren geleden
..
lib First Commit 3 jaren geleden
node_modules/redux First Commit 3 jaren geleden
src First Commit 3 jaren geleden
.DS_Store First Commit 3 jaren geleden
LICENSE First Commit 3 jaren geleden
README.md First Commit 3 jaren geleden
package.json First Commit 3 jaren geleden

README.md

npm package Build Status Test Coverage bitHound Overall Score bitHound Code bitHound Dependencies bitHound Dev Dependencies

dnd-core

Drag and drop sans the GUI.

This is a clean implementation of drag and drop primitives that does not depend on the browser. It powers React DnD internally.

Wat?

To give you a better idea:

  • There is no DOM here
  • We let you define drop target and drag source logic
  • We let you supply custom underlying implementations (console, DOM via jQuery, React, React Native, whatever)
  • We manage drag source and drop target interaction

This was written to support some rather complicated scenarios that were too hard to implement in React DnD due to its current architecture:

As it turns out, these problems are much easier to solve when DOM is thrown out of the window.

What’s the API like?

Tests should give you some idea. You register drag sources and drop targets, hook up a backend (you can use barebones TestBackend or implement a fancy real one yourself), and your drag sources and drop targets magically begin to interact.