import { saleList } from "@saleor/discounts/fixtures";
import { SaleListUrlSortField } from "@saleor/discounts/urls";
import {
filterPageProps,
listActionsProps,
pageListProps,
sortPageProps,
tabPageProps,
} from "@saleor/fixtures";
import { DiscountStatusEnum, DiscountValueTypeEnum } from "@saleor/graphql";
import Decorator from "@saleor/storybook/Decorator";
import { PaginatorContextDecorator } from "@saleor/storybook/PaginatorContextDecorator";
import { storiesOf } from "@storybook/react";
import React from "react";
import SaleListPage, { SaleListPageProps } from "./SaleListPage";
const props: SaleListPageProps = {
...listActionsProps,
...pageListProps.default,
...filterPageProps,
...sortPageProps,
...tabPageProps,
filterOpts: {
channel: {
active: false,
value: "default-channel",
choices: [
{
value: "default-channel",
label: "Default channel",
},
],
},
saleType: {
active: false,
value: DiscountValueTypeEnum.FIXED,
},
started: {
active: false,
value: {
max: undefined,
min: undefined,
},
},
status: {
active: false,
value: [DiscountStatusEnum.ACTIVE],
},
},
sales: saleList,
selectedChannelId: "123",
sort: {
...sortPageProps.sort,
sort: SaleListUrlSortField.name,
},
};
storiesOf("Discounts / Sale list", module)
.addDecorator(Decorator)
.addDecorator(PaginatorContextDecorator)
.add("default", () => )
.add("loading", () => )
.add("no data", () => )
.add("no channels", () => (
({ ...sale, channelListings: [] }))}
selectedChannelId=""
/>
));