npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cerebral-react-baobab

v0.4.0

Published

A Cerebral package for React and Baobab

Downloads

13

Readme

cerebral-react-baobab

A Cerebral package with React and Baobab

WARNING!

This package uses the DEV version of Baboab V2, which will soon be released.

Requirements

It is required that you use a Webpack or Browserify setup. Read more at The ultimate webpack setup for an example.

Debugger

You can download the Chrome debugger here.

More info on Cerebral and video introduction

Cerebral main repo is located here and a video demonstration can be found here.

Video introduction

Watch a video on how you can use this package. Note! Video is for the cerebral-react-immutable-store, just ignore the immutable-store specific stuff ;-)

Install

npm install cerebral-react-baobab

API

All examples are shown with ES6 syntax.

Instantiate a Cerebral controller

controller.js

import Controller from 'cerebral-react-baobab';
import request from 'superagent';

// The initial state of the application
const state = {
  isLoading: false,
  user: null,
  error: null
};

// Any default input you want each action to receive
const defaultInput = {
  utils: {
    request: request
  }
};

// Baobab options
const options = {
  validate: function () {}
};

// Instantiate the controller
export default Controller(state, defaultInput, options);

main.js

import React from 'react';
import AppComponent from './AppComponent.js';
import controller from './controller.js';

React.render(controller.injectInto(AppComponent), document.body);

With Baobab you can also use facets. Read more about that here.

Creating signals

Creating actions are generic. It works the same way across all packages. Please read about actions at the Cerebral Repo - Actions. You can also watch a video on signals to get an overview of how it works.

Typically you would create your signals in the main.js file, but you can split them out as you see fit.

main.js

import React from 'react';
import AppComponent from './AppComponent.js';
import controller from './controller.js';

import setLoading from './actions/setLoading.js';
import saveForm from './actions/saveForm.js';
import unsetLoading from './actions/unsetLoading.js';

controller.signal('formSubmitted', setLoading, [saveForm], unsetLoading);

React.render(controller.injectInto(AppComponent), document.body);

Get state in components

Decorator

import React from 'react';
import {Decorator as Cerebral} from 'cerebral-react-baobab';

@Cerebral({
  isLoading: ['isLoading'],
  user: ['user'],
  error: ['error']  
})
class App extends React.Component {
  componentDidMount() {
    this.props.signals.appMounted();
  }
  render() {
    return (
      <div>
        {this.props.isLoading ? 'Loading...' : 'hello ' + this.props.user.name}
        {this.props.error ? this.props.error : null}
      </div>
    );
  }
}

Higher Order Component

import React from 'react';
import {HOC} from 'cerebral-react-baobab';

class App extends React.Component {
  componentDidMount() {
    this.props.signals.appMounted();
  }
  render() {
    return (
      <div>
        {this.props.isLoading ? 'Loading...' : 'hello ' + this.props.user.name}
        {this.props.error ? this.props.error : null}
      </div>
    );
  }
}

App = HOC(App, {
  isLoading: ['isLoading'],
  user: ['user'],
  error: ['error']  
});

Mixin

import React from 'react';
import {Mixin} from 'cerebral-react-baobab';

const App = React.createClass({
  mixins: [Mixin],
  getStatePaths() {
    return {
      isLoading: ['isLoading'],
      user: ['user'],
      error: ['error']  
    };
  },
  componentDidMount() {
    this.props.signals.appMounted();
  },
  render() {
    return (
      <div>
        {this.state.isLoading ? 'Loading...' : 'hello ' + this.state.user.name}
        {this.state.error ? this.state.error : null}
      </div>
    );
  }
});

Recording

import React from 'react';
import {Decorator as Cerebral} from 'cerebral-react-baobab';

@Cerebral()
class App extends React.Component {
  record() {
    this.props.recorder.record();
  }
  record() {
    this.props.recorder.stop();
  }
  play() {
    this.props.recorder.seek(0, true);
  }
  render() {
    return (
      <div>
        <button onClick={() => this.record()}>Record</button>
        <button onClick={() => this.stop()}>Stop</button>
        <button onClick={() => this.play()}>Play</button>
      </div>
    );
  }
}

Listening to changes

You can manually listen to changes on the controller, in case you want to explore reactive-router for example.

main.js

...
const onChange = function (state) {
  state // New state
};
controller.eventEmitter.on('change', onChange);
controller.eventEmitter.removeListener('change', onChange);

Listening to errors

You can listen to errors in the controller. Now, Cerebral helps you a lot to avoid errors, but there are probably scenarios you did not consider. By using the error event you can indicate messages to the user and pass these detailed error messages to a backend service. This lets you quickly fix bugs in production.

main.js

...
const onError = function (error) {
  controller.signals.errorOccured({error: error.message});
  myErrorService.post(error);
};
controller.eventEmitter.on('error', onError);