162 lines
5.1 KiB
JavaScript
162 lines
5.1 KiB
JavaScript
import React, { useContext, useEffect, useState } from "react";
|
|
import { Link as RouterLink } from "react-router-dom";
|
|
|
|
import ListItem from "@material-ui/core/ListItem";
|
|
import ListItemIcon from "@material-ui/core/ListItemIcon";
|
|
import ListItemText from "@material-ui/core/ListItemText";
|
|
import ListSubheader from "@material-ui/core/ListSubheader";
|
|
import Divider from "@material-ui/core/Divider";
|
|
import { Badge } from "@material-ui/core";
|
|
import DashboardOutlinedIcon from "@material-ui/icons/DashboardOutlined";
|
|
|
|
import ReportOutlinedIcon from "@material-ui/icons/ReportOutlined";
|
|
//import ReportOutlined from "@bit/mui-org.material-ui-icons.report-outlined";
|
|
|
|
|
|
import WhatsAppIcon from "@material-ui/icons/WhatsApp";
|
|
import SyncAltIcon from "@material-ui/icons/SyncAlt";
|
|
import SettingsOutlinedIcon from "@material-ui/icons/SettingsOutlined";
|
|
import PeopleAltOutlinedIcon from "@material-ui/icons/PeopleAltOutlined";
|
|
import ContactPhoneOutlinedIcon from "@material-ui/icons/ContactPhoneOutlined";
|
|
import AccountTreeOutlinedIcon from "@material-ui/icons/AccountTreeOutlined";
|
|
import QuestionAnswerOutlinedIcon from "@material-ui/icons/QuestionAnswerOutlined";
|
|
|
|
import { i18n } from "../translate/i18n";
|
|
import { WhatsAppsContext } from "../context/WhatsApp/WhatsAppsContext";
|
|
import { AuthContext } from "../context/Auth/AuthContext";
|
|
import { Can } from "../components/Can";
|
|
|
|
function ListItemLink(props) {
|
|
const { icon, primary, to, className } = props;
|
|
|
|
const renderLink = React.useMemo(
|
|
() =>
|
|
React.forwardRef((itemProps, ref) => (
|
|
<RouterLink to={to} ref={ref} {...itemProps} />
|
|
)),
|
|
[to]
|
|
);
|
|
|
|
return (
|
|
<li>
|
|
<ListItem button component={renderLink} className={className}>
|
|
{icon ? <ListItemIcon>{icon}</ListItemIcon> : null}
|
|
<ListItemText primary={primary} />
|
|
</ListItem>
|
|
</li>
|
|
);
|
|
}
|
|
|
|
const MainListItems = (props) => {
|
|
const { drawerClose } = props;
|
|
const { whatsApps } = useContext(WhatsAppsContext);
|
|
const { user } = useContext(AuthContext);
|
|
const [connectionWarning, setConnectionWarning] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const delayDebounceFn = setTimeout(() => {
|
|
if (whatsApps.length > 0) {
|
|
const offlineWhats = whatsApps.filter((whats) => {
|
|
return (
|
|
whats.status === "qrcode" ||
|
|
whats.status === "PAIRING" ||
|
|
whats.status === "DISCONNECTED" ||
|
|
whats.status === "TIMEOUT" ||
|
|
whats.status === "OPENING"
|
|
);
|
|
});
|
|
if (offlineWhats.length > 0) {
|
|
setConnectionWarning(true);
|
|
} else {
|
|
setConnectionWarning(false);
|
|
}
|
|
}
|
|
}, 2000);
|
|
return () => clearTimeout(delayDebounceFn);
|
|
}, [whatsApps]);
|
|
|
|
return (
|
|
<div onClick={drawerClose}>
|
|
|
|
|
|
<ListItemLink
|
|
to="/tickets"
|
|
primary={i18n.t("mainDrawer.listItems.tickets")}
|
|
icon={<WhatsAppIcon />}
|
|
/>
|
|
|
|
<ListItemLink
|
|
to="/contacts"
|
|
primary={i18n.t("mainDrawer.listItems.contacts")}
|
|
icon={<ContactPhoneOutlinedIcon />}
|
|
/>
|
|
<ListItemLink
|
|
to="/quickAnswers"
|
|
primary={i18n.t("mainDrawer.listItems.quickAnswers")}
|
|
icon={<QuestionAnswerOutlinedIcon />}
|
|
/>
|
|
<Can
|
|
role={user.profile}
|
|
perform="drawer-admin-items:view"
|
|
yes={() => (
|
|
<>
|
|
<Divider />
|
|
<ListSubheader inset>
|
|
{i18n.t("mainDrawer.listItems.administration")}
|
|
</ListSubheader>
|
|
<ListItemLink
|
|
to="/users"
|
|
primary={i18n.t("mainDrawer.listItems.users")}
|
|
icon={<PeopleAltOutlinedIcon />}
|
|
/>
|
|
<ListItemLink
|
|
to="/queues"
|
|
primary={i18n.t("mainDrawer.listItems.queues")}
|
|
icon={<AccountTreeOutlinedIcon />}
|
|
/>
|
|
|
|
<ListItemLink
|
|
to="/connections"
|
|
primary={i18n.t("mainDrawer.listItems.connections")}
|
|
icon={
|
|
<Badge badgeContent={connectionWarning ? "!" : 0} color="error">
|
|
<SyncAltIcon />
|
|
</Badge>
|
|
}
|
|
/>
|
|
|
|
<ListItemLink
|
|
to="/"
|
|
primary="Dashboard"
|
|
icon={<DashboardOutlinedIcon />}
|
|
/>
|
|
|
|
<ListItemLink
|
|
to="/report"
|
|
primary="Relatório"
|
|
icon={<ReportOutlinedIcon />}
|
|
/>
|
|
|
|
|
|
<Can
|
|
role={user.profile}
|
|
perform="settings-view:show"
|
|
yes={() => (
|
|
<ListItemLink
|
|
to="/settings"
|
|
primary={i18n.t("mainDrawer.listItems.settings")}
|
|
icon={<SettingsOutlinedIcon />}
|
|
/>
|
|
)}
|
|
/>
|
|
|
|
|
|
</>
|
|
)}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default MainListItems;
|