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

165 lines
5.3 KiB
TypeScript
Raw Normal View History

2019-08-21 14:30:56 +00:00
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 TableRow from "@material-ui/core/TableRow";
import EditIcon from "@material-ui/icons/Edit";
import React from "react";
import Checkbox from "@saleor/components/Checkbox";
import Skeleton from "@saleor/components/Skeleton";
import StatusLabel from "@saleor/components/StatusLabel";
import TableHead from "@saleor/components/TableHead";
import TablePagination from "@saleor/components/TablePagination";
import i18n from "@saleor/i18n";
import { maybe, renderCollection } from "@saleor/misc";
2019-08-27 12:36:19 +00:00
import { ListActionsWithoutToolbar, 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
2019-08-27 12:36:19 +00:00
export interface PluginListProps extends ListProps, ListActionsWithoutToolbar {
2019-08-28 14:53:57 +00:00
plugins: Plugins_plugins_edges_node[];
2019-08-21 14:30:56 +00:00
}
const styles = (theme: Theme) =>
createStyles({
[theme.breakpoints.up("lg")]: {
colAction: {
"& svg": {
color: theme.palette.primary.main
2019-08-27 12:36:19 +00:00
},
textAlign: "right"
},
colActive: {},
colName: {}
2019-08-21 14:30:56 +00:00
},
colAction: {},
2019-08-27 12:36:19 +00:00
colActive: {},
colName: {},
2019-08-21 14:30:56 +00:00
link: {
cursor: "pointer"
}
});
const numberOfColumns = 4;
2019-08-26 17:08:32 +00:00
const PluginList = withStyles(styles, { name: "PluginList" })(
2019-08-21 14:30:56 +00:00
({
classes,
settings,
plugins,
disabled,
onNextPage,
pageInfo,
onRowClick,
onUpdateListSettings,
onPreviousPage,
isChecked,
selected,
toggle,
2019-08-27 12:36:19 +00:00
toggleAll
2019-08-21 14:30:56 +00:00
}: PluginListProps & WithStyles<typeof styles>) => {
return (
<Card>
<Table>
<TableHead
colSpan={numberOfColumns}
selected={selected}
disabled={disabled}
items={plugins}
toggleAll={toggleAll}
>
<TableCell className={classes.colName} padding="dense">
{i18n.t("Name", { context: "table header" })}
</TableCell>
<TableCell className={classes.colActive} padding="dense">
{i18n.t("Active", { context: "table header" })}
</TableCell>
<TableCell className={classes.colAction} padding="dense">
{i18n.t("Action", { context: "table header" })}
</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 => {
const isSelected = plugin ? isChecked(plugin.id) : false;
return (
<TableRow
hover={!!plugin}
className={!!plugin ? classes.link : undefined}
onClick={plugin ? onRowClick(plugin.id) : undefined}
key={plugin ? plugin.id : "skeleton"}
selected={isSelected}
>
<TableCell padding="checkbox">
<Checkbox
checked={isSelected}
disabled={disabled}
disableClickPropagation
onChange={() => toggle(plugin.id)}
/>
</TableCell>
<TableCell className={classes.colName}>
{maybe<React.ReactNode>(() => plugin.name, <Skeleton />)}
</TableCell>
<TableCell className={classes.colActive}>
{maybe<React.ReactNode>(
() => (
<StatusLabel
label={plugin.active ? i18n.t("Yes") : i18n.t("No")}
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}>
{i18n.t("No plugins found")}
</TableCell>
</TableRow>
)
)}
</TableBody>
</Table>
</Card>
);
}
);
PluginList.displayName = "PluginList";
export default PluginList;