I'm trying to implement form data autosave in Angular 4. It should work like this:
- User changes some data in the form -> some save request to DB is invoked. Let's assume some timer is started here for 2s.
- During 2s from previous save request all changes will not invoke any requests (to reduce DB load), but will trigger another save request then 2s timer will expire.
- If no timer is started at the moment then save request should be invoked immediately.
I suppose that Observable
, Subject
and Scheduler
from RxJS will help me, but I am completely new to it. Could you suggest the best approach for achieving above functionality please?