Skip to content
Advertisement

Wait x seconds for new emitted value before triggering a function

I have a child component that emits a value, and in the parent I perform an axios call with this value each time it is emitted. My problem is that I want to trigger the axios call only if in x ms (or seconds) the child has not emmited another value in order to reduce the amount of calls I do.

Code here :

JavaScript

Thanks in advance.

Advertisement

Answer

What you need is debouncing. Here is an example:

JavaScript
JavaScript

When emitted, simply call func1(), and if there are no new emissions after 3000 ms, the function in timeout will be executed.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement