118 lines
4.8 KiB
JavaScript
118 lines
4.8 KiB
JavaScript
/* eslint-disable jsx-a11y/no-href*/
|
|
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { BrowserRouter as Router, Switch, Route } from 'react-router-dom';
|
|
import { Grid, Alert, Button } from 'react-bootstrap';
|
|
import { Meteor } from 'meteor/meteor';
|
|
import { createContainer } from 'meteor/react-meteor-data';
|
|
import { Roles } from 'meteor/alanning:roles';
|
|
import { Bert } from 'meteor/themeteorchef:bert';
|
|
import Navigation from '../../components/Navigation/Navigation';
|
|
import Authenticated from '../../components/Authenticated/Authenticated';
|
|
import Public from '../../components/Public/Public';
|
|
import Index from '../../pages/Index/Index';
|
|
import Documents from '../../pages/Documents/Documents';
|
|
import NewDocument from '../../pages/NewDocument/NewDocument';
|
|
import ViewDocument from '../../pages/ViewDocument/ViewDocument';
|
|
import EditDocument from '../../pages/EditDocument/EditDocument';
|
|
import Signup from '../../pages/Signup/Signup';
|
|
import Login from '../../pages/Login/Login';
|
|
import Logout from '../../pages/Logout/Logout';
|
|
import VerifyEmail from '../../pages/VerifyEmail/VerifyEmail';
|
|
import RecoverPassword from '../../pages/RecoverPassword/RecoverPassword';
|
|
import ResetPassword from '../../pages/ResetPassword/ResetPassword';
|
|
import Profile from '../../pages/Profile/Profile';
|
|
import NotFound from '../../pages/NotFound/NotFound';
|
|
import Footer from '../../components/Footer/Footer';
|
|
import Terms from '../../pages/Terms/Terms';
|
|
import Privacy from '../../pages/Privacy/Privacy';
|
|
import License from '../../pages/License/License';
|
|
// i18n
|
|
import { I18nextProvider } from 'react-i18next';
|
|
import i18n from '/imports/startup/client/i18n';
|
|
//https://react.i18next.com/components/i18nextprovider.html
|
|
|
|
|
|
import './App.scss';
|
|
|
|
const handleResendVerificationEmail = (emailAddress) => {
|
|
Meteor.call('users.sendVerificationEmail', (error) => {
|
|
if (error) {
|
|
Bert.alert(error.reason, 'danger');
|
|
} else {
|
|
Bert.alert(`Check ${emailAddress} for a verification link!`, 'success');
|
|
}
|
|
});
|
|
};
|
|
|
|
|
|
|
|
const App = props => (
|
|
<I18nextProvider i18n={i18n}>
|
|
<Router>
|
|
{!props.loading ? <div className="App">
|
|
{props.userId && !props.emailVerified ? <Alert className="verify-email text-center"><p>Hey friend! Can you <strong>verify your email address</strong> ({props.emailAddress}) for us? <Button bsStyle="link" onClick={() => handleResendVerificationEmail(props.emailAddress)} href="#">Re-send verification email</Button></p></Alert> : ''}
|
|
<Navigation {...props} />
|
|
<Grid> {/* bsClass="previously-container-but-disabled" > */}
|
|
<Switch>
|
|
<Route exact name="index" path="/" component={Index} />
|
|
<Authenticated exact path="/documents" component={Documents} {...props} />
|
|
<Authenticated exact path="/documents/new" component={NewDocument} {...props} />
|
|
<Authenticated exact path="/documents/:_id" component={ViewDocument} {...props} />
|
|
<Authenticated exact path="/documents/:_id/edit" component={EditDocument} {...props} />
|
|
<Authenticated exact path="/profile" component={Profile} {...props} />
|
|
<Public path="/signup" component={Signup} {...props} />
|
|
<Public path="/login" component={Login} {...props} />
|
|
<Route path="/logout" component={Logout} {...props} />
|
|
<Route name="verify-email" path="/verify-email/:token" component={VerifyEmail} />
|
|
<Route name="recover-password" path="/recover-password" component={RecoverPassword} />
|
|
<Route name="reset-password" path="/reset-password/:token" component={ResetPassword} />
|
|
<Route name="terms" path="/terms" component={Terms} />
|
|
<Route name="privacy" path="/privacy" component={Privacy} />
|
|
<Route name="license" path="/license" component={License} />
|
|
<Route component={NotFound} />
|
|
</Switch>
|
|
</Grid>
|
|
<Footer />
|
|
</div> : ''}
|
|
</Router>
|
|
</I18nextProvider>
|
|
);
|
|
|
|
App.defaultProps = {
|
|
userId: '',
|
|
emailAddress: '',
|
|
};
|
|
|
|
App.propTypes = {
|
|
loading: PropTypes.bool.isRequired,
|
|
userId: PropTypes.string,
|
|
emailAddress: PropTypes.string,
|
|
emailVerified: PropTypes.bool.isRequired,
|
|
};
|
|
|
|
const getUserName = name => ({
|
|
string: name,
|
|
object: `${name.first} ${name.last}`,
|
|
}[typeof name]);
|
|
|
|
export default createContainer(() => {
|
|
const loggingIn = Meteor.loggingIn();
|
|
const user = Meteor.user();
|
|
const userId = Meteor.userId();
|
|
const loading = !Roles.subscription.ready();
|
|
const name = user && user.profile && user.profile.name && getUserName(user.profile.name);
|
|
const emailAddress = user && user.emails && user.emails[0].address;
|
|
|
|
return {
|
|
loading,
|
|
loggingIn,
|
|
authenticated: !loggingIn && !!userId,
|
|
name: name || emailAddress,
|
|
roles: !loading && Roles.getRolesForUser(userId),
|
|
userId,
|
|
emailAddress,
|
|
emailVerified: user && user.emails ? user && user.emails && user.emails[0].verified : true,
|
|
};
|
|
}, App);
|