作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个组件,它有一个 getChildContext() 方法,并且子组件接收从父组件的 props 派生的上下文。
我如何测试他们是否已收到?
这是组件的代码...一些选项卡组件。
The tab:
function _handleTabChange(eventKey, id, tabsChange, e) {
e.preventDefault();
tabsChange({ id, eventKey });
}
const _Tab = ({ eventKey, children, ...props }, { activeKey, parentContainer, tabsChange }) => (
<li className={classNames('b-tab', { active: eventKey === activeKey })} {...props}>
<a href="#"
role="tab"
data-toggle="tab"
onClick={_handleTabChange.bind(this, eventKey, parentContainer, tabsChange)}>
{children}
</a>
</li>
);
The Tab Container:
class _TabContainer extends Component {
static displayName = 'TabContainer'
static propTypes = {
children: PropTypes.node.isRequired,
tabsAddContainer: PropTypes.func.isRequired,
tabsRemoveContainer: PropTypes.func.isRequired,
tabsChange: PropTypes.func.isRequired,
tabs: PropTypes.object.isRequired,
tabContainerID: PropTypes.string,
}
static childContextTypes = {
parentContainer: PropTypes.string.isRequired,
tabsChange: PropTypes.func.isRequired,
activeKey: PropTypes.number.isRequired,
}
constructor(props) {
super(props);
this.clones = Children.map(this.props.children, (element, eventKey) => {
if (element.props.active) {
this.defaultActive = eventKey;
}
console.log("defaultActive", this.defaultActive);
return cloneElement(element, { eventKey });
});
}
getChildContext() {
const { tabContainerID, tabsChange, tabs } = this.props;
//activeKey is tabs[tabContainerID] unless it hasn't been instantiated, in which case
//it is the defaultActive gathered by mapping over Tabs to find one with an active prop
const activeKey = (tabs && tabs[tabContainerID] && tabs[tabContainerID] !== '') ?
tabs[tabContainerID] :
this.defaultActive;
return {
parentContainer: tabContainerID,
activeKey,
tabsChange,
};
}
componentWillMount() {
const { tabContainerID, tabsAddContainer } = this.props;
if (tabContainerID) {
tabsAddContainer({ tabContainerID, defaultActive: this.defaultActive });
}
}
componentWillUnmount() {
const { tabContainerID, tabsRemoveContainer } = this.props;
if (tabContainerID) {
tabsRemoveContainer(tabContainerID);
}
}
defaultActive = 0;
render() {
const { children, tabsChange, ...restProps } = this.props;
return (
<div {...restProps} className='tab-container'>
<ul className='nav nav-tabs nav-default' role='tablist'>
{this.clones}
</ul>
</div>
);
}
}
最佳答案
实际上,这是不必要的 - 您可以信任 getChildContext() 并仅测试它是否返回预期的数据,而不是通过告诉子级是否实际上最终获得了正确的上下文来测试上下文。
为此,创建一个函数来返回必要的逻辑并测试该函数,该函数将在 getChildContext() 中调用。
关于reactjs - 如何测试子组件从父组件的 getChildContext() 获取正确的上下文?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33810267/
我有一个组件,它有一个 getChildContext() 方法,并且子组件接收从父组件的 props 派生的上下文。 我如何测试他们是否已收到? 这是组件的代码...一些选项卡组件。 The tab
我想通过功能组件的上下文将一些 Prop 传递到树下那几乎在应用程序的顶部。有没有办法实现这一点,或者我们应该声明一个 ES6/createClass react 组件? 谢谢 最佳答案 您不能使用功
我从 HERE 得到了以下示例制作一个高阶组件来可靠地传递上下文。 但是,使用 webpack 编译脚本时,在传递 getChildContext() 函数时出现 Unexpected token 错
我是一名优秀的程序员,十分优秀!