SetState() is not the same function in Reflux and React!
I remember moving some functions from a local component into a store, and it quit working. When I figured out the problem, I ended up reverse engineering some of the […]
I remember moving some functions from a local component into a store, and it quit working. When I figured out the problem, I ended up reverse engineering some of the […]
Came across an error for hasOwnProperty when adding this.storeKeys to a React component listening to a Reflux store. So I: Stripped the component down to just a few lines; still […]
While working on a store with some updating linting rules, I found a function that linting wanted it to be a static function, not a class function. Sure, that makes […]
Ran into a strange scenario where I could not get a component to update with data from a Reflux when I defined a componentWillMount() or componentWillUnmount() function. Just a simple […]
In my Pokemon application, I am using ES6, which does not support mixins. I noticed that I was using a lot of the same code repeatedly for interacting with my […]