Giter Club home page Giter Club logo

react-dragdrop's Introduction

React DragDrop - lightweight drag and drop to save you time

A component that enables drag and drop functionality for it's child element. Lightweight (< 50 lines of code), useful for ReactJS beginners who want something simple and easy to implement : ) Currently implemented using ES6 and available as a .js file (no npm module). May be extended in the future.

Current Features and Usage

Copy 'DragDrop.js' from the components directory into your project. Demo: view the demo here

Supports single child component

<DragDrop>
    <Child />
</DragDrop>

Note: child element must have a unique id (for now).

Custom 'drop' handler

<DragDrop handleDrop={this.swap.bind(this)}>
        <Child />
</DragDrop>

Style-agnostic

Use the 'dragging' property to style your child component as you please.

App.js

<DragDrop>
    <Child />
<DragDrop>

Child.js

function Child(props) {
...
...
return (
    <div {...props} 
    style = { !props.dragging ? {} : { border: '2px dashed red'} }>
	    { !props.dragging ? <p>Resting</p> : <p>Dragging</p> }
    </div>
);
}

(un)Planned Features

  • support for multiple children
  • change how IDs are handled, if possible
  • convert to NPM module
  • support for ES5 / ES7(?)

License

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.