Criação de nova rule para que somente o administrador acesse o dashboard
parent
d687d0900a
commit
790b2c11a9
|
@ -415,111 +415,6 @@ const Connections = () => {
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
/*<MainContainer>
|
|
||||||
<ConfirmationModal
|
|
||||||
title={confirmModalInfo.title}
|
|
||||||
open={confirmModalOpen}
|
|
||||||
onClose={setConfirmModalOpen}
|
|
||||||
onConfirm={handleSubmitConfirmationModal}
|
|
||||||
>
|
|
||||||
{confirmModalInfo.message}
|
|
||||||
</ConfirmationModal>
|
|
||||||
<QrcodeModal
|
|
||||||
open={qrModalOpen}
|
|
||||||
onClose={handleCloseQrModal}
|
|
||||||
whatsAppId={!whatsAppModalOpen && selectedWhatsApp?.id}
|
|
||||||
/>
|
|
||||||
<WhatsAppModal
|
|
||||||
open={whatsAppModalOpen}
|
|
||||||
onClose={handleCloseWhatsAppModal}
|
|
||||||
whatsAppId={!qrModalOpen && selectedWhatsApp?.id}
|
|
||||||
/>
|
|
||||||
<MainHeader>
|
|
||||||
<Title>{i18n.t("connections.title")}</Title>
|
|
||||||
<MainHeaderButtonsWrapper>
|
|
||||||
<Button
|
|
||||||
variant="contained"
|
|
||||||
color="primary"
|
|
||||||
onClick={handleOpenWhatsAppModal}
|
|
||||||
>
|
|
||||||
{i18n.t("connections.buttons.add")}
|
|
||||||
</Button>
|
|
||||||
</MainHeaderButtonsWrapper>
|
|
||||||
</MainHeader>
|
|
||||||
<Paper className={classes.mainPaper} variant="outlined">
|
|
||||||
<Table size="small">
|
|
||||||
<TableHead>
|
|
||||||
<TableRow>
|
|
||||||
<TableCell align="center">
|
|
||||||
{i18n.t("connections.table.name")}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell align="center">
|
|
||||||
{i18n.t("connections.table.status")}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell align="center">
|
|
||||||
{i18n.t("connections.table.session")}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell align="center">
|
|
||||||
{i18n.t("connections.table.lastUpdate")}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell align="center">
|
|
||||||
{i18n.t("connections.table.default")}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell align="center">
|
|
||||||
{i18n.t("connections.table.actions")}
|
|
||||||
</TableCell>
|
|
||||||
</TableRow>
|
|
||||||
</TableHead>
|
|
||||||
<TableBody>
|
|
||||||
{loading ? (
|
|
||||||
<TableRowSkeleton />
|
|
||||||
) : (
|
|
||||||
<>
|
|
||||||
{whatsApps?.length > 0 &&
|
|
||||||
whatsApps.map(whatsApp => (
|
|
||||||
<TableRow key={whatsApp.id}>
|
|
||||||
<TableCell align="center">{whatsApp.name}</TableCell>
|
|
||||||
<TableCell align="center">
|
|
||||||
{renderStatusToolTips(whatsApp)}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell align="center">
|
|
||||||
{renderActionButtons(whatsApp)}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell align="center">
|
|
||||||
{format(parseISO(whatsApp.updatedAt), "dd/MM/yy HH:mm")}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell align="center">
|
|
||||||
{whatsApp.isDefault && (
|
|
||||||
<div className={classes.customTableCell}>
|
|
||||||
<CheckCircle style={{ color: green[500] }} />
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</TableCell>
|
|
||||||
<TableCell align="center">
|
|
||||||
<IconButton
|
|
||||||
size="small"
|
|
||||||
onClick={() => handleEditWhatsApp(whatsApp)}
|
|
||||||
>
|
|
||||||
<Edit />
|
|
||||||
</IconButton>
|
|
||||||
|
|
||||||
<IconButton
|
|
||||||
size="small"
|
|
||||||
onClick={e => {
|
|
||||||
handleOpenConfirmationModal("delete", whatsApp.id);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<DeleteOutline />
|
|
||||||
</IconButton>
|
|
||||||
</TableCell>
|
|
||||||
</TableRow>
|
|
||||||
))}
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</TableBody>
|
|
||||||
</Table>
|
|
||||||
</Paper>
|
|
||||||
</MainContainer>*/
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,8 @@ import { i18n } from "../../translate/i18n";
|
||||||
|
|
||||||
import Chart from "./Chart"
|
import Chart from "./Chart"
|
||||||
|
|
||||||
|
import { Can } from "../../components/Can";
|
||||||
|
|
||||||
const useStyles = makeStyles(theme => ({
|
const useStyles = makeStyles(theme => ({
|
||||||
container: {
|
container: {
|
||||||
paddingTop: theme.spacing(4),
|
paddingTop: theme.spacing(4),
|
||||||
|
@ -64,6 +66,11 @@ const Dashboard = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
|
<Can
|
||||||
|
role={user.profile}
|
||||||
|
perform="dashboard-view:show"
|
||||||
|
yes={() => (
|
||||||
<div>
|
<div>
|
||||||
<Container maxWidth="lg" className={classes.container}>
|
<Container maxWidth="lg" className={classes.container}>
|
||||||
<Grid container spacing={3}>
|
<Grid container spacing={3}>
|
||||||
|
@ -111,6 +118,15 @@ const Dashboard = () => {
|
||||||
</Grid>
|
</Grid>
|
||||||
</Container>
|
</Container>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**/
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ const rules = {
|
||||||
"contacts-page:deleteContact",
|
"contacts-page:deleteContact",
|
||||||
|
|
||||||
"connections-view:show",
|
"connections-view:show",
|
||||||
|
"dashboard-view:show",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue