import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import CardContent from "@material-ui/core/CardContent"; import IconButton from "@material-ui/core/IconButton"; import { makeStyles } from "@material-ui/core/styles"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableRow from "@material-ui/core/TableRow"; import ArrowDropDownIcon from "@material-ui/icons/ArrowDropDown"; import DeleteIcon from "@material-ui/icons/Delete"; import classNames from "classnames"; import React from "react"; import { FormattedMessage } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import { maybe, renderCollection } from "../../misc"; import { CountryFragment } from "../../taxes/types/CountryFragment"; export interface CountryListProps { countries: CountryFragment[]; disabled: boolean; emptyText: React.ReactNode; title: React.ReactNode; onCountryAssign: () => void; onCountryUnassign: (country: string) => void; } const useStyles = makeStyles(theme => ({ iconCell: { "&:last-child": { paddingRight: 0 }, width: 48 + theme.spacing(2) }, indicator: { color: theme.palette.text.disabled, display: "inline-block", left: 0, marginRight: theme.spacing(0.5), position: "absolute" }, offsetCell: { "&:first-child": { paddingLeft: theme.spacing(3) }, position: "relative" }, pointer: { cursor: "pointer" }, root: { "&:last-child": { paddingBottom: 0 }, paddingTop: 0 }, rotate: { transform: "rotate(180deg)" }, textRight: { textAlign: "right" }, toLeft: { "&:first-child": { paddingLeft: 0 } }, wideColumn: { width: "100%" } })); const CountryList: React.FC = props => { const { countries, disabled, emptyText, title, onCountryAssign, onCountryUnassign } = props; const classes = useStyles(props); const [isCollapsed, setCollapseStatus] = React.useState(true); const toggleCollapse = () => setCollapseStatus(!isCollapsed); return ( } /> countries.length.toString(), "...") }} /> {!isCollapsed && renderCollection( countries, (country, countryIndex) => ( {maybe( () => ( <> {(countryIndex === 0 || countries[countryIndex].country[0] !== countries[countryIndex - 1].country[0]) && ( {country.country[0]} )} {country.country} ), )} onCountryUnassign(country.code)} > ), () => ( {emptyText} ) )} ); }; export default CountryList;