saleor-dashboard/src/customers/components/CustomerListPage/CustomerListPage.tsx

45 lines
1.2 KiB
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import Button from "@material-ui/core/Button";
import AddIcon from "@material-ui/icons/Add";
2019-08-09 10:26:22 +00:00
import React from "react";
2019-06-19 14:40:52 +00:00
import Container from "@saleor/components/Container";
import PageHeader from "@saleor/components/PageHeader";
2019-08-09 11:14:35 +00:00
import i18n from "@saleor/i18n";
import { ListActions, PageListProps } from "@saleor/types";
2019-06-19 14:40:52 +00:00
import { ListCustomers_customers_edges_node } from "../../types/ListCustomers";
import CustomerList from "../CustomerList/CustomerList";
export interface CustomerListPageProps extends PageListProps, ListActions {
customers: ListCustomers_customers_edges_node[];
}
const CustomerListPage: React.StatelessComponent<CustomerListPageProps> = ({
customers,
disabled,
onAdd,
...customerListProps
}) => (
<Container>
<PageHeader title={i18n.t("Customers")}>
<Button
color="primary"
variant="contained"
disabled={disabled}
onClick={onAdd}
>
{i18n.t("Add customer", {
context: "button"
})}{" "}
<AddIcon />
</Button>
</PageHeader>
<CustomerList
customers={customers}
disabled={disabled}
{...customerListProps}
/>
</Container>
);
CustomerListPage.displayName = "CustomerListPage";
export default CustomerListPage;