import { Card } from "@material-ui/core"; import { CollectionListUrlSortField } from "@saleor/collections/urls"; import { Container } from "@saleor/components/Container"; import FilterBar from "@saleor/components/FilterBar"; import PageHeader from "@saleor/components/PageHeader"; import { sectionNames } from "@saleor/intl"; import { Button } from "@saleor/macaw-ui"; import { ChannelProps, FilterPageProps, ListActions, PageListProps, SearchPageProps, SortPage, TabPageProps } from "@saleor/types"; import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import { CollectionList_collections_edges_node } from "../../types/CollectionList"; import CollectionList from "../CollectionList/CollectionList"; import { CollectionFilterKeys, CollectionListFilterOpts, createFilterStructure } from "./filters"; export interface CollectionListPageProps extends PageListProps, ListActions, SearchPageProps, SortPage, TabPageProps, FilterPageProps, ChannelProps { collections: CollectionList_collections_edges_node[]; channelsCount: number; } const CollectionListPage: React.FC = ({ channelsCount, currentTab, disabled, initialSearch, onAdd, onAll, onSearchChange, onTabChange, onTabDelete, onTabSave, selectedChannelId, tabs, filterOpts, onFilterChange, onFilterAttributeFocus, ...listProps }) => { const intl = useIntl(); const filterStructure = createFilterStructure(intl, filterOpts); return ( ); }; CollectionListPage.displayName = "CollectionListPage"; export default CollectionListPage;