saleor-dashboard/src/storybook/stories/home/HomePage.tsx
Michał Droń d5c9a3dae8
Add trailing commas (#2062)
* Require trailing commas

* Add trailing commas

* Add trailing commas in testUtils dir

* Add trailing commas
2022-06-21 11:36:55 +02:00

80 lines
2.4 KiB
TypeScript

import placeholderImage from "@assets/images/placeholder60x60.png";
import { adminUserPermissions } from "@saleor/fixtures";
import { PermissionEnum } from "@saleor/graphql";
import { mapEdgesToItems } from "@saleor/utils/maps";
import { storiesOf } from "@storybook/react";
import React from "react";
import HomePageComponent, {
HomePageProps,
} from "../../../home/components/HomePage";
import { shop as shopFixture } from "../../../home/fixtures";
import Decorator from "../../Decorator";
import { MockedUserProvider } from "../customers/MockedUserProvider";
const shop = shopFixture(placeholderImage);
const homePageProps: Omit<HomePageProps, "classes"> = {
activities: mapEdgesToItems(shop.activities),
noChannel: false,
createNewChannelHref: "",
ordersToFulfillHref: "",
ordersToCaptureHref: "",
productsOutOfStockHref: "",
orders: shop.ordersToday.totalCount,
ordersToCapture: shop.ordersToCapture.totalCount,
ordersToFulfill: shop.ordersToFulfill.totalCount,
productsOutOfStock: shop.productsOutOfStock.totalCount,
sales: shop.salesToday.gross,
topProducts: mapEdgesToItems(shop.productTopToday),
userName: "admin@example.com",
};
const HomePage = props => {
const customPermissions = props?.customPermissions;
return (
<MockedUserProvider customPermissions={customPermissions}>
<HomePageComponent {...props} />
</MockedUserProvider>
);
};
storiesOf("Views / HomePage", module)
.addDecorator(Decorator)
.add("default", () => <HomePage {...homePageProps} />)
.add("loading", () => (
<HomePage
{...homePageProps}
activities={undefined}
orders={undefined}
ordersToCapture={undefined}
ordersToFulfill={undefined}
productsOutOfStock={undefined}
sales={undefined}
topProducts={undefined}
userName={undefined}
/>
))
.add("no data", () => (
<HomePage {...homePageProps} topProducts={[]} activities={[]} />
))
.add("no permissions", () => (
<HomePage {...homePageProps} customPermissions={[]} />
))
.add("product permissions", () => (
<HomePage
{...homePageProps}
customPermissions={adminUserPermissions.filter(
perm => perm.code === PermissionEnum.MANAGE_PRODUCTS,
)}
/>
))
.add("order permissions", () => (
<HomePage
{...homePageProps}
customPermissions={adminUserPermissions.filter(
perm => perm.code === PermissionEnum.MANAGE_ORDERS,
)}
/>
));