Vlad

Results 23 comments of Vlad

I always felt that something was missing in state management and this library fills the gap. It's simple yet powerful and subtle. IMO it doesn't exclude nor the basic useState...

Consider also [saga-query](https://github.com/neurosnap/saga-query).

Thank you, I'll go further with your suggestion and I think that will do it, Anyway I wrote down the use-case. A better example would be about "items". The use-case...

It seems that the task isn't trivial at all. Sorry for the irrelevant details above. Looking forward to the ongoing PR.

For now I implemented this feature using an other approach than saga-query in order to go on with the project (mixing valtio proxy, rtkq and sagas to make the feature...

I think that problem is that the "name" is untouchable. Initially I thought that cancelling by parameter is enough, but then the next call overlaps and invalidates the first call...

Hello and thanks. It works perfectly. I implemented it like: ```js interface IWatchParams { PARAM1_ID: number; PARAM2_ID: number; } // for example of multiple params. as it doesn't matter how...

It would be easier like this: ```js import { SagaIterator, Task } from 'redux-saga'; import { all, delay, call, take, cancel, fork } from 'redux-saga/effects'; export function pollMatrix(cancelType: string, parentTimer?:...

Perhaps it would be more elegant just to reuse the "key" parameter from api based on actionType and options and keep it in the pollMap. But not knowing the mechanics...