基本上,我希望能够定义一个组件列表,该列表可以在组件层次结构中的“子组件”的紧上方.有没有编程的方式来检查这一点?
该列表基本上是一个类数组,例如
const allowed_parents = [Parent1, Parent2, Parent3];
接着
<UnListedParent>
.
.
.
<Child />
</UnListedParent>
应该抛出一个错误
解决方法:
您不能使用任何已知的公共React API从子级直接访问父级.
当然,有“ hacky”方式,例如,通过React.Children.map和React.cloneElement以编程方式在父级上创建createRef并将其传递给子级,但这是一个糟糕的设计,我不打算这样做.甚至将其发布在此处,而不与该代码关联: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
);