2020-04-21 20:32:53 -07:00
|
|
|
import React from "react";
|
2020-07-31 23:10:34 -07:00
|
|
|
import { ApolloProvider } from "@apollo/client";
|
2020-09-02 03:06:09 -07:00
|
|
|
import { Auth0Provider } from "@auth0/auth0-react";
|
2020-09-07 21:11:10 -07:00
|
|
|
import { CSSReset, ChakraProvider } from "@chakra-ui/core";
|
2020-08-12 00:37:31 -07:00
|
|
|
import defaultTheme from "@chakra-ui/theme";
|
2020-09-15 05:35:01 -07:00
|
|
|
import {
|
|
|
|
BrowserRouter as Router,
|
|
|
|
Switch,
|
|
|
|
Route,
|
|
|
|
useLocation,
|
|
|
|
} from "react-router-dom";
|
2020-05-18 00:20:48 -07:00
|
|
|
import loadable from "@loadable/component";
|
2020-09-04 05:59:35 -07:00
|
|
|
import { useAuth0 } from "@auth0/auth0-react";
|
2020-04-21 17:49:52 -07:00
|
|
|
|
2020-09-04 05:59:35 -07:00
|
|
|
import buildApolloClient from "./apolloClient";
|
2020-09-06 18:12:34 -07:00
|
|
|
import PageLayout from "./PageLayout";
|
2020-09-10 02:54:22 -07:00
|
|
|
import WardrobePageLayout from "./WardrobePage/WardrobePageLayout";
|
2020-05-18 00:20:48 -07:00
|
|
|
|
|
|
|
const HomePage = loadable(() => import("./HomePage"));
|
2020-09-11 23:56:47 -07:00
|
|
|
const ItemPage = loadable(() => import("./ItemPage"));
|
2020-09-06 23:32:04 -07:00
|
|
|
const ModelingPage = loadable(() => import("./ModelingPage"));
|
2020-09-11 23:20:06 -07:00
|
|
|
const UserItemsPage = loadable(() => import("./UserItemsPage"));
|
2020-09-10 02:54:22 -07:00
|
|
|
const WardrobePage = loadable(() => import("./WardrobePage"), {
|
|
|
|
fallback: <WardrobePageLayout />,
|
|
|
|
});
|
2020-04-22 14:02:23 -07:00
|
|
|
|
2020-08-12 00:37:31 -07:00
|
|
|
const theme = {
|
|
|
|
...defaultTheme,
|
|
|
|
styles: {
|
|
|
|
...defaultTheme.styles,
|
2020-09-07 21:11:10 -07:00
|
|
|
global: ({ colorMode, ...rest }) => {
|
|
|
|
const defaultGlobals = defaultTheme.styles.global({ colorMode, ...rest });
|
|
|
|
return {
|
|
|
|
...defaultGlobals,
|
|
|
|
html: {
|
|
|
|
...defaultGlobals.html,
|
|
|
|
// HACK: Chakra sets body as the relative position element, which is
|
|
|
|
// fine, except its `min-height: 100%` doesn't actually work
|
|
|
|
// unless paired with height on the root element too!
|
|
|
|
height: "100%",
|
|
|
|
},
|
|
|
|
body: {
|
|
|
|
...defaultGlobals.body,
|
|
|
|
color: colorMode === "light" ? "green.800" : "green.50",
|
|
|
|
transition: "all 0.25s",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
2020-08-12 00:37:31 -07:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2020-04-25 23:55:39 -07:00
|
|
|
/**
|
|
|
|
* App is the entry point of our application. There's not a ton of exciting
|
|
|
|
* stuff happening here, mostly just setting up some globals and theming!
|
|
|
|
*
|
|
|
|
* To really dive into the code, try going down into a page component!
|
|
|
|
*/
|
2020-04-21 17:49:52 -07:00
|
|
|
function App() {
|
|
|
|
return (
|
2020-05-10 00:21:04 -07:00
|
|
|
<Router>
|
2020-09-15 05:35:01 -07:00
|
|
|
<ScrollToTop />
|
2020-09-02 03:06:09 -07:00
|
|
|
<Auth0Provider
|
|
|
|
domain="openneo.us.auth0.com"
|
|
|
|
clientId="8LjFauVox7shDxVufQqnviUIywMuuC4r"
|
|
|
|
redirectUri={window.location.origin}
|
2020-09-02 23:00:16 -07:00
|
|
|
audience="https://impress-2020.openneo.net/api"
|
|
|
|
scope=""
|
2020-09-02 03:06:09 -07:00
|
|
|
>
|
2020-09-04 05:59:35 -07:00
|
|
|
<ApolloProviderWithAuth0>
|
2020-09-02 03:06:09 -07:00
|
|
|
<ChakraProvider theme={theme}>
|
|
|
|
<CSSReset />
|
|
|
|
<Switch>
|
2020-09-11 23:56:47 -07:00
|
|
|
<Route path="/items/:itemId">
|
|
|
|
<PageLayout>
|
|
|
|
<ItemPage />
|
|
|
|
</PageLayout>
|
|
|
|
</Route>
|
2020-09-02 03:06:09 -07:00
|
|
|
<Route path="/outfits/new">
|
|
|
|
<WardrobePage />
|
|
|
|
</Route>
|
2020-09-04 05:59:35 -07:00
|
|
|
<Route path="/user/:userId/items">
|
2020-09-06 18:12:34 -07:00
|
|
|
<PageLayout>
|
2020-09-11 23:20:06 -07:00
|
|
|
<UserItemsPage />
|
2020-09-06 18:12:34 -07:00
|
|
|
</PageLayout>
|
2020-09-04 05:59:35 -07:00
|
|
|
</Route>
|
2020-09-06 23:32:04 -07:00
|
|
|
<Route path="/modeling">
|
|
|
|
<PageLayout>
|
|
|
|
<ModelingPage />
|
|
|
|
</PageLayout>
|
|
|
|
</Route>
|
2020-09-02 03:06:09 -07:00
|
|
|
<Route path="/">
|
2020-09-06 18:42:39 -07:00
|
|
|
<PageLayout hideHomeLink>
|
2020-09-06 18:12:34 -07:00
|
|
|
<HomePage />
|
|
|
|
</PageLayout>
|
2020-09-02 03:06:09 -07:00
|
|
|
</Route>
|
|
|
|
</Switch>
|
|
|
|
</ChakraProvider>
|
2020-09-04 05:59:35 -07:00
|
|
|
</ApolloProviderWithAuth0>
|
2020-09-02 03:06:09 -07:00
|
|
|
</Auth0Provider>
|
2020-05-10 00:21:04 -07:00
|
|
|
</Router>
|
2020-04-21 17:49:52 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-15 05:35:01 -07:00
|
|
|
/**
|
|
|
|
* ScrollToTop scrolls to the top of the page when you navigate.
|
|
|
|
* Copied from https://reactrouter.com/web/guides/scroll-restoration/scroll-to-top.
|
|
|
|
*/
|
|
|
|
function ScrollToTop() {
|
|
|
|
const { pathname } = useLocation();
|
|
|
|
React.useEffect(() => window.scrollTo(0, 0), [pathname]);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-09-04 05:59:35 -07:00
|
|
|
function ApolloProviderWithAuth0({ children }) {
|
|
|
|
const auth0 = useAuth0();
|
|
|
|
const auth0Ref = React.useRef(auth0);
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
auth0Ref.current = auth0;
|
|
|
|
}, [auth0]);
|
|
|
|
|
|
|
|
const client = React.useMemo(
|
|
|
|
() => buildApolloClient(() => auth0Ref.current),
|
|
|
|
[]
|
|
|
|
);
|
|
|
|
return <ApolloProvider client={client}>{children}</ApolloProvider>;
|
|
|
|
}
|
|
|
|
|
2020-04-21 17:49:52 -07:00
|
|
|
export default App;
|