GithubHelp home page GithubHelp logo

Still need waitFor? about refluxjs HOT 3 CLOSED

reflux avatar reflux commented on June 17, 2024
Still need waitFor?

from refluxjs.

Comments (3)

spoike avatar spoike commented on June 17, 2024

I still struggle with finding a motivating example for this functionality. I haven't run into this problem yet when dog fooding Reflux in my own project because the work around is to let lower-level store listen to other stores which turns out to be a much simpler solution. The lower-level store can get the raw action data (from e.g. ajax calls) if the higher-level store makes it accessible.

From my P.O.V. this seems to be a design consideration for the user's application rather than Reflux itself.

I'm open to suggestions with motivating examples from the community, so I know why this needs to be implemented.

from refluxjs.

dashed avatar dashed commented on June 17, 2024

I think something like waitFor is out of scope for this project and promises does this sort of thing well:

var Promise = require("bluebird");

var waitFor = function() {

    var last = arguments.length - 1,
        promises = [];

    for (var i = 0; i < last; ++i) {

        var listenable = arguments[i];

        var promise = new Promise(function(fulfill){
            listenable.listen(fulfill);
        });

        promises.push(promise);

    }

    promises.push(arguments[last]);

    Promise.join.apply(null, promises);

};

// Creates a DataStore
var statusStore = Reflux.createStore({

    // Initial setup
    init: function() {

        waitFor(action, store, anotherStore, anotherAction, this.output);
    },

    // Callback
    output: function(flag) {
        var status = flag ? 'ONLINE' : 'OFFLINE';

        // Pass on to listeners
        this.trigger(status);
    }

});

from refluxjs.

KyleAMathews avatar KyleAMathews commented on June 17, 2024

Very nice! I agree @spoike that generally speaking waitFor isn't needed and since @dashed was kind enough to contribute an easy promise-based solution, I'll close this.

from refluxjs.

Related Issues (20)

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.