Karolis Narkevicius

Results 49 comments of Karolis Narkevicius

Bring in Reddit API example rewritten with tiny-atom: https://redux.js.org/advanced/exampleredditapi

Uuu, this is awesome, will have a play soon. Does this autocomplete the available actions and their signatures in `useActions` or when calling them in the code? And does it...

Create and export your selectors, e.g.: ```js import { createSelector } from 'reselect' const getNotes = state => state.notes const getTags = state => state.tags export const notesWithTags = createSelector(...

Possibly, pass in params with query as well, so that data could be prefiltered. To enable this use case: ![image](https://user-images.githubusercontent.com/324440/78702856-2ae80b80-7901-11ea-91e1-e74f1c5b0e49.png)

I see, I guess Figbird is not currently "include" aware (it's not a standard Feathers feature), wonder if we this would be possible with some kind of API for intercepting...

At the core, the issue is that `$like` is not part of standard Feathers operators, and is also not supported out of the box by figbird or [sift](https://github.com/crcn/sift.js) - the...

> Do I understand correctly that using refetch only caches locally to that component, so that cache would be cleared each time it is unmounted? The `refetch` mode uses the...

**tl;dr** - authorization header is not being sent when downloading a scoped package tarball

I think this might be one of those things we look back at in a year and be like, why did we cling on manually formatting the code. Auto standard...

I think we want (I want) standard to automformat the code (such that all standard codebases are identical, unambiguous). Maybe that just means I should switch to prettier. But Feross...