51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import Button from "@material-ui/core/Button";
|
|
|
|
import React from "react";
|
|
import { FormattedMessage, useIntl } from "react-intl";
|
|
|
|
import AppHeader from "@saleor/components/AppHeader";
|
|
import { Container } from "@saleor/components/Container";
|
|
import PageHeader from "@saleor/components/PageHeader";
|
|
import { sectionNames } from "@saleor/intl";
|
|
import { ListProps } from "@saleor/types";
|
|
import { StaffList_staffUsers_edges_node } from "../../types/StaffList";
|
|
import StaffList from "../StaffList/StaffList";
|
|
|
|
export interface StaffListPageProps extends ListProps {
|
|
staffMembers: StaffList_staffUsers_edges_node[];
|
|
onAdd: () => void;
|
|
onBack: () => void;
|
|
}
|
|
|
|
const StaffListPage: React.StatelessComponent<StaffListPageProps> = ({
|
|
disabled,
|
|
onAdd,
|
|
onBack,
|
|
...listProps
|
|
}) => {
|
|
const intl = useIntl();
|
|
|
|
return (
|
|
<Container>
|
|
<AppHeader onBack={onBack}>
|
|
{intl.formatMessage(sectionNames.configuration)}
|
|
</AppHeader>
|
|
<PageHeader title={intl.formatMessage(sectionNames.staff)}>
|
|
<Button
|
|
color="primary"
|
|
disabled={disabled}
|
|
variant="contained"
|
|
onClick={onAdd}
|
|
>
|
|
<FormattedMessage
|
|
defaultMessage="Invite staff member"
|
|
description="button"
|
|
/>
|
|
</Button>
|
|
</PageHeader>
|
|
<StaffList disabled={disabled} {...listProps} />
|
|
</Container>
|
|
);
|
|
};
|
|
StaffListPage.displayName = "StaffListPage";
|
|
export default StaffListPage;
|