Eunjae Lee

Results 63 comments of Eunjae Lee

Before talking about the config, why did you put `$get` to `$store`? You can just call `$get("ui/isLoading")` without `$store` in any Vue component.

@intermundos are you calling `$get("ui/isLoading")` in your template? If so, `$get` doesn't belong to Vue component, so the error obviously occurs. In your `methods`, you can just use `$get` without...

@intermundos Make sure you configured plugin: https://github.com/eunjae-lee/vuex-dry/blob/master/DOCUMENT.md#install

@intermundos not sure why it doesn't work. If you file a new issue with more detail, I will check it later. And please let me know if you have any...

@intermundos No worries at all. Take as much time as you want.

Hi there, sorry for getting back here so late. If you're still on this, could you provide a code sandbox so that I can try it out? You can use...

Hi there, A react component can be rendered more than expected because of many reasons. But that's normal behavior of React and React diffs to render only changed parts. If...

Hi @abhirocks550 Sorry I didn't get your point. When rendering the component before the search results arrive, the connector returns an empty array: https://github.com/algolia/react-instantsearch/blob/master/packages/react-instantsearch-core/src/connectors/connectRefinementList.js#L146:L146 and that's why you cannot distinguish...

@abhirocks550 you're right. I didn't think of that. So, you want to display nothing only in the first time where the initial search result hasn't arrived yet. Then, I guess...

Hi @abhirocks550, My example was just a PoC and is not covering all general purposes. So you need to adapt it to fit your needs. In my example, I manage...