saleor-dashboard/src/plugins/components/PluginsList/PluginsList.tsx

148 lines
4.5 KiB
TypeScript
Raw Normal View History

2019-08-21 14:30:56 +00:00
import Card from "@material-ui/core/Card";
2019-10-30 14:34:24 +00:00
import { makeStyles } from "@material-ui/core/styles";
2019-08-21 14:30:56 +00:00
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";
2019-09-02 11:24:21 +00:00
import TableHead from "@material-ui/core/TableHead";
2019-08-21 14:30:56 +00:00
import TableRow from "@material-ui/core/TableRow";
import EditIcon from "@material-ui/icons/Edit";
import React from "react";
2019-08-30 13:10:07 +00:00
import { useIntl } from "react-intl";
2019-08-21 14:30:56 +00:00
import Skeleton from "@saleor/components/Skeleton";
import StatusLabel from "@saleor/components/StatusLabel";
import TablePagination from "@saleor/components/TablePagination";
2019-08-30 13:10:07 +00:00
import { translateBoolean } from "@saleor/intl";
2019-08-21 14:30:56 +00:00
import { maybe, renderCollection } from "@saleor/misc";
import { ListProps } from "@saleor/types";
2019-08-28 14:53:57 +00:00
import { Plugins_plugins_edges_node } from "../../types/Plugins";
2019-08-21 14:30:56 +00:00
export interface PluginListProps extends ListProps {
2019-08-28 14:53:57 +00:00
plugins: Plugins_plugins_edges_node[];
2019-08-21 14:30:56 +00:00
}
2019-10-30 14:34:24 +00:00
const useStyles = makeStyles(theme => ({
[theme.breakpoints.up("lg")]: {
colAction: {
"& svg": {
color: theme.palette.primary.main
2019-08-27 12:36:19 +00:00
},
2019-10-30 14:34:24 +00:00
textAlign: "right" as "right"
2019-08-21 14:30:56 +00:00
},
2019-08-27 12:36:19 +00:00
colActive: {},
2019-10-30 14:34:24 +00:00
colName: {}
},
colAction: {},
colActive: {},
colName: {},
link: {
cursor: "pointer"
}
}));
2019-08-21 14:30:56 +00:00
const numberOfColumns = 4;
2019-10-30 14:34:24 +00:00
const PluginList: React.FC<PluginListProps> = props => {
const {
2019-08-21 14:30:56 +00:00
settings,
plugins,
disabled,
onNextPage,
pageInfo,
onRowClick,
onUpdateListSettings,
onPreviousPage
2019-10-30 14:34:24 +00:00
} = props;
const classes = useStyles(props);
const intl = useIntl();
return (
<Card>
<Table>
<TableHead>
<TableCell className={classes.colName}>
{intl.formatMessage({
defaultMessage: "Name",
description: "plugin name"
})}
</TableCell>
<TableCell className={classes.colActive}>
{intl.formatMessage({
defaultMessage: "Active",
description: "plugin status"
})}
</TableCell>
<TableCell className={classes.colAction}>
{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(
plugins,
plugin => {
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>
2019-08-21 14:30:56 +00:00
</TableCell>
</TableRow>
2019-10-30 14:34:24 +00:00
);
},
() => (
<TableRow>
<TableCell colSpan={numberOfColumns}>
{intl.formatMessage({
defaultMessage: "No plugins found"
})}
</TableCell>
</TableRow>
)
)}
</TableBody>
</Table>
</Card>
);
};
2019-08-21 14:30:56 +00:00
PluginList.displayName = "PluginList";
export default PluginList;