import { createStyles, Theme, withStyles, WithStyles } from "@material-ui/core/styles"; import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; import TableRow from "@material-ui/core/TableRow"; import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import Checkbox from "@saleor/components/Checkbox"; import Skeleton from "@saleor/components/Skeleton"; import StatusLabel from "@saleor/components/StatusLabel"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; import { maybe, renderCollection } from "@saleor/misc"; import { ListActions, ListProps } from "@saleor/types"; import { CollectionList_collections_edges_node } from "../../types/CollectionList"; const styles = (theme: Theme) => createStyles({ [theme.breakpoints.up("lg")]: { colAvailability: { width: 240 }, colName: { paddingLeft: 0 }, colProducts: { width: 240 } }, colAvailability: {}, colName: {}, colProducts: { textAlign: "center" }, tableRow: { cursor: "pointer" as "pointer" } }); interface CollectionListProps extends ListProps, ListActions, WithStyles { collections: CollectionList_collections_edges_node[]; } const numberOfColumns = 5; const CollectionList = withStyles(styles, { name: "CollectionList" })( ({ classes, collections, disabled, settings, onNextPage, onPreviousPage, onUpdateListSettings, onRowClick, pageInfo, isChecked, selected, toggle, toggleAll, toolbar }: CollectionListProps) => { const intl = useIntl(); return ( {renderCollection( collections, collection => { const isSelected = collection ? isChecked(collection.id) : false; return ( collection.id)} > toggle(collection.id)} /> {maybe( () => collection.name, )} {maybe( () => collection.products.totalCount, )} collection.isPublished)} > {maybe( () => ( ), )} ); }, () => ( ) )}
); } ); CollectionList.displayName = "CollectionList"; export default CollectionList;