Drag Elements
Drag Elements is a React and Tailwind CSS component from Fancy Components, licensed MIT. Copy it and paste it into your project.
Fancy Components
MIT
other
What it is
Drag Elements is a React and Tailwind CSS component from Fancy Components, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i motion
Licence
This component comes from Fancy Components and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Drag Elements
"use client"
import React, { useEffect, useRef, useState } from "react"
import { InertiaOptions, motion } from "motion/react"
type DragElementsProps = {
children: React.ReactNode
dragElastic?:
| number
| { top?: number; left?: number; right?: number; bottom?: number }
| boolean
dragConstraints?:
| { top?: number; left?: number; right?: number; bottom?: number }
| React.RefObject<Element | null>
dragMomentum?: boolean
dragTransition?: InertiaOptions
dragPropagation?: boolean
selectedOnTop?: boolean
className?: string
}
const DragElements: React.FC<DragElementsProps> = ({
children,
dragElastic = 0.5,
dragConstraints,
dragMomentum = true,
dragTransition = { bounceStiffness: 200, bounceDamping: 300 },
dragPropagation = true,
selectedOnTop = true,
className,
}) => {
const constraintsRef = useRef<HTMLDivElement>(null)
const [zIndices, setZIndices] = useState<number[]>([])
const [isDragging, setIsDragging] = useState(false)
useEffect(() => {
setZIndices(
Array.from({ length: React.Children.count(children) }, (_, i) => i)
)
}, [children])
const bringToFront = (index: number) => {
if (selectedOnTop) {
setZIndices((prevIndices) => {
const newIndices = [...prevIndices]
const currentIndex = newIndices.indexOf(index)
newIndices.splice(currentIndex, 1)
newIndices.push(index)
return newIndices
})
}
}
return (
<div ref={constraintsRef} className={`relative w-full h-full ${className}`}>
{React.Children.map(children, (child, index) => (
<motion.div
key={index}
drag
dragElastic={dragElastic}
dragConstraints={dragConstraints || constraintsRef}
dragMomentum={dragMomentum}
dragTransition={dragTransition}
dragPropagation={dragPropagation}
style={{
zIndex: zIndices.indexOf(index),
cursor: isDragging ? "grabbing" : "grab",
}}
onDragStart={() => {
bringToFront(index)
setIsDragging(true)
}}
onDragEnd={() => setIsDragging(false)}
whileDrag={{ cursor: "grabbing" }}
className={"absolute"}
>
{child}
</motion.div>
))}
</div>
)
}
export default DragElements