import IconButton from "@material-ui/core/IconButton"; 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 Typography from "@material-ui/core/Typography"; import DeleteIcon from "@material-ui/icons/Delete"; import EditIcon from "@material-ui/icons/Edit"; import React from "react"; import { FormattedMessage } from "react-intl"; import Checkbox from "@saleor/components/Checkbox"; import Skeleton from "@saleor/components/Skeleton"; 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 { ServiceList_serviceAccounts_edges_node } from "../../types/ServiceList"; export interface ServiceListProps extends ListProps, ListActions { services: ServiceList_serviceAccounts_edges_node[]; onRemove: (id: string) => void; } const styles = (theme: Theme) => createStyles({ [theme.breakpoints.up("lg")]: { colName: { "&&": { width: "auto" } } }, colAction: { "&&": { paddingRight: theme.spacing.unit }, textAlign: "right", width: 100 }, colName: { paddingLeft: 0, width: 250 }, table: { tableLayout: "fixed" } }); const numberOfColumns = 3; const ServiceList = withStyles(styles, { name: "ServiceList" })( ({ classes, settings, disabled, onNextPage, onPreviousPage, onUpdateListSettings, onRemove, onRowClick, pageInfo, services, isChecked, selected, toggle, toggleAll, toolbar }: ServiceListProps & WithStyles) => ( {renderCollection( services, service => { const isSelected = service ? isChecked(service.id) : false; return ( toggle(service.id)} /> {maybe(() => service.name, )} {maybe(() => service.isActive ? ( ) : ( ) )} onRemove(service.id) : undefined} > ); }, () => ( ) )}
) ); ServiceList.displayName = "ServiceList"; export default ServiceList;