GithubHelp home page GithubHelp logo

meteor-statemachine's Introduction

meteor-statemachine

StateMachine.js packaged for meteor

See https://github.com/jakesgordon/javascript-state-machine and http://codeincomplete.com/posts/2014/3/15/javascript_state_machine_v2_3_0/

exposes StateMachine as a global variable on both client and server

simple example based on a observe query

Meteor.startup(function () {
    var fruitEvents = [
        { name: 'eat',  from: 'start',  to: 'finished' },
        { name: 'fail', from: '*', to: 'failed'  }
    ];

    var fruitCallbacks = {
        oneat: function(event, from, to, fruit) {
            Fruit.update(fruit._id, {$set: {
                'state':to
            }});
        },
        onfail: function(event, from, to, fruit) {
            Fruit.update(fruit._id, {$set: {
                'state':to
            }});
        }
    };

    var fruitStateMachine = function(fruit){
        var stateMachine = StateMachine.create({
            initial: fruit.state,
            events: fruitEvents,
            callbacks: fruitCallbacks
        });
        switch (fruit.state) {
            case "start":
                <do something>
                stateMachine.eat(fruit);
                break;
        }
    };

    Fruit.find({'state': 'start'}).observe({
        added: fruitStateMachine
    });
});

meteor-statemachine's People

Contributors

mgebundy avatar nate-strauser avatar

Watchers

 avatar

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.