-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do you planned continue develop this plugin? #1
Comments
+1 Would also very much like to use this also |
Sorry for the slow reply! This completely passed me by. Would definitely like to continue to develop this, I think Rx and Ractive are a very natural fit for each other. The two hurdles are a) no free time and b) the fact that I don't know Rx... I'd happily grant push access to anyone who wanted it, otherwise this'll be a 'magic time' project for some future free weekend. |
Do you have a list of what's broken or left to tackle? |
Not sure - I suspect there are some Rumsfeldian 'unknown unknowns'. The demo page seems to work as expected, but I don't know for certain that it works reliably with all observables of whatever complexity. I guess the only thing is to try it out and deal with issues as they arise. |
@Rich-Harris if you need any help in terms of learning, we on the Rx team can certainly help out. That and taking a look at a lot of the examples we already have with RxJS might help: |
See http://jsbin.com/yatiqi/1/edit?html,js,output. I tried creating a |
Ah, got it. You can integrate with Ractive's observables, rather than the DOM like so: var results = Rx.Observable.fromEventPattern(
function addHandler (h) {
ractive.observe('term', h, { init: false });
},
function delHandler (_, signal) {
signal.cancel();
}
).flatMapLatest(searchWikipedia); |
Hi @Rich-Harris. You can use my example for your demo =) Also I would like know about develop rxjs plugin. Do you plan continue this one? |
Status? Been a while... |
I am developing a documentation for RxJS and I would like know will be developing this plugin in future? For example I just create this article http://xgrommx.github.io/rx-book/content/rxjs_bindings/ractive/README.html
The text was updated successfully, but these errors were encountered: