你如何使用React-DND移动dragsource?

时间:2017-03-20 06:11:07

标签: javascript reactjs drag-and-drop react-dnd

如何使用react-dnd

使用鼠标光标移动源元素

这就是我正在做的事情(简化示例):

import React from 'react';
import ReactDom from 'react-dom';
import {DragDropContext, DragSource} from 'react-dnd';
import HTML5Backend from 'react-dnd-html5-backend';

@DragSource("zzzz", {beginDrag: props => ({})}, (connect, monitor) => ({
  connectDragSource: connect.dragSource(),
  isDragging: monitor.isDragging()
}))
export class DND extends React.Component {
  render () {
    const text = this.props.isDragging ? "YAY": "DND";

    return this.props.connectDragSource(
      <div>{text}</div>
    );
  }
}

@DragDropContext(HTML5Backend)
export class Application extends React.Component {
  render() {
    return <div><DND /></div>;
  }
}

ReactDom.render(
  <Application />,
  document.getElementById('react-mount')
);

当我点击并拖动它时,文字从DND更改为YAY,但div不会移动以跟随鼠标。

我所经历的示例似乎并未手动更新目标x / y坐标,我认为这是由库本身管理的。我错过了什么?

编辑:

我没有提到在Chrome devtools中模拟移动设备时会发生这种情况。它在桌面模式下按预期工作。

我目前正在考虑使用DragLayer移动dragsource,如here所示;

1 个答案:

答案 0 :(得分:1)

移动浏览器在拖动时不显示拖动源的阴影。您需要使用DragPreview来绘制移动。