Socket
Socket
Sign inDemoInstall

react-cool-draggable

Package Overview
Dependencies
87
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-cool-draggable

Drag-n-drop react library (component) for horizontal and vertical lists.


Version published
Weekly downloads
1.3K
increased by1.49%
Maintainers
1
Install size
4.47 MB
Created
Weekly downloads
 

Readme

Source

react-cool-draggable

Drag-n-drop react library (component) for horizontal and vertical lists.

Dark

  • 👨‍🎓 Easy to use
  • 💪 Small size (6 kb gzipped)
  • 🚀 60 FPS performance
  • 🎢 Animated transitions
  • 💅 Сustomizable appearance
  • 🙃 Touch devices support
  • 📏 Any element sizes
  • ✔️ No dependencies

One common frontend task is to create draggable cards in various lists. To simplify this task, I wrote a library that can work with horizontal and vertical lists, as well as their combinations (for example, as done in Trello).

Demo

  • Trello app
  • Large board

Installation

npm:

npm install react-cool-draggable

yarn:

yarn add react-cool-draggable

Usage

import {
  DragDropContext,
  Droppable,
  Draggable,
  reorder,
} from 'react-cool-draggable';

const handleDragEnd = options => {
  const newItems = reorder({
    ...options,
    items,
    getDraggableID: x => x.ID,
    getDroppableID: () => 'row',
  });

  setItems(newItems);
};

<DragDropContext onDragEnd={handleDragEnd}>
  <Droppable
    direction='vertical'
    droppableID='row'
    droppableGroupID='board'>
    {({ snapshot, ...rest }) => (
      <div className='droppable' {...rest}>
        {items.map(x => (
          <Draggable key={x.ID} draggableID={x.ID}>
            {({ snapshot, rootProps, draggableProps }) => (
              <div className='draggable' {...rootProps} {...draggableProps}>
                {x.text}
              </div>
            )}
          </Draggable>
        ))}
      </div>
    )}
  </Droppable>
</DragDropContext>

You can also combine and nest droppable and draggable elements to create more complex components if you need to.

API

Some universal types here

type ID = string | number;

type Direction = 'vertical' | 'horizontal';

type DraggableElement = HTMLElement | SVGElement;

DragDropContext

This library uses the react context as a way to communicate between children in the tree, so the context must be explicitly invoked at the root of the component.

import { DragDropContext } from 'react-cool-draggable';
<DragDropContext onDragEnd={handleDragEnd}>
  Some children here...
</DragDropContext>
type DragDropContextProps = {
  onDragStart?: (options: OnDragStartOptions) => void;
  onDragOver?: (options: OnDragOverOptions) => void;
  onDragEnd: (options: OnDragEndOptions) => void;
  children: React.ReactElement;
};

All of these callback accept a number of options that may be useful to you later.

type OnDragStartOptions = {
  draggableID: ID;
  droppableID: ID;
  droppableGroupID: ID;
  targetNode: DraggableElement;
};

type OnDragOverOptions = {
  draggableID: ID;
  droppableID: ID;
  droppableGroupID: ID;
  targetNode: DraggableElement;
  nearestNode: DraggableElement | null;
};

type OnDragEndOptions = {
  draggableID: ID;
  droppableID: ID;
  droppableGroupID: ID;
  sourceIdx: number;
  destinationIdx: number;
  isMoving: boolean;
  targetNode: DraggableElement;
};

Droppable

Think of this component as a surface on which elements move. It is simple logic where all the logic is hidden. At the same time, it is based on the concept of RenderProps and expects to receive a render function as children.

import { Droppable } from 'react-cool-draggable';
<Droppable
  direction='vertical'
  droppableID='row'
  droppableGroupID='board'>
  {({ snapshot, ...rest }) => <div {...rest}>Some children here...</div>}
</Droppable>
type DroppableProps = {
  direction: Direction;
  droppableID: ID;
  droppableGroupID: ID;
  transitionTimeout?: number;
  transitionTimingFn?: string;
  disabled?: boolean;
  debounceTimeout?: number;
  children: (options: DroppableChildrenOptions) => React.ReactElement;
};

The direction - the main property that specifies how the component should deal with the drag direction. You will also need to provide some identifiers so that you can distinguish one surface from another.

type DroppableChildrenOptions = {
  snapshot: {
    isDragging: boolean;
  };
  ...some service options 
};

The snapshot can be useful for you to understand and react to real-time dragging, such as changing the surface color to let the user know that the dragging mode has been activated.

Draggable

You can think of this component as an element that is draggable by the user. And it is also just a component that implements logic without any external appearance. So he also needs a render function to tell it what it should look like.

import { Draggable } from 'react-cool-draggable';
<Draggable draggableID={x.ID}>
  {({ snapshot, rootProps, draggableProps }) =>
    <div {...rootProps} {...draggableProps}>Some children here...</div>}
</Draggable>
type DraggableProps = {
  draggableID: ID;
  children: (options: DraggableChildrenOptions) => React.ReactElement;
};
type DraggableChildrenOptions = {
  snapshot: {
    isDragging: boolean;
  };
  rootProps: SomeServiceOptions;
  draggableProps: SomeServiceOptions;
};

In the render function declaration, you must pass rootProps and draggableProps to the element. At the same time, if you want to make the draggable activation not be carried out on the entire element, but only on its part (for example, a button that needs to be captured in order to drag), then you must pass draggableProps to this button and pass only rootProps to the element itself.

reorder and move

import { reorder, move } from 'react-cool-draggable';

These are the functions you need to apply inside the onDragEnd callback to sort the list of items in the component's state correctly. In this case, reorder does the usual sorting, and move - moving an element from one group to another, if you implement an exchange of elements between two or more droppable surfaces. This may sound complicated, but it isn't, so please see examples/trello for examples of how to use these functions.

const newItems = reorder({
  ...options,
  items,
  getDraggableID: x => x.ID,
  getDroppableID: () => 'row',
});
const newItems = move({
  ...options,
  items,
  getDraggableID: x => x.ID,
  getDroppableID: x => x.groupID,
  setDroppableID: (x, droppableID) => {
    x.groupID = droppableID;
  },
});

LICENSE

MIT © Alex Plex

Keywords

FAQs

Last updated on 18 Mar 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc