Hacker News new | ask | show | jobs
by egeozcan 4004 days ago
Thank you for the heads up and the example.

> The only limitation I see now is a mixin that defines more mixins; this currently doesn't work

Why and how would you do this?

2 comments

It's just a nice way to split up concerns. In React-Router-Component, the RouterMixin [1] mixes in the Environment Mixin [2] which allows the Environment to address its own concerns in a separate file and to be included in other, custom components.

1. https://github.com/STRML/react-router-component/blob/master/... 2. https://github.com/STRML/react-router-component/blob/master/...

Ah, now I get it, you meant nested mixins. Great, thanks for the pull, hope it gets merged.
I've submitted a fix for this in react-mixin here. https://github.com/brigand/react-mixin/pull/22