<elia>
ryanstout, hope it'll bring some interest and / or contributors
<ryanstout>
elia: how's the response?
<elia>
forwarding
<ryanstout>
yea, contributors would be great. Thanks for the PR's today btw
<elia>
I'm trying to implement todomvc, as a way to try it
<ryanstout>
cool.
<elia>
right nowI'm stuck trying to implement a localstorage model
<ryanstout>
reactive blocks aren't done yet, so its tough to do .count {...}
<ryanstout>
I was going to implement local storage as one of the default collections
<ryanstout>
if you check out the source, models can have a "persistor", which sets up how to store the values.
<elia>
I wrote a local storage persistor (kinda) but I'm not sure it's the way togo
<elia>
*to go
<ryanstout>
its probably right
<ryanstout>
I should document how to write your own persistor
<ryanstout>
though I figured most of the ones people needed would be there out of the box
<elia>
sure, but who knows, right? :)
<ryanstout>
yea, definitely
<elia>
also there's so much stuff coming with html5
<ryanstout>
yea
<ryanstout>
the persistor api is fairly straight forward, just needs some docs
<elia>
yep, also I need to understand how a reactive value and a model are related/nested and how they interact
<ryanstout>
yea, I should document that
<ryanstout>
basically, all collections should be wrapped in a reactive value, so the event tracking works
<ryanstout>
any class can include ReactiveTags and then can trigger its own events, so the models themselves trigger changed events when data changes, and that gets passed up to the ReactiveValue's that the user actually listens on
<ryanstout>
elia: if your localstore works, feel free to send a PR :-)
<elia>
it doesnt :(
<ryanstout>
tomorrows booked for me, but maybe on Friday I can document how to create your own