2019-06-19 14:40:52 +00:00
|
|
|
import {
|
|
|
|
createStyles,
|
|
|
|
Theme,
|
|
|
|
withStyles,
|
|
|
|
WithStyles
|
|
|
|
} from "@material-ui/core/styles";
|
2019-08-09 10:26:22 +00:00
|
|
|
import React from "react";
|
2019-06-19 14:40:52 +00:00
|
|
|
|
|
|
|
import CardSpacer from "@saleor/components/CardSpacer";
|
|
|
|
import Container from "@saleor/components/Container";
|
|
|
|
import Grid from "@saleor/components/Grid";
|
|
|
|
import Money from "@saleor/components/Money";
|
|
|
|
import Skeleton from "@saleor/components/Skeleton";
|
|
|
|
import Orders from "../../../icons/Orders";
|
|
|
|
import Sales from "../../../icons/Sales";
|
|
|
|
import {
|
|
|
|
Home_activities_edges_node,
|
|
|
|
Home_productTopToday_edges_node,
|
|
|
|
Home_salesToday_gross
|
|
|
|
} from "../../types/Home";
|
|
|
|
import HomeActivityCard from "../HomeActivityCard";
|
|
|
|
import HomeAnalyticsCard from "../HomeAnalyticsCard";
|
|
|
|
import HomeHeader from "../HomeHeader";
|
|
|
|
import HomeNotificationTable from "../HomeNotificationTable/HomeNotificationTable";
|
|
|
|
import HomeProductListCard from "../HomeProductListCard";
|
|
|
|
|
|
|
|
const styles = (theme: Theme) =>
|
|
|
|
createStyles({
|
|
|
|
cardContainer: {
|
|
|
|
display: "grid",
|
|
|
|
gridColumnGap: `${theme.spacing.unit * 3}px`,
|
|
|
|
gridTemplateColumns: "1fr 1fr",
|
|
|
|
[theme.breakpoints.down("sm")]: {
|
|
|
|
gridColumnGap: `${theme.spacing.unit}px`
|
|
|
|
},
|
|
|
|
[theme.breakpoints.down("xs")]: {
|
|
|
|
gridTemplateColumns: "1fr"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export interface HomePageProps extends WithStyles<typeof styles> {
|
|
|
|
activities: Home_activities_edges_node[];
|
|
|
|
orders: number;
|
|
|
|
ordersToCapture: number;
|
|
|
|
ordersToFulfill: number;
|
|
|
|
productsOutOfStock: number;
|
|
|
|
sales: Home_salesToday_gross;
|
|
|
|
topProducts: Home_productTopToday_edges_node[];
|
|
|
|
userName: string;
|
|
|
|
onOrdersToCaptureClick: () => void;
|
|
|
|
onOrdersToFulfillClick: () => void;
|
|
|
|
onProductClick: (productId: string, variantId: string) => void;
|
|
|
|
onProductsOutOfStockClick: () => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
const HomePage = withStyles(styles, { name: "HomePage" })(
|
|
|
|
({
|
|
|
|
classes,
|
|
|
|
userName,
|
|
|
|
orders,
|
|
|
|
sales,
|
|
|
|
topProducts,
|
|
|
|
onProductClick,
|
|
|
|
activities,
|
|
|
|
onOrdersToCaptureClick,
|
|
|
|
onOrdersToFulfillClick,
|
|
|
|
onProductsOutOfStockClick,
|
|
|
|
ordersToCapture,
|
|
|
|
ordersToFulfill,
|
|
|
|
productsOutOfStock
|
|
|
|
}: HomePageProps) => (
|
|
|
|
<Container>
|
|
|
|
<HomeHeader userName={userName} />
|
|
|
|
<CardSpacer />
|
|
|
|
<Grid>
|
|
|
|
<div>
|
|
|
|
<div className={classes.cardContainer}>
|
|
|
|
<HomeAnalyticsCard
|
|
|
|
title={"Sales"}
|
2019-09-10 13:28:09 +00:00
|
|
|
icon={<Sales fontSize={"inherit"} viewBox="0 0 64 64" />}
|
2019-06-19 14:40:52 +00:00
|
|
|
>
|
|
|
|
{sales ? (
|
|
|
|
<Money money={sales} />
|
|
|
|
) : (
|
|
|
|
<Skeleton style={{ width: "5em" }} />
|
|
|
|
)}
|
|
|
|
</HomeAnalyticsCard>
|
|
|
|
<HomeAnalyticsCard
|
|
|
|
title={"Orders"}
|
2019-09-10 13:28:09 +00:00
|
|
|
icon={<Orders fontSize={"inherit"} viewBox="0 0 64 64" />}
|
2019-06-19 14:40:52 +00:00
|
|
|
>
|
|
|
|
{orders === undefined ? (
|
|
|
|
<Skeleton style={{ width: "5em" }} />
|
|
|
|
) : (
|
|
|
|
orders
|
|
|
|
)}
|
|
|
|
</HomeAnalyticsCard>
|
|
|
|
</div>
|
|
|
|
<HomeNotificationTable
|
|
|
|
onOrdersToCaptureClick={onOrdersToCaptureClick}
|
|
|
|
onOrdersToFulfillClick={onOrdersToFulfillClick}
|
|
|
|
onProductsOutOfStockClick={onProductsOutOfStockClick}
|
|
|
|
ordersToCapture={ordersToCapture}
|
|
|
|
ordersToFulfill={ordersToFulfill}
|
|
|
|
productsOutOfStock={productsOutOfStock}
|
|
|
|
/>
|
|
|
|
<CardSpacer />
|
|
|
|
<HomeProductListCard
|
|
|
|
onRowClick={onProductClick}
|
|
|
|
topProducts={topProducts}
|
|
|
|
/>
|
|
|
|
<CardSpacer />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<HomeActivityCard activities={activities} />
|
|
|
|
</div>
|
|
|
|
</Grid>
|
|
|
|
</Container>
|
|
|
|
)
|
|
|
|
);
|
|
|
|
HomePage.displayName = "HomePage";
|
|
|
|
export default HomePage;
|