import React, { Component, PropTypes } from "react"; import { connect } from "react-redux"; // TODO: Handle expired session export class RequireAuthentication extends Component { componentWillMount () { this.checkAuth(this.props.isAuthenticated); } componentWillUpdate (newProps) { this.checkAuth(newProps.isAuthenticated); } checkAuth (isAuthenticated) { if (!isAuthenticated) { this.context.router.replace({ pathname: "/login", state: { nextPathname: this.props.location.pathname, nextQuery: this.props.location.query } }); } } render () { return (