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";
|
|
|
|
import i18n from "../../../i18n";
|
|
|
|
import { ListActions, PageListProps } from "../../../types";
|
|
|
|
import { CollectionList_collections_edges_node } from "../../types/CollectionList";
|
|
|
|
import CollectionList from "../CollectionList/CollectionList";
|
|
|
|
|
|
|
|
export interface CollectionListPageProps extends PageListProps, ListActions {
|
|
|
|
collections: CollectionList_collections_edges_node[];
|
|
|
|
}
|
|
|
|
|
|
|
|
const CollectionListPage: React.StatelessComponent<CollectionListPageProps> = ({
|
|
|
|
disabled,
|
|
|
|
onAdd,
|
|
|
|
...listProps
|
|
|
|
}) => (
|
|
|
|
<Container>
|
|
|
|
<PageHeader title={i18n.t("Collections", { context: "page title" })}>
|
|
|
|
<Button
|
|
|
|
color="primary"
|
|
|
|
disabled={disabled}
|
|
|
|
variant="contained"
|
|
|
|
onClick={onAdd}
|
|
|
|
>
|
|
|
|
{i18n.t("Add collection", { context: "button" })}
|
|
|
|
<AddIcon />
|
|
|
|
</Button>
|
|
|
|
</PageHeader>
|
|
|
|
<CollectionList disabled={disabled} {...listProps} />
|
|
|
|
</Container>
|
|
|
|
);
|
|
|
|
CollectionListPage.displayName = "CollectionListPage";
|
|
|
|
export default CollectionListPage;
|