React の高次コンポーネントを介してコンテキストをラップするコンポーネントに渡す方法はありますか?
親からコンテキストを受け取り、そのコンテキストを利用して基本的な一般化されたアクションを実行し、同じコンテキストにアクセスしてアクションを実行する必要がある子コンポーネントをラップする HOC があります。例:
HOC:
export default function withACoolThing(WrappedComponent) {
return class DoACoolThing extends Component {
static contextTypes = {
actions: PropTypes.object,
}
@autobind
doAThing() {
this.context.actions.doTheThing();
}
render() {
const newProps = {
doAThing: this.doAThing,
};
return (
<WrappedComponent {...this.props} {...newProps} {...this.context} />
);
}
}
};
ラップされたコンポーネント:
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { autobind } from 'core-decorators';
import withACoolThing from 'lib/hocs/withACoolThing';
const propTypes = {
doAThing: PropTypes.func,
};
const contextTypes = {
actions: PropTypes.object,
};
@withACoolThing
export default class SomeComponent extends PureComponent {
@autobind
doSomethingSpecificToThisComponent(someData) {
this.context.actions.doSomethingSpecificToThisComponent();
}
render() {
const { actions } = this.context;
return (
<div styleName="SomeComponent">
<SomeOtherThing onClick={() => this.doSomethingSpecificToThisComponent(someData)}>Do a Specific Thing</SomeOtherThing>
<SomeOtherThing onClick={() => this.props.doAThing()}>Do a General Thing</SomeOtherThing>
</div>
);
}
}
SomeComponent.propTypes = propTypes;
SomeComponent.contextTypes = contextTypes;
HOC を渡し{...this.context}
ても機能しません。ラップされたコンポーネントが HOC によってラップされている限りthis.context
、空です。{}
助けてください?コンテキストを小道具として渡す必要のないコンテキストを渡す方法はありますか??