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 { Theme } 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 TableRow from "@material-ui/core/TableRow"; import ArrowDropDownIcon from "@material-ui/icons/ArrowDropDown"; import DeleteIcon from "@material-ui/icons/Delete"; import makeStyles from "@material-ui/styles/makeStyles"; import classNames from "classnames"; import React from "react"; import CardTitle from "../CardTitle"; import Skeleton from "../Skeleton"; import { maybe, renderCollection } from "../utils"; export interface Country { country: string; code: string; } export type CountryListLabels = Record< "assignButton" | "emptyList" | "title", React.ReactNode > & { noOfCountries: (countries: string) => React.ReactNode; }; export interface CountryListProps { countries: Country[]; disabled: boolean; labels: CountryListLabels; onCountryAssign: () => void; onCountryUnassign: (country: string) => void; } const useStyles = makeStyles((theme: Theme) => ({ iconCell: { "&:last-child": { paddingRight: 0 }, width: 48 + theme.spacing(0.5) }, indicator: { color: theme.palette.text.disabled, display: "inline-block", left: 0, marginRight: theme.spacing(2), 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, labels, onCountryAssign, onCountryUnassign } = props; const classes = useStyles(props); const [isCollapsed, setCollapseStatus] = React.useState(true); const toggleCollapse = () => setCollapseStatus(!isCollapsed); return ( {labels.assignButton} } /> {labels.noOfCountries( maybe(() => 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)} > ), () => ( {labels.emptyList} ) )}
); }; export default CountryList;