Jim
Jim
Hey @izuzak, thanks for your comment. I would try to look into it but it will probably take some time as I am busy as well. It would be nice...
I currently work around this _potential_ problem like so: ```javascript import React from "react" import {debounce} from "react-decoration" class MyComponent extends React.PureComponent { render() { const {value} = this.props return...
Hey @mbasso, I just realized that debouncing an event handler is actually a special case because any function can be debounced. So I guess my _"workaround from above"_ would be...
Hey, I have done some research (https://www.youtube.com/watch?v=dRo_egw7tBc) on event pooling but could not get the event to be released to the pool. This might be related to `react-dom` and its...
The real DOM in the browser causes event pooling to behave like in the React docs. Locally both versions of an `onChange` handler method worked for me: ```javascript @persistEvent @debounce(100)...
> I'll try to create a snippet of this issue in the next few days. I think that this it might be not to easy to fix, it might create...
@mbasso Sorry I haven't been working on this lately...I was busy with other projects but I haven't forgotten about this! 😉 I'll open the WIP PR within the next couple...
@mbasso I've done it! 😄 Though, I haven't written any tests for the new debounce yet - just jotted it down before going to bed 😉
I need some help, because `test.all` fails (I had to disable `husky` in order to push anyway, create a PR and ask for help). 😕 For some reason the tests...
@chrisblossom You seem to most active contributor. Could you please take a look? Maybe you find a hint that leads me into the right direction, quickly. Thanks in advance! 🙂