0
react dnd
을 사용하여 동시에 드래그 가능하고 삭제 가능하게하려는 여러 요소가 있습니다. 즉, 요소 중 하나를 드래그하여 다른 요소 위에 놓아야 함을 의미합니다.React/Dnd : 동시에 구성 요소를 드래그하고 놓을 수있게 만들기
먼저 MyComponent에 dragource를 정의했습니다. 그건 지금까지 작동합니다. 하지만 동일한 구성 요소에 대해 DropTarget을 설정해야합니까?
import React, { Component } from 'react'
import { DragSource, DropTarget } from 'react-dnd'
const elementSource = {
beginDrag (props) {
return { }
}
}
const elementTarget = {
drop (props, monitor) { }
}
function collect (connect, monitor) {
return {
connectDragSource: connect.dragSource(),
isDragging: monitor.isDragging(),
connectDropTarget: connect.dropTarget(),
isOver: monitor.isOver()
}
}
class MyComponent extends Component {
render() {
const { connectDragSource, isDragging, connectDropTarget, isOver } = this.props
return connectDragSource(
<div style={{ opacity: isDragging ? 0.5 : 1 }} >
Just an example
</div>
)
}
}
export default DragSource('element', elementSource, collect)(MyComponent)