React now supports the use of ES6 classes as an alternative to React.createClass()
.
React's concept of Mixins, however, doesn't have a corollary when using ES6 classes. This left the community without an established pattern for code that both handles cross-cutting concerns and requires access to Component Life Cycle Methods.
In this gist, @sebmarkbage proposed an alternative pattern to React mixins: decorate components with a wrapping "higher order" component that handles whatever lifecycle methods it needs to and then invokes the wrapped component in its render()
method, passing through props
.
While a viable solution, this has a few drawbacks:
-
There's no way for the child component to override functionality defined on the higher order component.
-
The higher order component will obscure public methods on the wrapped component. This normally isn't an issue, but sometimes components expose static methods to good purpose. For example, React Router uses this approach for its [lifecycle hooks](http://rackt.github.io/react-router/#Route Handler).
-
This is a React-specific solution to a general (language level) problem.
To address these concerns, here's an alternative approach that I've begun adopting. It's quite generic (not specific to React or even ES6 classes) and avoids the issues above.
The solution? Simply use classical inheritence, but construct the inheritence chain dynamically to improve composability.
Here's @sebmarkbage orginal example, rewritten using this approach:
#####Higher Order Component
function enhance(ParentClass) {
return class Enhance extends ParentClass {
constructor() {
super(...arguments);
this.state = { data: null };
}
componentDidMount() {
if (super.componentDidMount) {
super.componentDidMount(...arguments);
}
this.setState({ data: 'Hello' });
}
};
}
#####Enhanced Component
class MyComponent extends mixin(enhance, React.Component) {
render() {
if (!this.data) {
return <div>Waiting...</div>;
}
return <div>{this.data}</div>;
}
}
Note: Methods on mixin classes should always check to see if super.methodName
is defined and call it as appropriate. This way, mixins can be dynamically composed in the inheritence chain without conflicts.
#####Mixin Utility
function mixin(...args) {
var ParentClass = args.pop();
var classGenerators = args;
return classGenerators.reverse().reduce((ParentClass, classGenerator) => {
return classGenerator(ParentClass);
}, ParentClass);
}
#####Summary
I've started using this pattern to good purpose. You can chain as many mixins as you want. At any level in the chain you can override methods and use super()
and super.methodName()
since this uses vanilla ES6 inheritence.
Right now I don't see any major drawbacks to this pattern. This said, I've yet to use this extensively in production. Are there drawbacks I haven't thought of? If so, please advise!
Interesting approach to mixins! I like that people are looking at the problem of bringing back the functionality of mixins in new and different ways for react+classes.
One downside of the mixin approach is that component users must remember to call super.xyz() if they are using any of the lifecycle hooks. In your example, if
MyComponent
needs to usecomponentDidMount
, it will also need to callsuper. componentDidMount
.Additionally, the mixins won't be able to take over the render method, as is done in Radium and React-DND.