Reorder
The Reorder
components can be used to create drag-to-reorder lists, like reorderable tabs or todo items.
Note: Reorder
is for simple drag-to-reorder implementations. It's exceptionally lightweight ontop of the base motion
component but lacks some features like multirow, dragging between columns, or dragging within scrollable containers. For advanced use-cases we recommend something like DnD Kit.
Usage
Every reorderable list is wrapped in the Reorder.Group
component.
By default, this is rendered as a <ul>
, but this can be changed with the as
prop.
Reorder.Group
must be passed the array of values in your reorderable list via the values
prop.
Additionally, a onReorder
event will fire with the latest calculated order. For items to reorder, this must update the values
state.
To render each reorderable item, use Reorder.Item
, passing it the value it represents via the value
prop.
Now, when items are dragged and reordered, onReorder
will fire with a new order.
Layout animations
Reorder.Item
components are already configured to perform layout animations, so if new items are added or removed to the reorderable list, surrounding items will animate to their new position automatically.
Exit animations
AnimatePresence
can be used as normal to animate items as they enter/leave the React tree.
Drag triggers
By default, all of a Reorder.Item
will be draggable. useDragControls
can be used to define a different component to act as a drag trigger.
Scrollable lists
If Reorder.Item
components are within a scrollable container, that container needs a layoutScroll
prop so Framer Motion can correctly measure its scroll offset.
z-index
Reorder.Item
will automatically set a z-index
style on the currently dragged item so it appears above the surrounding items.
However, z-index
only affects items with position !== "static"
. So to enable this effect ensure the position of the Reorder.Item
is set to relative
or absolute
.
API
Reorder.Group
as
Default: "ul"
The underlying element for Reorder.Group
to render as.
axis
Default: "y"
The direction of reorder detection.
Note: By default, all Reorder.Item
components will visibly move only on this axis. To allow visual motion (but not reordering) on both axes, pass the drag
prop to child Reorder.Item
components.
values
The values array that will be reordered. Each item in this list must match a value
passed to each Reorder.Item
.
onReorder
A callback that will fire when items are detected to have reordered. The provided newOrder
should be passed to a values
state update function.
Reorder.Item
Reorder.Item
components accept all motion
component props in addition to the following:
as
Default: "li"
The element for Reorder.Item
to render as.
value
When onReorder
is called, this is the value that will be passed through in the newly ordered array.
Motion is open source. Sponsorships keep the project sustainable.
Every sponsor receives access to our private Discord, and an exclusive mobile and desktop wallpaper pack.