Mitar

Results 583 issues of Mitar

So while there are functions to navigate one level of component tree, there should be also functions which navigate multiple levels, do it recursively. Imagine a jQuery selectors for selecting...

I am not yet completely sure how I would implement this, but I am thinking of doing some backwards incompatible changes to Blaze Components. In short, it is getting rid...

discussion

Preliminary testing looks pretty promising. Many tests are already passing. It seems that if the author is precise how they define components, things work. So no jQuery changes of DOM,...

I am thinking that it is useful to not clear `componentParent` on destroy of a component. How it currently works is that when a component is created, `componentParent` and (corresponding...

So describe why event driven communication in other frameworks is just a special case of communication based on reactive methods on components. So for Blaze Components, the proposed way (but...

This is pretty simple to check, one should handle only `this.currentComponent() == this.component()`. But sometimes this is tedious to write in all your event handlers. So a mixin could wrap...

Provide equivalents to `Blaze.render`, `Blaze.renderWithData` and `Blaze.remove`. For now you can use for `Blaze.render`: ``` coffee renderedView = Blaze.render MyComponent.renderComponent parentComponent ``` or ``` coffee renderedView = Blaze.render BlazeComponent.get('MyComponent').renderComponent parentComponent...

Using [computed field](https://github.com/peerlibrary/meteor-computed-field) package.

We could make a site which would be a simple package explorer for Meteor packages which provide Blaze Components. There is an [API](https://github.com/meteor/meteor/wiki/Meteor-Package-Server-API). It would be great if we could...

contributions welcome