Skip to content

react-components/react-loading-status-mixin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-loading-status-mixin

get the loading status of the component tree

Usage

var LoadingStatusMixin = require('react-loading-status-mixin');

React.createClass({
  mixins: [LoadingStatusMixin],
  componentWillMount: function() {
    var self = this;
    request.get('/api', function(res) {
      self.setState({data: res});

      // tell the mixin the component has loaded its data
      self.setIsLoaded(true);
    });
  },
  render: function() {
    // compute the className based on the loaded status
    var className = this.isLoaded() ? 'loaded' : 'loading';

    return (
      React.DOM.div({className: className})
    );
  }
});

API

setIsLoaded(isLoaded)

Set the loaded status for the component

isLoaded()

Get the loaded status for the component, including all of the children

About

get the loading status of the component tree

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published