117 lines
3.7 KiB
TypeScript
117 lines
3.7 KiB
TypeScript
![]() |
import Button from "@material-ui/core/Button";
|
||
|
import CardHeader from "@material-ui/core/CardHeader";
|
||
|
import IconButton from "@material-ui/core/IconButton";
|
||
|
import TableBody from "@material-ui/core/TableBody";
|
||
|
import TableCell from "@material-ui/core/TableCell";
|
||
|
import TableRow from "@material-ui/core/TableRow";
|
||
|
import Typography from "@material-ui/core/Typography";
|
||
|
import DeleteIcon from "@material-ui/icons/Delete";
|
||
|
import { commonMessages } from "@saleor/intl";
|
||
|
import { renderCollection, stopPropagation } from "@saleor/misc";
|
||
|
import React from "react";
|
||
|
import { FormattedMessage } from "react-intl";
|
||
|
|
||
|
import { useStyles } from "../../styles";
|
||
|
import { AppsList_apps_edges } from "../../types/AppsList";
|
||
|
import AppsSkeleton from "../AppsSkeleton";
|
||
|
import CardContainer from "../CardContainer";
|
||
|
import DeactivatedText from "../DeactivatedText";
|
||
|
|
||
|
export interface CustomAppsProps {
|
||
|
appsList: AppsList_apps_edges[];
|
||
|
navigateToCustomApp: (id: string) => () => void;
|
||
|
navigateToCustomAppCreate?: () => void;
|
||
|
onRemove: (id: string) => void;
|
||
|
}
|
||
|
|
||
|
const CustomApps: React.FC<CustomAppsProps> = ({
|
||
|
appsList,
|
||
|
navigateToCustomAppCreate,
|
||
|
onRemove,
|
||
|
navigateToCustomApp
|
||
|
}) => {
|
||
|
const classes = useStyles({});
|
||
|
|
||
|
return (
|
||
|
<CardContainer
|
||
|
header={
|
||
|
<>
|
||
|
<CardHeader
|
||
|
className={classes.title}
|
||
|
action={
|
||
|
!!navigateToCustomAppCreate && (
|
||
|
<Button color="primary" onClick={navigateToCustomAppCreate}>
|
||
|
<FormattedMessage
|
||
|
defaultMessage="Create App"
|
||
|
description="create app button"
|
||
|
/>
|
||
|
</Button>
|
||
|
)
|
||
|
}
|
||
|
title={
|
||
|
<Typography
|
||
|
className={classes.title}
|
||
|
variant="h5"
|
||
|
component="span"
|
||
|
>
|
||
|
<FormattedMessage {...commonMessages.customApps} />
|
||
|
</Typography>
|
||
|
}
|
||
|
/>
|
||
|
<hr className={classes.hr} />
|
||
|
</>
|
||
|
}
|
||
|
>
|
||
|
<TableBody>
|
||
|
{renderCollection(
|
||
|
appsList,
|
||
|
(app, index) =>
|
||
|
app ? (
|
||
|
<TableRow
|
||
|
key={app.node.id}
|
||
|
className={classes.tableRow}
|
||
|
onClick={navigateToCustomApp(app.node.id)}
|
||
|
>
|
||
|
<TableCell className={classes.colName}>
|
||
|
<span data-tc="name" className={classes.appName}>
|
||
|
{app.node.name}
|
||
|
</span>
|
||
|
{!app.node.isActive && (
|
||
|
<div className={classes.statusWrapper}>
|
||
|
<DeactivatedText />
|
||
|
</div>
|
||
|
)}
|
||
|
</TableCell>
|
||
|
<TableCell className={classes.colAction}>
|
||
|
<IconButton
|
||
|
color="primary"
|
||
|
onClick={stopPropagation(() => onRemove(app.node.id))}
|
||
|
>
|
||
|
<DeleteIcon />
|
||
|
</IconButton>
|
||
|
</TableCell>
|
||
|
</TableRow>
|
||
|
) : (
|
||
|
<AppsSkeleton key={index} />
|
||
|
),
|
||
|
() => (
|
||
|
<TableRow className={classes.tableRow}>
|
||
|
<TableCell className={classes.colName}>
|
||
|
<Typography className={classes.text} variant="body2">
|
||
|
<FormattedMessage
|
||
|
defaultMessage="Your custom created apps will be shown here."
|
||
|
description="custom apps content"
|
||
|
/>
|
||
|
</Typography>
|
||
|
</TableCell>
|
||
|
</TableRow>
|
||
|
)
|
||
|
)}
|
||
|
</TableBody>
|
||
|
</CardContainer>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
CustomApps.displayName = "CustomApps";
|
||
|
export default CustomApps;
|