esp8266-react-framework/interface/src/authentication/AuthenticatedRoute.js

37 lines
965 B
JavaScript
Raw Normal View History

2019-05-14 21:47:04 +00:00
import * as React from 'react';
import {
Redirect, Route
} from "react-router-dom";
import { withAuthenticationContext } from './Context.js';
import * as Authentication from './Authentication';
import { withSnackbar } from 'notistack';
2019-05-14 21:47:04 +00:00
export class AuthenticatedRoute extends React.Component {
render() {
const { enqueueSnackbar, authenticationContext, component: Component, ...rest } = this.props;
2019-05-14 21:47:04 +00:00
const { location } = this.props;
const renderComponent = (props) => {
if (authenticationContext.isAuthenticated()) {
2019-05-14 21:47:04 +00:00
return (
<Component {...props} />
);
}
Authentication.storeLoginRedirect(location);
enqueueSnackbar("Please log in to continue.", {
variant: 'info',
});
2019-05-14 21:47:04 +00:00
return (
<Redirect to='/' />
);
}
return (
<Route {...rest} render={renderComponent} />
);
}
}
export default withSnackbar(withAuthenticationContext(AuthenticatedRoute));