基本上,我希望能够定义一个组件列表,该列表可以在组件层次结构中的“子组件”正上方。有没有编程的方式来检查这一点?
列表基本上是一个像这样的类的数组
const allowed_parents = [Parent1, Parent2, Parent3];
然后
<UnListedParent>
.
.
.
<Child />
</UnListedParent>
应该抛出错误
答案 0 :(得分:3)
您不能使用任何已知的公共React API从子级直接访问父级。
当然有“骇人”的方式,例如使用createRef
和React.Children.map
以编程方式将React.cloneElement
传递给父母,并将其传递给孩子,但这是这样的一个糟糕的设计,我什至不打算在这里发布,以免与该代码关联:D
不过,我认为一种更好的方法更符合React
的原则,并且单向自上而下的流程是结合使用HigherOrderComponent包装的“允许的父母”,它们将特定的标志传递给他们“允许”,然后检入子标志是否存在,否则出错。
这可能类似于this
import React, { useState } from "react";
import ReactDOM from "react-dom";
const Child = ({ isAllowed }) => {
if (!isAllowed) {
throw new Error("We are not allowed!");
}
return <div>An allowed child.</div>;
};
const allowParentHOC = Wrapper => {
return ({ children, ...props }) => {
return (
<Wrapper {...props}>
{React.Children.map(children, child =>
React.cloneElement(child, {
isAllowed: true
})
)}
</Wrapper>
);
};
};
const Parent1 = allowParentHOC(props => <div {...props} />);
const Parent2 = allowParentHOC(props => <div {...props} />);
const UnListedParent = ({ children }) => children;
class ErrorBoundary extends React.Component {
state = { hasError: false };
componentDidCatch(error, info) {
this.setState({ hasError: true, info });
}
render() {
if (this.state.hasError) {
// You can render any custom fallback UI
return (
<>
<h1>This Child was not well put :(</h1>
<pre>{JSON.stringify(this.state.info, null, 2)}</pre>
</>
);
}
return this.props.children;
}
}
class App extends React.Component {
state = {
isUnAllowedParentShown: false
};
handleToggle = () =>
this.setState(({ isUnAllowedParentShown }) => ({
isUnAllowedParentShown: !isUnAllowedParentShown
}));
render() {
return (
<>
<button onClick={this.handleToggle}>Toggle Versions</button>
{this.state.isUnAllowedParentShown ? (
<UnListedParent>
<Child />
</UnListedParent>
) : (
<>
<Parent1>
<Child />
</Parent1>
<Parent2>
<Child />
</Parent2>
</>
)}
</>
);
}
}
export default App;
const rootElement = document.getElementById("root");
ReactDOM.render(
<ErrorBoundary>
<App />
</ErrorBoundary>,
rootElement
);