2

我目前正在为 react 中的文件上传和排序构建一个功能。

我使用了以下示例:

一切正常,直到 eslint 告诉我不要在下面的存储库中的 js/componenets/File.jsx 中使用 findDOMNode。

https://github.com/GregHolmes/react-dnd-dropzone

当我尝试重新排序图像的位置时会发生这种情况。即将第二张图片拖到第一名。

经过搜索,我找到了一个有关如何解决此问题的示例。然而,这个例子是行不通的。这个例子是:React DnD:避免使用 findDOMNode

与他们的示例一样,我尝试了以下操作:

js/components/File.jsx:35

<div ref={node => this.node = node} style={{ ...style, opacity }}>

然后在同一个文件中,我取消注释第 62 行:

const rawComponent = component.getDecoratedComponentInstance();

并替换(第 71 行):

const hoverBoundingRect = findDOMNode(component).getBoundingClientRect();

与(第 70 行):

const hoverBoundingRect = rawComponent.node.getBoundingClientRect();

然后我得到:

getDecoratedComponentInstance() is not a function

有谁知道我该如何解决这个问题?我为我的代码中的混乱道歉。我是新来的反应,并一直试图保持尽可能干净。

编辑

我以为我已经解决了以下问题。但是这样做意味着我无法将图像拖到另一个框。使用 DropTarget 切换 let exportFile = DragSource..... 给了我最初的函数调用不是函数的问题。

在我的 File.jsx 文件的底部。我有:

export default flow(
DropTarget("FILE", fileTarget, connect => ({
    connectDropTarget: connect.dropTarget()
})),
DragSource("FILE", fileSource, (connect, monitor) => ({
    connectDragSource: connect.dragSource(),
    isDragging: monitor.isDragging()
}))
)(File);

我将其替换为:

function collectDragSource(connect, monitor) {
    return {
        connectDragSource: connect.dragSource(),
        isDragging: monitor.isDragging()
    };
}

function collectDropTarget(connect) {
    return {
        connectDropTarget: connect.dropTarget()
    };
}

let exportFile = DragSource('file', fileSource, collectDragSource)(File);
exportFile = DropTarget('file', fileTarget, collectDropTarget)(exportFile);

export default exportFile;
4

1 回答 1

2

您实际上并不需要创建一个rawComponent变量并调用getDecoratedComponentInstance它作为组件上的方法无论如何都不存在。

可以简单地通过属性node访问component实例,node这意味着您可以简单地做

const hoverBoundingRect = component.node.getBoundingClientRect();

顺便说一句,您似乎也有依赖项lodash并在您的文件中microevent重复。package.json

于 2017-01-25T15:57:29.477 回答