49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { connect } from 'react-redux';
|
|
|
|
import { Route, Redirect, withRouter } from 'react-router-dom';
|
|
|
|
|
|
class PrivateRoute extends Component {
|
|
|
|
render() {
|
|
return (
|
|
!this.props.progress ?
|
|
<Route
|
|
{...this.props.exact}
|
|
render={({ location }) =>
|
|
this.props.isAuthenticated &&
|
|
this.props.user &&
|
|
this.props.user.blocklyRole !== 'user' ? (
|
|
this.props.children
|
|
) : (()=>{
|
|
return (
|
|
<Redirect
|
|
to={{
|
|
pathname: "/",
|
|
state: { from: location }
|
|
}}
|
|
/>
|
|
)
|
|
})()
|
|
}
|
|
/> : null
|
|
);
|
|
}
|
|
}
|
|
|
|
PrivateRoute.propTypes = {
|
|
isAuthenticated: PropTypes.bool.isRequired,
|
|
user: PropTypes.object,
|
|
progress: PropTypes.bool.isRequired
|
|
};
|
|
|
|
const mapStateToProps = state => ({
|
|
isAuthenticated: state.auth.isAuthenticated,
|
|
user: state.auth.user,
|
|
progress: state.auth.progress
|
|
});
|
|
|
|
export default connect(mapStateToProps, null)(withRouter(PrivateRoute));
|