use-draggable

1.5.2 • Public • Published

react-draggable

Travis (.org) npm npm GitHub

A custom hook to make elements draggable.

Usage

Simplest usage:

import { useDraggable } from 'use-draggable';
 
function MyComponent(props) {
  const { targetRef } = useDraggable({ controlStyle: true });
 
  return (
    <div ref={targetRef}>
      <h1>You can drag me :)</h1>
    </div>
  );
}

Usage in a class component:

import React from 'react';
import { Draggable } from 'use-draggable';
 
class MyComponent extends React.Component {
  render() {
    return (
      <Draggable>
        {({ targetRef, handleRef }) => (
          <div ref={targetRef}>
            <h1>You can drag me :)</h1>
            <button ref={handleRef}>with this handle</button>
          </div>
        )}
      </Draggable>
    );
  }
}

Live demo

https://codesandbox.io/s/use-draggable-demo-tiu3w

Contribute

PRs are welcomed! Note - when opening a PR, make sure the last commit message abides commitizen guidelines.

Readme

Keywords

none

Package Sidebar

Install

npm i use-draggable

Weekly Downloads

365

Version

1.5.2

License

none

Unpacked Size

35.1 kB

Total Files

7

Last publish

Collaborators

  • idanen