JSPM

react-clickdrag-mixin

1.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q25976F
  • License MIT

Easily click and drag a react component

Package Exports

  • react-clickdrag-mixin

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-clickdrag-mixin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-clickdrag-mixin

NPM

Click and drag mixin for React Component.

To make it work, your component have to implement these functions:

  • _onDragStart(event, position)
  • _onDragStop(event)
  • _onDragMove(event, deltaPosition)

The mixin also offers this method to change the saved position of the nouse at the mouse down event, used to calculate the deltaPosition in _onDragMove

  • setMousePosition(x, y)

Example

/**
 * @jsx React.DOM
 */
"use strict";

var ClickDrag = require('react-clickdrag-mixin');

var MyComponent = React.createClass({

    mixins: [ClickDrag],

    _onDragStart: function(e, pos) {
        // Fired when the element is clicked (left button mousedown)
    },
    _onDragStop: function(e) {
        // Fired when you release the left mouse button
    },
    _onDragMove: function(e, deltaPos) {
        // Fired on drag move with the delta position between the drag start and the current position
    },

    ...
});