saleor-dashboard/src/components/SortableTable/SortableTableBody.tsx

50 lines
1.2 KiB
TypeScript
Raw Normal View History

import { TableBody } from "@material-ui/core";
import { TableBodyProps } from "@material-ui/core/TableBody";
import { makeStyles } from "@saleor/theme";
import { ReorderAction } from "@saleor/types";
2019-08-09 10:17:04 +00:00
import React from "react";
import { SortableContainer } from "react-sortable-hoc";
const InnerSortableTableBody = SortableContainer<TableBodyProps>(
({ children, ...props }) => <TableBody {...props}>{children}</TableBody>
);
export interface SortableTableBodyProps {
onSortEnd: ReorderAction;
}
2019-12-03 15:28:40 +00:00
const useStyles = makeStyles(
theme => ({
ghost: {
"& td": {
borderBottom: "none"
},
background: theme.palette.background.paper,
fontFamily: theme.typography.fontFamily,
// FIXME: you damn know what
// fontSize: theme.overrides.MuiTableCell.root.fontSize,
opacity: 0.5
}
}),
{ name: "SortableTableBody" }
);
2019-08-09 10:17:04 +00:00
const SortableTableBody: React.FC<Omit<
TableBodyProps & SortableTableBodyProps,
"ref"
>> = props => {
2019-08-09 10:17:04 +00:00
const classes = useStyles({});
return (
<InnerSortableTableBody
helperClass={classes.ghost}
axis="y"
lockAxis="y"
useDragHandle
{...props}
/>
);
};
export default SortableTableBody;