Giter Site home page Giter Site logo

Revise API? about refluxjs HOT 4 CLOSED

reflux avatar reflux commented on September 13, 2024
Revise API?

from refluxjs.

Comments (4)

dashed avatar dashed commented on September 13, 2024

Usage with example from README:

var Reflux = require('Reflux');

/**
 * Actions
 */
var status = new Reflux.Actions(['update', 'edit', 'add']);

/**
 * Store
 */
var statusStore = new Reflux.Store();

statusStore.on(status.update, function(flag) {

    var status = flag ? 'ONLINE' : 'OFFLINE';

    this.done(status);
});

/**
 * Component
 */
var Status = React.createClass({
    initialize: function() { },
    onStatusChange: function(status) {
        this.setState({
            currentStatus: status
        });
    },
    componentDidMount: function() {
        this.unsubscribe = statusStore.listen(this.onStatusChange);
    },
    componentWillUnmount: function() {
        this.unsubscribe();
    },
    render: function() {
        // render specifics

        status.update(true);
    }
});

from refluxjs.

spoike avatar spoike commented on September 13, 2024

Yeah, second snippet of code now makes much more sense than the PR from earlier (i.e. #13).

I'd love it more if the on function in stores can accept other store's as well to be able to do the aggregate store story. I still see value in passing in a constructor object to Reflux.Store as in Reflux.createStore.

Also I believe we can add aliases if users find it more suitable to use Reflux.Store instead of Reflux.createStore, Reflux.Actions instead of Reflux.createActions, and Store.on instead of Store.listenTo.

I think it was a bit of a mistake to pass in an array to Reflux.createActions earlier when Reflux might as well can use the arguments object with strings instead. I.e. instead of:

var status = Reflux.Actions(["update", "edit", "add"]);

... it should be able to do the same like this:

var status = Reflux.Actions("update", "edit", "add");

from refluxjs.

dashed avatar dashed commented on September 13, 2024

on function in stores should already accept either action or stores. Same applies for dependencies.


Passing context object to Reflux.Store probably makes sense:

var obj = {};
obj.cowSound = 'moo';
obj.moo = function(some, args, done) {

    console.log(this.cowSound);

    done(result);
};


var statusStore = new Reflux.Store(obj);

statusStore.on(status.update, obj.moo);

Agreed that parameters shouldn't be an array.

from refluxjs.

vslinko avatar vslinko commented on September 13, 2024

👎

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.