我有渲染 D3 树的 React 组件。代码片段如下所示。
componentDidMount()
{
var mountNode = ReactDom.findDOMNode(this.tree);
// Render the tree usng d3 after first component mount
if (this.props.treeData)
{
renderTree(this.props.treeData, mountNode, this.props.nodeName);//renderTree is Javascript function
}
}
contextmenu(node)
{
this.setState = {
style_popup: {
top: d3.event.clientY,
left: d3.event.clientX,
position: 'absolute'
},
render_on_click: true
}
}
render()
{
// Render a blank svg node
return (
<div id="tree">
<div id="tree-container" ref={(tree) =>
{
this.tree = tree;
}}>
</div>
{
(this.state.render_on_click) ? <PopUp popup_style={this.state.style_popup}/> : null
}
</div>
);
}
在内部renderTree()
(不是React 函数)我有以下代码片段:
function renderTree(this.props.treeData, mountNode, this.props.nodeName)
{
//Some code.
.on('click',contextmenu);
}
我知道这是从 Js 调用React 的 contextmenu的错误方式,但是我将如何实现呢?我尝试使用参考
<D3Tree ref={instance => { this.D3tree = instance; }} treeData={this.props.treeData} />
但是 D3Tree 组件是从不同的文件中调用的,这就是我得到的原因
this.D3Tree 未定义。
我应该如何调用作为 React 函数的 contextmenu?