2018-07-04 16:43:46 +02:00
|
|
|
import React, { Component } from "react";
|
2018-07-12 08:49:41 +02:00
|
|
|
import type { ThunkDispatch } from "redux-thunk";
|
2018-07-04 16:43:46 +02:00
|
|
|
import Main from "./Main";
|
|
|
|
|
import Login from "./Login";
|
2018-07-09 11:38:13 +02:00
|
|
|
import { connect } from "react-redux";
|
2018-07-04 16:43:46 +02:00
|
|
|
import { withRouter } from "react-router-dom";
|
2018-07-11 21:01:29 +02:00
|
|
|
import { fetchMe } from "../modules/me";
|
2018-07-12 11:33:41 +02:00
|
|
|
import { logout } from "../modules/auth";
|
2018-07-04 16:43:46 +02:00
|
|
|
|
2018-07-11 14:59:01 +02:00
|
|
|
import "./App.css";
|
|
|
|
|
import Header from "../components/Header";
|
|
|
|
|
import PrimaryNavigation from "../components/PrimaryNavigation";
|
2018-07-11 21:01:29 +02:00
|
|
|
import Loading from "../components/Loading";
|
2018-07-11 22:01:36 +02:00
|
|
|
import ErrorNotification from "../components/ErrorNotification";
|
2018-07-11 14:59:01 +02:00
|
|
|
|
2018-07-04 16:43:46 +02:00
|
|
|
type Props = {
|
2018-07-11 21:01:29 +02:00
|
|
|
me: any,
|
2018-07-11 22:01:36 +02:00
|
|
|
error: Error,
|
|
|
|
|
loading: boolean,
|
2018-07-12 11:33:41 +02:00
|
|
|
fetchMe: () => void,
|
|
|
|
|
logout: () => void
|
2018-07-05 16:48:56 +02:00
|
|
|
};
|
2018-07-04 16:43:46 +02:00
|
|
|
|
2018-07-11 12:02:53 +02:00
|
|
|
class App extends Component<Props> {
|
|
|
|
|
componentDidMount() {
|
2018-07-11 21:01:29 +02:00
|
|
|
this.props.fetchMe();
|
2018-07-09 11:38:13 +02:00
|
|
|
}
|
2018-07-12 11:33:41 +02:00
|
|
|
|
|
|
|
|
logout = () => {
|
|
|
|
|
this.props.logout();
|
|
|
|
|
};
|
|
|
|
|
|
2018-07-04 16:43:46 +02:00
|
|
|
render() {
|
2018-07-11 22:01:36 +02:00
|
|
|
const { me, loading, error } = this.props;
|
2018-07-11 14:59:01 +02:00
|
|
|
|
2018-07-12 08:23:24 +02:00
|
|
|
let content;
|
2018-07-11 14:59:01 +02:00
|
|
|
let navigation;
|
|
|
|
|
|
2018-07-11 12:02:53 +02:00
|
|
|
if (loading) {
|
2018-07-12 08:23:24 +02:00
|
|
|
content = <Loading />;
|
2018-07-11 22:01:36 +02:00
|
|
|
} else if (error) {
|
|
|
|
|
// TODO add error page instead of plain notification
|
2018-07-12 08:23:24 +02:00
|
|
|
content = <ErrorNotification error={error} />;
|
2018-07-11 21:01:29 +02:00
|
|
|
} else if (!me) {
|
2018-07-12 08:23:24 +02:00
|
|
|
content = <Login />;
|
2018-07-05 16:48:56 +02:00
|
|
|
} else {
|
2018-07-12 08:23:24 +02:00
|
|
|
content = <Main me={me} />;
|
2018-07-12 11:33:41 +02:00
|
|
|
navigation = <PrimaryNavigation onLogout={this.logout} />;
|
2018-07-05 16:48:56 +02:00
|
|
|
}
|
2018-07-11 14:59:01 +02:00
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="App">
|
|
|
|
|
<Header>{navigation}</Header>
|
2018-07-12 08:23:24 +02:00
|
|
|
{content}
|
2018-07-11 14:59:01 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
2018-07-04 16:43:46 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-11 17:02:38 +02:00
|
|
|
const mapDispatchToProps = (dispatch: ThunkDispatch) => {
|
2018-07-09 11:38:13 +02:00
|
|
|
return {
|
2018-07-12 11:33:41 +02:00
|
|
|
fetchMe: () => dispatch(fetchMe()),
|
|
|
|
|
logout: () => dispatch(logout())
|
2018-07-09 11:38:13 +02:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const mapStateToProps = state => {
|
2018-07-11 21:01:29 +02:00
|
|
|
return state.me || {};
|
2018-07-09 11:38:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default withRouter(
|
|
|
|
|
connect(
|
|
|
|
|
mapStateToProps,
|
|
|
|
|
mapDispatchToProps
|
|
|
|
|
)(App)
|
|
|
|
|
);
|