Giter Club home page Giter Club logo

Comments (2)

Rich-Harris avatar Rich-Harris commented on July 2, 2024

Thanks man! I've got you covered! You need to use computed values:

state = new Statesman({ todos: todos });

state.compute( 'completed_todos', {
  trigger: 'todos',
  fn: function ( todos ) {
    return todos.filter( function ( t ) { return t.completed; })
  }
});

state.observe( 'completed_todos.length', function ( num ) {
  alert( num + ' todos completed' );
}, true ); // passing in true here means it fires straight away rather than waiting for a change

I thought about doing some kind of wildcard/regex-based observers, but eventually decided against it because it would mean that whenever any part of the model changed, all the wildcard patterns would need to be tested (as opposed to just doing property lookups, as at present) which could get slow with a complex model. All of the things I could think of wanting to do with wildcards can be done with computed values, and I believe it's more efficient that way.

I hadn't seen dotty, will check it out, cheers.

Yeah, this is a better tool for overall state management than Anglebars - an Anglebars instance is only really concerned with its own state, whereas this is designed to be central to an app. Of course, you can bind the two together with e.g.

state.observe( 'todos', function ( todos ) {
  anglebars.set( 'todos', todos );
}, true );

(I might come up with a neater syntax for combining the two but don't really know if it's worth it.)

from statesman.

1N50MN14 avatar 1N50MN14 commented on July 2, 2024

Ah you make valid points! and yeah, not worth the effort combining the two.

PS: I good some goodies coming your way over the weekend :-)

from statesman.

Related Issues (10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.