Are Components Reactive?
See original GitHub issueThe data results isn’t updating when using a reactive helper. Should this update the results reactively OR do i need to add a config option OR is this not supported?
/index.js
Template.templateName.onRendered(function() {
this.autorun(function() {
reactiveIndex.set(someIndex);
}
})
Template.templateName.helpers({
currentIndex() {
return reactiveIndex.get();
}
});
/index.html
{{#EasySearch.Each index=currentIndex}}
<li>{{this}}</lI>
{{/EasySearch.Each}}
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
What is the reactive component of a circuit? - Quora
A component is said to be reactive if it tries to resist a change in voltage or current in a circuit. The amount...
Read more >Reactive component Definition & Meaning - Merriam-Webster
The meaning of REACTIVE COMPONENT is the component of an alternating current that has a phase difference of 90° with the electromotive force....
Read more >Reactive Electronic Components and Phase Angle
Capacitors and inductors are “reactive” components which react to change. Unlike resistors, capacitors and inductors store and release ...
Read more >Reactive Component - an overview | ScienceDirect Topics
The reactive component (or VAR) represents electromagnetic energy which circulates round the system and is a prerequisite of most forms of electromagnetic ...
Read more >Reactive Component - Appbaseio Open Source
ReactiveComponent is a wrapper component that allows you to connect custom component(s) (passed as children) with the Reactivesearch ecosystem. Usage with ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

/packages/easysearch:components/lib/base.js
/packages/easysearch:components/lib/component-methods.js line 23
@matteodem Thank you for the fast reply. I created a new issue #610