(globalMonitor, sourceId)
| 61 | } |
| 62 | |
| 63 | isDragging(globalMonitor, sourceId) { |
| 64 | if (!spec.isDragging) { |
| 65 | return sourceId === globalMonitor.getSourceId(); |
| 66 | } |
| 67 | |
| 68 | return spec.isDragging(this.props, this.monitor); |
| 69 | } |
| 70 | |
| 71 | beginDrag() { |
| 72 | const item = spec.beginDrag(this.props, this.monitor, this.component); |
nothing calls this directly
no test coverage detected