coflux

0.2.1 • Public • Published

coflux

Flux at the Component Level.

CircleCI npm version

App state is simply a dependency of your components. Coflux was built to make your components define it's own dependencies, and handle it's own UI and actions. This steals from some ideas of Redux with a different implementation and brings new performance benefits previously not possible.

Documentation

Example

// app.js
 
import { Provider } from 'coflux';
import User from '../User';
 
const defaultStore = {
  user: {
    firstName: 'foo',
    lastName: 'bar',
    id: 123,
    loggedIn: true,
  },
};
 
ReactDOM.render(
  <Provider store={defaultStore}>
    <User />
  </Provider>,
  domNode
);
// User.js
import { wrap } from 'coflux';
 
function User({firstName, lastName, actions}) {
  return (
    <div>
      <div>{firstName} {lastName}</div>;
      <button onClick={actions.logOut}>Log Out</button>
    </div>
  );
}
 
export default wrap(UserComponent, {
  mapStateToProps() {
    return {
      firstName: 'user.firstName',
      lastName: 'user.lastName',
      id: 'user.id',
      loggedIn: 'user.loggedIn',
    };
  },
 
  actions: {
    logOut(props, next) {
      asyncActionToLogOut(props.id).then(response => {
        next({loggedIn: false});
      });
    },
  },
});

Roadmap

Not particularily in execution order..

  1. Middleware support (#1)
  2. BabelPlugin for masking _ prop api. (#2)
  3. BabelPlugin for infering store structure. (#3)
  4. DevTooling (#4)

Readme

Keywords

none

Package Sidebar

Install

npm i coflux

Weekly Downloads

1

Version

0.2.1

License

MIT

Last publish

Collaborators

  • blainekasten