tracker-component icon indicating copy to clipboard operation
tracker-component copied to clipboard

Easy reactive React Components with Meteor and Tracker

Results 8 tracker-component issues
Sort by recently updated
recently updated
newest added

After installing the package I get this error. ``` (STDERR) /home/hayk/.meteor/packages/meteor-tool/.1.4.2_3.3j1ad++os.linux.x86_64+web.browser+web.cordova/mt-os.linux.x86_64/dev_bundle/server-lib/node_modules/fibers/future.js:280 W20161226-16:51:05.068(4)? (STDERR) throw(ex); W20161226-16:51:05.069(4)? (STDERR) ^ W20161226-16:51:05.069(4)? (STDERR) W20161226-16:51:05.069(4)? (STDERR) ReferenceError: exports is not defined W20161226-16:51:05.070(4)? (STDERR) at packages/std_tracker-component.js:21:23...

`this.autorun(() => { this.setState({ ready: this.subscriptionsReady(), ` `this.state.ready` once change to false does not update anymore even if I purposely delayed the publication.

`this.__comps.push` return the index of the pushed element. `Tracker.autorun` and `this.autorun` in Blaze return the computation. I think that was tried to achieve with 07400b29e86ff1f5efb1bb07aca889f195778a7d

Breaking change. Should we up the version to 2.0.0? This changes the behavior so that autorun blocks are no longer invalidated whenever there is a state change. They will re-run...

Save the subscriptions based on only the name of the subscription. So you don't save multiple subscriptions of the same name.

Justification: easy container testing outside of Meteor https://github.com/kadirahq/react-storybook/blob/master/docs/configure_storybook.md#configure-modules-for-testing

I really like what you've built here. But I also really like the new guide structure of splitting out all of my meteor code to `containers`. Can you provide a...