import { storiesOf } from "@storybook/react"; import React from "react"; import { DiscountErrorCode } from "@saleor/types/globalTypes"; import VoucherDetailsPage, { FormData, VoucherDetailsPageProps, VoucherDetailsPageTab } from "../../../discounts/components/VoucherDetailsPage"; import { voucherDetails } from "../../../discounts/fixtures"; import { listActionsProps, pageListProps } from "../../../fixtures"; import Decorator from "../../Decorator"; const props: VoucherDetailsPageProps = { ...listActionsProps, ...pageListProps.default, activeTab: VoucherDetailsPageTab.products, categoryListToolbar: null, collectionListToolbar: null, defaultCurrency: "USD", errors: [], onBack: () => undefined, onCategoryAssign: () => undefined, onCategoryClick: () => undefined, onCategoryUnassign: () => undefined, onCollectionAssign: () => undefined, onCollectionClick: () => undefined, onCollectionUnassign: () => undefined, onCountryAssign: () => undefined, onCountryUnassign: () => undefined, onProductAssign: () => undefined, onProductClick: () => undefined, onProductUnassign: () => undefined, onRemove: () => undefined, onSubmit: () => undefined, onTabClick: () => undefined, productListToolbar: null, saveButtonBarState: "default", voucher: voucherDetails }; storiesOf("Views / Discounts / Voucher details", module) .addDecorator(Decorator) .add("default", () => ) .add("loading", () => ( )) .add("form errors", () => ( ).map(field => ({ __typename: "DiscountError", code: DiscountErrorCode.INVALID, field }))} /> ));