What are the best practices for authorization checking prior to a component mounting?
I use react-router 1.x
Here are my routes
React.render((
  <Router history={History.createHistory()}>
    <Route path="/" component={Dashboard}></Route>
    <Route path="/login" component={LoginForm}></Route>
  </Router>
), document.body);
Here is my Dashboard component:
var Dashboard = React.createClass({
  componentWillMount: function () {
    // I want to check authorization here
    // If the user is not authorized they should be redirected to the login page.
    // What is the right way to perform this check?
  },
  render: function () {
    return (
      <h1>Welcome</h1>
    );
  }
});
 
     
     
     
    