Daniel Friesen

Results 336 comments of Daniel Friesen

Instead of a custom `status` object, what about passing an `AbortSignal` from the new [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) API. It's in every modern browser and even Node.js as of v15/v14.17.0. The code is...

> * As AbortSignal is part of the platform and spreading, other libraries will likely start adopting AbortSignal and when they do manual cleanup code can be replaced with just...

Looks like #204 includes the following in addition to the AbortSignal arg: > Accept generator functions so that React can take charge of how async things runs inside the effect....

> Do functions like `onGlobalFilterChange` and `onColumnFiltersChange` need to be wrapped with `useCallback` or placed outside of the React component that's rendering the table? These are just 2 examples of...

Right now I'm just working on a side project in my spare time that happens to use STOMP and tracking issues I run into along the way. If I get...

Apollo's default (and/or example) configs setup a virtual host named (`localhost`, `207.0.0.1`, etc...). When configured like that Apollo will generally reject requests with an empty `host` header if you use...