Files
SCM-Manager/scm-ui/src/containers/App.js

83 lines
1.8 KiB
JavaScript
Raw Normal View History

import React, { Component } from "react";
import Main from "./Main";
2018-07-09 11:38:13 +02:00
import { connect } from "react-redux";
import { translate } from "react-i18next";
import { withRouter } from "react-router-dom";
2018-07-13 10:57:11 +02:00
import { fetchMe } from "../modules/auth";
2018-07-11 14:59:01 +02:00
import "./App.css";
2018-07-25 14:29:43 +02:00
import "../components/modals/ConfirmAlert.css";
import { PrimaryNavigation } from "../components/navigation";
2018-07-11 21:01:29 +02:00
import Loading from "../components/Loading";
2018-07-12 12:57:23 +02:00
import ErrorPage from "../components/ErrorPage";
2018-07-25 14:29:43 +02:00
import { Footer, Header } from "../components/layout";
2018-07-11 14:59:01 +02:00
type Props = {
2018-07-24 17:05:38 +02:00
me: Me,
2018-07-11 22:01:36 +02:00
error: Error,
loading: boolean,
2018-07-13 10:57:11 +02:00
authenticated?: boolean,
t: string => string,
2018-07-13 10:57:11 +02:00
fetchMe: () => void
2018-07-05 16:48:56 +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
}
render() {
2018-07-24 17:05:38 +02:00
const { me, loading, error, authenticated, t } = this.props;
2018-07-11 14:59:01 +02:00
let content;
2018-07-13 10:57:11 +02:00
const navigation = authenticated ? <PrimaryNavigation /> : "";
2018-07-11 14:59:01 +02:00
if (loading) {
content = <Loading />;
2018-07-11 22:01:36 +02:00
} else if (error) {
2018-07-12 12:57:23 +02:00
content = (
<ErrorPage
title={t("app.error.title")}
subtitle={t("app.error.subtitle")}
2018-07-12 12:57:23 +02:00
error={error}
/>
);
2018-07-05 16:48:56 +02:00
} else {
2018-07-13 10:57:11 +02:00
content = <Main authenticated={authenticated} />;
2018-07-05 16:48:56 +02:00
}
2018-07-11 14:59:01 +02:00
return (
<div className="App">
<Header>{navigation}</Header>
{content}
2018-07-24 17:05:38 +02:00
<Footer me={me} />
2018-07-11 14:59:01 +02:00
</div>
);
}
}
2018-07-13 10:57:11 +02:00
const mapDispatchToProps = (dispatch: any) => {
2018-07-09 11:38:13 +02:00
return {
2018-07-13 10:57:11 +02:00
fetchMe: () => dispatch(fetchMe())
2018-07-09 11:38:13 +02:00
};
};
const mapStateToProps = state => {
2018-07-13 10:57:11 +02:00
let mapped = state.auth.me || {};
2018-07-24 17:05:38 +02:00
2018-07-13 10:57:11 +02:00
if (state.auth.login) {
mapped.authenticated = state.auth.login.authenticated;
}
2018-07-24 17:05:38 +02:00
2018-07-24 13:02:50 +02:00
return {
...mapped,
2018-07-24 17:05:38 +02:00
me: mapped.entry
2018-07-24 13:02:50 +02:00
};
2018-07-09 11:38:13 +02:00
};
export default withRouter(
connect(
mapStateToProps,
mapDispatchToProps
)(translate("commons")(App))
2018-07-09 11:38:13 +02:00
);