Modifiers
Modifiers let you dynamically modify the movement coordinates that are detected by sensors. They can be used for a wide range of use cases, for example:
Restricting motion to a single axis
Restricting motion to the draggable node container's bounding rectangle
Restricting motion to the draggable node's scroll container bounding rectangle
Applying resistance or clamping the motion
Installation
To start using modifiers, install the modifiers package via yarn or npm:
Usage
The modifiers repository contains a number of useful modifiers that can be applied on DndContext
as well as DragOverlay
.
As you can see from the example above, DndContext
and DragOverlay
can both have different modifiers.
Built-in modifiers
Restricting motion to an axis
restrictToHorizontalAxis
restrictToHorizontalAxis
Restrict movement to only the horizontal axis.
restrictToVerticalAxis
restrictToVerticalAxis
Restrict movement to only the vertical axis.
Restrict motion to a container's bounding rectangle
restrictToWindowEdges
restrictToWindowEdges
Restrict movement to the edges of the window. This modifier can be useful to prevent the DragOverlay
from being moved outside of the bounds of the window.
restrictToParentElement
restrictToParentElement
Restrict movement to the parent element of the draggable item that is picked up.
restrictToFirstScrollableAncestor
restrictToFirstScrollableAncestor
Restrict movement to the first scrollable ancestor of the draggable item that is picked up.
Snap to grid
createSnapModifier
createSnapModifier
Function to create modifiers to snap to a given grid size.
Building custom modifiers
To build your own custom modifiers, refer to the implementation of the built-in modifiers of @dnd-kit/modifiers
: https://github.com/clauderic/dnd-kit/tree/master/packages/modifiers/src
For example, here is an implementation to create a modifier to snap to grid:
Last updated