saleor-dashboard/src/webhooks/components/WebhooksList/WebhooksList.tsx
Krzysztof Bialoglowicz 4021b8ec62 Add webhook components
2019-10-09 08:01:52 +02:00

155 lines
5 KiB
TypeScript

import Card from "@material-ui/core/Card";
import {
createStyles,
Theme,
withStyles,
WithStyles
} 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 TableFooter from "@material-ui/core/TableFooter";
import TableHead from "@material-ui/core/TableHead";
import TableRow from "@material-ui/core/TableRow";
import EditIcon from "@material-ui/icons/Edit";
import React from "react";
import { useIntl } from "react-intl";
import Skeleton from "@saleor/components/Skeleton";
import StatusLabel from "@saleor/components/StatusLabel";
import TablePagination from "@saleor/components/TablePagination";
import { translateBoolean } from "@saleor/intl";
import { maybe, renderCollection } from "@saleor/misc";
import { ListProps } from "@saleor/types";
import { Plugins_plugins_edges_node } from "../../types/Plugins";
export interface WebhooksListProps extends ListProps {
webhooks: Plugins_plugins_edges_node[];
}
const styles = (theme: Theme) =>
createStyles({
[theme.breakpoints.up("lg")]: {
colAction: {
"& svg": {
color: theme.palette.primary.main
},
textAlign: "right"
},
colActive: {},
colName: {}
},
colAction: {},
colActive: {},
colName: {},
link: {
cursor: "pointer"
}
});
const numberOfColumns = 4;
const WebhooksList = withStyles(styles, { name: "PluginList" })(
({
classes,
settings,
webhooks,
disabled,
onNextPage,
pageInfo,
onRowClick,
onUpdateListSettings,
onPreviousPage
}: WebhooksListProps & WithStyles<typeof styles>) => {
const intl = useIntl();
return (
<Card>
<Table>
<TableHead>
<TableCell className={classes.colName} padding="dense">
{intl.formatMessage({
defaultMessage: "Name",
description: "webhook name"
})}
</TableCell>
<TableCell className={classes.colActive} padding="dense">
{intl.formatMessage({
defaultMessage: "Service Account",
description: "webhook service account"
})}
</TableCell>
<TableCell className={classes.colAction} padding="dense">
{intl.formatMessage({
defaultMessage: "Action",
description: "user action bar"
})}
</TableCell>
</TableHead>
<TableFooter>
<TableRow>
<TablePagination
colSpan={numberOfColumns}
settings={settings}
hasNextPage={
pageInfo && !disabled ? pageInfo.hasNextPage : false
}
onNextPage={onNextPage}
onUpdateListSettings={onUpdateListSettings}
hasPreviousPage={
pageInfo && !disabled ? pageInfo.hasPreviousPage : false
}
onPreviousPage={onPreviousPage}
/>
</TableRow>
</TableFooter>
<TableBody>
{renderCollection(
webhooks,
webhook => {
return (
// <TableRow
// hover={!!plugin}
// className={!!plugin ? classes.link : undefined}
// onClick={plugin ? onRowClick(plugin.id) : undefined}
// key={plugin ? plugin.id : "skeleton"}
// >
// <TableCell className={classes.colName}>
// {maybe<React.ReactNode>(() => plugin.name, <Skeleton />)}
// </TableCell>
// <TableCell className={classes.colActive}>
// {maybe<React.ReactNode>(
// () => (
// <StatusLabel
// label={translateBoolean(plugin.active, intl)}
// status={plugin.active ? "success" : "error"}
// />
// ),
// <Skeleton />
// )}
// </TableCell>
// <TableCell className={classes.colAction}>
// <div onClick={plugin ? onRowClick(plugin.id) : undefined}>
// <EditIcon />
// </div>
// </TableCell>
// </TableRow>
);
},
() => (
<TableRow>
<TableCell colSpan={numberOfColumns}>
{intl.formatMessage({
defaultMessage: "No plugins found"
})}
</TableCell>
</TableRow>
)
)}
</TableBody>
</Table>
</Card>
);
}
);
WebhooksList.displayName = "WebhooksList";
export default WebhooksList;