cartiv

0.2.1 • Public • Published

cartiv logo

NPM Version Build Status

making Flux look as pretty as React

Cartiv provides the simplest flux experience around. It is reactive like a react component, and have similar api, so if you know react - you'll understand this immediately. No annoying boilerplate and repetitions, better separation of concerns, and above all - it is simple and fun. Just try and you will see!

Simplest usage

All you need is three files - react component connected to (\controlled by) a store and speaks with it via api

/**** ./api.js ****/
import {createAPI} from 'cartiv';
export default createAPI();
 
 
/**** ./stores/TextStore.js ****/
import {createStore} from 'cartiv';
import api from '../api';
 
export default createStore({api, name: 'text'}, {
  getInitialState(){
   return { title: 'Use Cartiv!', text: "It's the simplest flux you'll find"};
  },
  onChange(text){
   this.setState({text}); //setState... in a store!
  },  
  
});
 
 
/**** ./component/SimpleComp.js ****/
import textStore from '../stores/TextStore';
import api from '../api';
import {createConnector} from 'cartiv';
const connect = createConnector(React);
 
@connect(textStore) //connect to states from store
class SimpleComp extends Component { ...
  onChange(e) { api.text.onChange(e.target.value) } //use the store's API
  render() {
    let {text, title} = this.state; //free magical state from the store
    return (
      <div>
        <h3>{title}</h3>
        <input onChange={this.onChange} value={text} />
      <div>
    );
  }
});

full usage

About Cartiv

Simple

The goal of this library is to provide the easiest and simplest Flux experience, based on the the knowledge the react community has gained using older flux frameworks - Alt, Reflux and Redux. In Cartiv there are only Stores, Components and simple API object to communicate between them (forget about reducers, dispatchers, switch statements, global constants, action-creators etc). And yes, simplicity comes together with scalability and flexibility!

Reactive like React

Cartiv wishes to provide a fully reactive paradigm, while maintaining an API that is close as possible to React's API. React has managed to control the DOM from its components in an elegant and efficient way, using state, props and events for interactivity. Cartiv uses the same logic and language, to gain control of Components from Stores, with onSmthng events, setState() and other similar methods. React component is "functional and reactive" - component(state) => view (view is the outcome of the render function. if stateA === stateB, than the view will be also the same) . Cartiv works the same way - store(state) => [component.state =>] view. This FRP approach makes the implementation of time-travel and other cool things really simple.

separation of concerns

The third polar of Cartiv's architecture is a correct separation of concerns - while in most flux implementations react components are structured in a hierarchical way, with parents and children, we believe that the view should be flat!. Every Component is on the same level (data wise), and then it is free to be moved around, without being dependent on its parent. Secondly, the view should not control the state of the app, it can call an event, that will eventually do something, but how or when - it's not the view's responsibility.

architecture

cartiv architecture

Think about how a React component works:

var SimpleComp = React.createClass({
  getInitialState() {
    return {text: ''};
  },
  onChange(e) {
    this.setState({text: e.target.value});
    // this is changing the state of the component. 
    // Whether it will affect any HTML elements or not is not important here. 
  },
  render() {
    return (
      <div>
        <h3>APP</h3>
          <input onChange={this.onChange} value={this.state.text} />
          // before react, input had inner state. React grabbed that away from him to the component level
          // so now input is "controlled" (value=), 
          // and it can only call an action (onChange) hoping it will change its controlled state
        <div>
        // notice that input's value is not dependent on any of its parents, 
        // you can just copy-paste it anywhere
        </div>
      </div>
    );
  }
});

Cartiv works the same way:

  • taking the inner state of Components away (effectively creating state-less components)
  • connecting the component's state to a state in a Store
  • the Store is unaware to compoenents, but it will listen to some events (actions)
  • all actions are registered in one (or more) API object.
  • Component can only call an action through the API object, and then (maybe) the store will change its own state
  • auto-magically every component listening to the store will get the new state

Full Usage

$npm install cartiv --save

First - create an API :

import {createAPI} from 'cartiv';
let API = createAPI();
export default API;

Then, create a store:

import {createStore} from 'cartiv';
import API from './Api';
 
let textStore = createStore(
  { 
    /* this is the store config: */
    api: API, // listen to actions coming from api
    name: 'text', // actions under 'text' property, e.g: api.text.onAction
    
    // config.actions is optional, 
    // when not provided, all methods starting with 'on' will get called
    <!--actions-->
     
    // config.actions can either be an array of strings or a filter function. 
    actions: ['onChange', 'onSomethingElse'], // specify methods that will get called when equivalent action triggered
    actions: function(action){return action.indexOf('get') > -1} //custom filter function 
    
    // config.syncActions is optional, 
    // when not provided, all methods starting with 'on' and ending with 'Sync' will get called synchronously
    <!--syncActions-->
     
    // config.syncActions can either be an array of strings or a filter function. 
    syncActions: ['onChangeSomething', 'onSomethingElse'], // specify methods that will get called when equivalent action triggered
    syncActions: function(action){return action.indexOf('get') > -1} //custom filter function 
    // note that async (named or filtered) will override sync in case of conflict    
  }, 
  {
    /* this is the store definition: */
    getInitialState(){ // same as React!
      return {
        text: 'Use Cartiv!',
        }
    },
    
    onChange(textFromAction){
      this.setState({text: textFromAction}); // same as React! 
      // setState changes the store state. Instead of `rendering` like react - this will `control` 
      // every connected component, that in turn will re-render
    },
    
    //async is easily done:
    onGetDataFromServer(){
      ajax.get(url).then((response)=>{
        this.setState({serverData: response}); //when it'll be available, it will auto change every connected component
      })
    },
    
    storeDidUpdate(prevState){ // same as React!
      if(this.state.text !== prevState.text){console.log('text has changed'); }
    } 
  });
  
  createStore.allowHMR(module, textStore); //if you want to use webpack's hot-module-replacement 
  export default textStore;
 

Lastly, connect the component to the store:

import {connect} from 'cartiv';
import textStore from '../stores/textStore';
import API from '../stores/Api';
 
var SimpleComp = React.createClass({
  mixins:[
    connect(
      textStore, // connect to the state of this Cartiv store
      'text', // optional - connect only to this property of store's state. 
              // if not specified it will connect to all of the store's state
              // more options: 
              // {text: inputText} // key is the state in store, val is the new name it will get in this component
              // [{text: inputText}, 'someOtherState'...] //mixed list of previous options
      'someName' // optional -  the state will be available under this property. e.g: this.state.someName.text
    ),
     connect(otherStore, ['dogs', {cats: 'kittens'}]),
     connect(thirdStore) // connect to every state of this store
  ], 
  componentWillMount(){
    API.text.onGetDataFromServer();
  }
  onChange(e) {
    //this.setState({text: e.target.value});  //we don't use inner state any more
    API.text.onChange(e.target.value)
  },
  render() {
    return (
      <div>
        <h3>APP</h3>
        <input onChange={this.onChange} value={this.state.text} />
        //nothing changed here!
      <div>
    );
  }
});

If you are using react es6 classes, connect with es7 decorators */

import {createConnector} from 'cartiv';
const connect = createConnector(React);
 
//@viewPortDecorator // make sure other decorators that returns a Component (usually those who provide props) are above `connect` (since it controls state).
@connect(textStore) //same signature as the mixin one
@connect(otherStore, ['dogs', {'cats' : 'kittens'}])
//@autobind //other decorators could be anywhere
class SimpleComp extends Component { ...

todoMVC example (copied from Redux repo, removed all the unnecessary parts and now it's Cartiv!)

Can you get any simpler?

(if you think you can - tell me your ideas - Cartiv is still young, and open for any thing that will help building react apps in the simplest possible way)

What's the meaning of the name?

Cartiv sort of sounds like React + reactive. In Hebrew it means popcicle - which is just simple fun and cool, like this library!

Wath's next
  • Adding cartiv-history component for development, easy time travel through the history of the stores' states (state history actions history!)
  • Boilerplate of Cartiv + server - adding connect to server from store with sockects (Meteorizing react! yay!)

acknowledgments

The internals of this library are based on reflux-core. This guarantees the stability of a mature framework with this new interface. I thank @spoike and the rest of the reflux community.

Special thanks to Yoni Levi for the logo's design

Cartiv has began as a mixin for reflux, that succeeded quite well. Later this was titled as a specification called super simple flux.

I've found out that Cartiv shares many ideas with om. great library, take a look.

Package Sidebar

Install

npm i cartiv

Weekly Downloads

1

Version

0.2.1

License

ISC

Last publish

Collaborators

  • yonatanmn