import Card from "@material-ui/core/Card"; import { makeStyles } from "@material-ui/core/styles"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableHead from "@material-ui/core/TableHead"; import TableRow from "@material-ui/core/TableRow"; import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import classNames from "classnames"; import React from "react"; import { FormattedMessage } from "react-intl"; import { maybe, renderCollection } from "../../../misc"; import { CountryList_shop_countries } from "../../types/CountryList"; const useStyles = makeStyles( { tableRow: { cursor: "pointer" }, textRight: { textAlign: "right" } }, { name: "CountryList" } ); interface CountryListProps { countries: CountryList_shop_countries[]; onRowClick: (code: string) => void; } const CountryList: React.FC = props => { const { onRowClick, countries } = props; const classes = useStyles(props); return ( {renderCollection( countries, country => ( onRowClick(country.code) : undefined} key={country ? country.code : "skeleton"} > {maybe(() => country.code, )} {maybe(() => country.country, )} {maybe( () => country.vat.reducedRates.length, )} ), () => ( ) )} ); }; CountryList.displayName = "CountryList"; export default CountryList;