@asaleh37/ui-base 25.8.1-8 → 25.8.1-9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/publish-npm.yml +49 -49
- package/README.md +51 -51
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/eslint.config.js +29 -29
- package/index.html +13 -13
- package/package.json +120 -120
- package/rollup.config-1748377725725.cjs +34 -34
- package/rollup.config.js +45 -45
- package/src/components/App.tsx +123 -123
- package/src/components/BaseApp.tsx +53 -53
- package/src/components/administration/admin/ChangePasswordPanel.tsx +128 -128
- package/src/components/administration/admin/OrgMemberRoleForm.tsx +83 -83
- package/src/components/administration/admin/OrganizationApplicationModuleGrid.tsx +107 -107
- package/src/components/administration/admin/OrganizationGrid.tsx +118 -118
- package/src/components/administration/admin/OrganizationMemberGrid.tsx +176 -176
- package/src/components/administration/admin/OrganizationMemberRoleGrid.tsx +87 -87
- package/src/components/administration/admin/OrganizationRankGrid.tsx +133 -133
- package/src/components/administration/admin/OrganizationUnitGrid.tsx +143 -143
- package/src/components/administration/admin/OrganizationUnitTypeGrid.tsx +108 -108
- package/src/components/administration/admin/PersonGrid.tsx +361 -361
- package/src/components/administration/admin/RoleAuthoritiesForm.tsx +82 -82
- package/src/components/administration/admin/SystemApplicationAuthorityGrid.tsx +117 -117
- package/src/components/administration/admin/SystemApplicationGrid.tsx +83 -83
- package/src/components/administration/admin/SystemApplicationModuleGrid.tsx +96 -96
- package/src/components/administration/admin/SystemApplicationRoleAuthorityGrid.tsx +75 -75
- package/src/components/administration/admin/SystemApplicationRoleGrid.tsx +116 -116
- package/src/components/administration/dev/AttachmentConfigGrid.tsx +223 -223
- package/src/components/administration/dev/AttachmentGrid.tsx +172 -172
- package/src/components/administration/dev/BluePrintGrid.tsx +129 -129
- package/src/components/administration/dev/DashboardGrid.tsx +173 -173
- package/src/components/administration/dev/DashboardWidgetGrid.tsx +164 -164
- package/src/components/administration/dev/DataQueryGrid.tsx +206 -206
- package/src/components/administration/dev/DataQueryParameterGrid.tsx +191 -191
- package/src/components/administration/dev/DataQueryParametersForm.tsx +84 -84
- package/src/components/administration/dev/DatasourceConnectionGrid.tsx +150 -150
- package/src/components/administration/dev/EntityParameterGrid.tsx +279 -279
- package/src/components/administration/dev/LookupGrid.tsx +120 -120
- package/src/components/administration/dev/MailAttachmentGrid.tsx +155 -155
- package/src/components/administration/dev/MailBodyGrid.tsx +216 -216
- package/src/components/administration/dev/MailNotificationQueueGrid.tsx +245 -245
- package/src/components/administration/dev/MailRecipientGrid.tsx +169 -169
- package/src/components/administration/dev/MailSenderConfigGrid.tsx +478 -478
- package/src/components/administration/dev/MailTemplateGrid.tsx +384 -384
- package/src/components/administration/dev/NotificationGrid.tsx +432 -432
- package/src/components/administration/dev/NotificationQueueGrid.tsx +222 -222
- package/src/components/administration/dev/ReportGrid.tsx +506 -506
- package/src/components/administration/dev/ReportParameterGrid.tsx +186 -186
- package/src/components/administration/dev/ReportParametersForm.tsx +84 -84
- package/src/components/administration/dev/WidgetGrid.tsx +431 -431
- package/src/components/administration/dev/WorkflowDocumentActionGrid.tsx +264 -264
- package/src/components/administration/dev/WorkflowDocumentActionHistoryGrid.tsx +172 -172
- package/src/components/administration/dev/WorkflowDocumentActionMailGrid.tsx +161 -161
- package/src/components/administration/dev/WorkflowDocumentGrid.tsx +377 -377
- package/src/components/administration/dev/WorkflowDocumentMailLogGrid.tsx +218 -218
- package/src/components/administration/dev/WorkflowDocumentStatusGrid.tsx +243 -243
- package/src/components/common/ChangeOrgForm.tsx +81 -81
- package/src/components/common/Home.tsx +43 -43
- package/src/components/common/LanguageSwitcher.tsx +25 -25
- package/src/components/common/LayoutHandlers.tsx +11 -11
- package/src/components/common/LoadingMask.tsx +24 -24
- package/src/components/common/Login.tsx +214 -214
- package/src/components/common/MyNotificationsPanel.tsx +109 -109
- package/src/components/common/NotificationItem.tsx +138 -138
- package/src/components/index.ts +9 -9
- package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +324 -324
- package/src/components/templates/DataEntryTemplates/DataEntryUtil.ts +248 -248
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormAction.tsx +60 -60
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementField.tsx +231 -231
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementGroup.tsx +106 -106
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/CheckBox.tsx +64 -64
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/ComboBox.tsx +93 -93
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/Datefield.tsx +65 -65
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/DatetimeField.tsx +64 -64
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/FiltersPanel.tsx +237 -237
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/SystemLookupCombobox.tsx +55 -55
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/TemplateTextField.tsx +17 -17
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/TemplateForm.tsx +387 -387
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/DataGridColumnsUtil.tsx +189 -189
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid.tsx +998 -998
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridMultiRecordAction.tsx +89 -89
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridRecordAction.tsx +95 -95
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridTopBar.tsx +227 -227
- package/src/components/templates/TransferList.tsx +256 -256
- package/src/components/templates/Window/ConfirmationWindow.tsx +55 -55
- package/src/components/templates/attachment/AttachmentCard.tsx +141 -141
- package/src/components/templates/attachment/AttachmentImageViewer.tsx +83 -83
- package/src/components/templates/attachment/AttachmentPanel.tsx +285 -285
- package/src/components/templates/index.ts +35 -33
- package/src/components/templates/report/ExcelReportViewer.tsx +71 -71
- package/src/components/templates/report/ReportViewer.tsx +382 -382
- package/src/components/templates/visuals/DashboardRouteView.tsx +9 -9
- package/src/components/templates/visuals/DashboardViewer.tsx +148 -148
- package/src/components/templates/visuals/WidgetViewer.tsx +198 -198
- package/src/components/templates/visuals/charts/TemplateBarChart.tsx +23 -23
- package/src/components/templates/visuals/charts/TemplateDataCard.tsx +35 -35
- package/src/components/templates/visuals/charts/TemplateGauge.tsx +21 -21
- package/src/components/templates/visuals/charts/TemplateLineChart.tsx +22 -22
- package/src/components/templates/visuals/charts/TemplateLineProgress.tsx +42 -42
- package/src/components/templates/visuals/charts/TemplatePieChart.tsx +24 -24
- package/src/components/templates/workflow/WorkflowDocumentPanel.tsx +606 -606
- package/src/components/templates/workflow/WorkflowDocumentTimeLine.tsx +140 -140
- package/src/components/templates/workflow/WorkflowRouteComponent.tsx +14 -14
- package/src/hooks/UseConfirmationWindow.tsx +54 -54
- package/src/hooks/UseMobile.tsx +13 -13
- package/src/hooks/UseSession.tsx +59 -59
- package/src/hooks/UseWindow.tsx +107 -107
- package/src/hooks/index.ts +12 -12
- package/src/hooks/useApiActions.ts +124 -124
- package/src/hooks/useAxios.tsx +316 -316
- package/src/hooks/useInterval.tsx +23 -23
- package/src/hooks/useLoadingMask.tsx +16 -16
- package/src/hooks/useLookupGridColumn.tsx +35 -35
- package/src/index.ts +4 -4
- package/src/layout/DrawerHeader.tsx +10 -10
- package/src/layout/Layout.tsx +90 -90
- package/src/layout/MainContent.tsx +117 -117
- package/src/layout/MobileDrawer.tsx +103 -103
- package/src/layout/NavigationTree.tsx +298 -298
- package/src/layout/NotificationButton.tsx +207 -207
- package/src/layout/RouteWrapper.tsx +63 -63
- package/src/layout/SideBar.tsx +85 -85
- package/src/layout/TopBar.tsx +289 -289
- package/src/locales/arabic/adminLocalsAr.json +93 -93
- package/src/locales/arabic/common.json +44 -44
- package/src/locales/arabic/devLocalsAr.json +317 -317
- package/src/locales/arabic/index.ts +9 -9
- package/src/locales/english/adminLocalsEn.json +96 -96
- package/src/locales/english/common.json +43 -43
- package/src/locales/english/devLocalsEn.json +318 -318
- package/src/locales/english/index.ts +9 -9
- package/src/locales/i18n.ts +8 -8
- package/src/locales/index.ts +9 -9
- package/src/main.tsx +23 -23
- package/src/navigationItems/Administration/adminNavigationItems.tsx +223 -223
- package/src/navigationItems/Administration/index.tsx +16 -16
- package/src/navigationItems/common/CommonNavigationItems.tsx +12 -12
- package/src/navigationItems/common/index.tsx +7 -7
- package/src/navigationItems/index.tsx +35 -35
- package/src/redux/features/administration/AdministrationStoresMetaData.ts +148 -148
- package/src/redux/features/common/AppInfoSlice.ts +65 -65
- package/src/redux/features/common/AppLayoutSlice.ts +29 -29
- package/src/redux/features/common/CommonStoreSlice.ts +44 -44
- package/src/redux/features/common/LoadingMaskSlice.ts +30 -30
- package/src/redux/features/common/SideBarSlice.ts +27 -27
- package/src/redux/features/common/UserSessionSlice.ts +54 -54
- package/src/redux/store.ts +29 -29
- package/src/routes/administration/adminRoutes.tsx +99 -99
- package/src/routes/administration/devRoutes.tsx +129 -129
- package/src/routes/administration/index.ts +8 -8
- package/src/routes/index.ts +11 -11
- package/src/routes/types/index.ts +6 -6
- package/src/styles/index.css +19 -19
- package/src/types/index.ts +8 -8
- package/src/util/AppUtils.ts +53 -53
- package/src/util/constants.ts +6 -6
- package/src/util/index.ts +2 -2
- package/tsconfig.json +135 -135
- package/vite.config.ts +24 -24
|
@@ -1,207 +1,207 @@
|
|
|
1
|
-
import { IconProp } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
-
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
3
|
-
import {
|
|
4
|
-
Badge,
|
|
5
|
-
Box,
|
|
6
|
-
Button,
|
|
7
|
-
ClickAwayListener,
|
|
8
|
-
Divider,
|
|
9
|
-
Fade,
|
|
10
|
-
IconButton,
|
|
11
|
-
keyframes,
|
|
12
|
-
Paper,
|
|
13
|
-
Popper,
|
|
14
|
-
PopperPlacementType,
|
|
15
|
-
Typography,
|
|
16
|
-
} from "@mui/material";
|
|
17
|
-
import { useEffect, useState } from "react";
|
|
18
|
-
import { useTranslation } from "react-i18next";
|
|
19
|
-
import { useSelector } from "react-redux";
|
|
20
|
-
import { useNavigate } from "react-router-dom";
|
|
21
|
-
import { timeAgo } from "../util";
|
|
22
|
-
import useInterval from "../hooks/useInterval";
|
|
23
|
-
import { useAxios, useSession } from "../hooks";
|
|
24
|
-
import { toast } from "react-toastify";
|
|
25
|
-
import NotificationItem, {
|
|
26
|
-
Notification,
|
|
27
|
-
} from "../components/common/NotificationItem";
|
|
28
|
-
|
|
29
|
-
export const notificationsCheckIntervalSeconds = 1;
|
|
30
|
-
|
|
31
|
-
const NotificationButton: React.FC = () => {
|
|
32
|
-
const { UserInfo } = useSession();
|
|
33
|
-
const [anchorEl, setAnchorEl] = useState<HTMLButtonElement | null>(null);
|
|
34
|
-
const { handleGetRequest, handlePostRequest } = useAxios();
|
|
35
|
-
const navigate = useNavigate();
|
|
36
|
-
const AppLayout = useSelector((state: any) => state.AppLayout);
|
|
37
|
-
const [open, setOpen] = useState(false);
|
|
38
|
-
const [notifications, setNotifications] = useState<Array<Notification>>([]);
|
|
39
|
-
const loadUseNotifications = () => {
|
|
40
|
-
if (UserInfo.isAuthenticated === true) {
|
|
41
|
-
handleGetRequest({
|
|
42
|
-
endPointURI: "api/v1/public/notifications/new",
|
|
43
|
-
showMask: false,
|
|
44
|
-
successCallBkFn: (response: any) => {
|
|
45
|
-
if (response.data.length > notifications.length) {
|
|
46
|
-
toast.info(
|
|
47
|
-
AppLayout.appDirection === "ltr"
|
|
48
|
-
? `You have new notifications`
|
|
49
|
-
: `لديك اشعارات جديدة`,
|
|
50
|
-
{
|
|
51
|
-
autoClose: 3000,
|
|
52
|
-
position:
|
|
53
|
-
AppLayout.appDirection === "ltr"
|
|
54
|
-
? "bottom-right"
|
|
55
|
-
: "bottom-left",
|
|
56
|
-
closeOnClick: true,
|
|
57
|
-
}
|
|
58
|
-
);
|
|
59
|
-
}
|
|
60
|
-
setNotifications(response.data);
|
|
61
|
-
},
|
|
62
|
-
});
|
|
63
|
-
}
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
useInterval(() => {
|
|
67
|
-
loadUseNotifications();
|
|
68
|
-
}, notificationsCheckIntervalSeconds * 1000);
|
|
69
|
-
|
|
70
|
-
const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {
|
|
71
|
-
setAnchorEl(event.currentTarget);
|
|
72
|
-
setOpen(!open);
|
|
73
|
-
};
|
|
74
|
-
return (
|
|
75
|
-
<ClickAwayListener
|
|
76
|
-
onClickAway={() => {
|
|
77
|
-
setOpen(false);
|
|
78
|
-
}}
|
|
79
|
-
>
|
|
80
|
-
<div style={{ cursor: "pointer" }}>
|
|
81
|
-
<IconButton
|
|
82
|
-
color="inherit"
|
|
83
|
-
onClick={handleClick}
|
|
84
|
-
sx={{ marginRight: 1, marginLeft: 1 }}
|
|
85
|
-
>
|
|
86
|
-
<Badge
|
|
87
|
-
anchorOrigin={{
|
|
88
|
-
vertical: "top",
|
|
89
|
-
horizontal: AppLayout.appDirection === "ltr" ? "right" : "left",
|
|
90
|
-
}}
|
|
91
|
-
badgeContent={
|
|
92
|
-
notifications.filter(
|
|
93
|
-
(notificaiton) =>
|
|
94
|
-
notificaiton.isNotified === undefined ||
|
|
95
|
-
notificaiton.isNotified === null
|
|
96
|
-
).length
|
|
97
|
-
}
|
|
98
|
-
color="error"
|
|
99
|
-
>
|
|
100
|
-
<FontAwesomeIcon icon="bell" />
|
|
101
|
-
</Badge>
|
|
102
|
-
</IconButton>
|
|
103
|
-
|
|
104
|
-
<Popper
|
|
105
|
-
// Note: The following zIndex style is specifically for documentation purposes and may not be necessary in your application.
|
|
106
|
-
sx={{
|
|
107
|
-
zIndex: 1200,
|
|
108
|
-
width: "fit-content",
|
|
109
|
-
minWidth: 350,
|
|
110
|
-
display: "flex",
|
|
111
|
-
flexDirection: "column",
|
|
112
|
-
}}
|
|
113
|
-
open={open}
|
|
114
|
-
anchorEl={anchorEl}
|
|
115
|
-
dir={AppLayout.appDirection}
|
|
116
|
-
placement={"bottom"}
|
|
117
|
-
transition
|
|
118
|
-
>
|
|
119
|
-
{({ TransitionProps }) => (
|
|
120
|
-
<Fade {...TransitionProps} timeout={350}>
|
|
121
|
-
<Paper
|
|
122
|
-
sx={{
|
|
123
|
-
padding: 1,
|
|
124
|
-
m: 1,
|
|
125
|
-
maxHeight: 500,
|
|
126
|
-
overflow: "hidden",
|
|
127
|
-
display: "flex",
|
|
128
|
-
flexDirection: "column",
|
|
129
|
-
}}
|
|
130
|
-
>
|
|
131
|
-
<Divider variant="fullWidth" flexItem>
|
|
132
|
-
<Box
|
|
133
|
-
sx={{
|
|
134
|
-
display: "flex",
|
|
135
|
-
alignItems: "center",
|
|
136
|
-
justifyContent: "center",
|
|
137
|
-
marginTop: 2,
|
|
138
|
-
marginBottom: 1,
|
|
139
|
-
}}
|
|
140
|
-
>
|
|
141
|
-
<FontAwesomeIcon
|
|
142
|
-
icon="bell"
|
|
143
|
-
style={{ marginRight: 10, marginLeft: 10 }}
|
|
144
|
-
/>
|
|
145
|
-
{AppLayout.appDirection === "ltr"
|
|
146
|
-
? "Notifications"
|
|
147
|
-
: "الاشعارات"}
|
|
148
|
-
</Box>
|
|
149
|
-
</Divider>
|
|
150
|
-
{notifications.length == 0 ? (
|
|
151
|
-
<Box
|
|
152
|
-
sx={{
|
|
153
|
-
display: "flex",
|
|
154
|
-
alignItems: "center",
|
|
155
|
-
flex: 1,
|
|
156
|
-
justifyContent: "center",
|
|
157
|
-
}}
|
|
158
|
-
>
|
|
159
|
-
<Box>
|
|
160
|
-
{AppLayout.appDirection === "ltr"
|
|
161
|
-
? "You don't have any notifications"
|
|
162
|
-
: "لا يوجد اشعارات"}
|
|
163
|
-
</Box>
|
|
164
|
-
</Box>
|
|
165
|
-
) : (
|
|
166
|
-
<></>
|
|
167
|
-
)}
|
|
168
|
-
<Box
|
|
169
|
-
sx={{
|
|
170
|
-
flex: 1,
|
|
171
|
-
display: "flex",
|
|
172
|
-
flexDirection: "column",
|
|
173
|
-
overflowY: "auto",
|
|
174
|
-
}}
|
|
175
|
-
>
|
|
176
|
-
{notifications.map((notification, index) => {
|
|
177
|
-
return (
|
|
178
|
-
<NotificationItem
|
|
179
|
-
{...notification}
|
|
180
|
-
setOpen={setOpen}
|
|
181
|
-
showDivider={index < notifications.length - 1}
|
|
182
|
-
/>
|
|
183
|
-
);
|
|
184
|
-
})}
|
|
185
|
-
</Box>
|
|
186
|
-
<Divider variant="fullWidth" flexItem>
|
|
187
|
-
<Button
|
|
188
|
-
sx={{ textTransform: "none" }}
|
|
189
|
-
onClick={() => {
|
|
190
|
-
navigate("myNotifications");
|
|
191
|
-
}}
|
|
192
|
-
>
|
|
193
|
-
{AppLayout.appDirection === "ltr"
|
|
194
|
-
? "Show Old Notifications"
|
|
195
|
-
: "عرض الاشعارات القديمة"}
|
|
196
|
-
</Button>
|
|
197
|
-
</Divider>
|
|
198
|
-
</Paper>
|
|
199
|
-
</Fade>
|
|
200
|
-
)}
|
|
201
|
-
</Popper>
|
|
202
|
-
</div>
|
|
203
|
-
</ClickAwayListener>
|
|
204
|
-
);
|
|
205
|
-
};
|
|
206
|
-
|
|
207
|
-
export default NotificationButton;
|
|
1
|
+
import { IconProp } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
3
|
+
import {
|
|
4
|
+
Badge,
|
|
5
|
+
Box,
|
|
6
|
+
Button,
|
|
7
|
+
ClickAwayListener,
|
|
8
|
+
Divider,
|
|
9
|
+
Fade,
|
|
10
|
+
IconButton,
|
|
11
|
+
keyframes,
|
|
12
|
+
Paper,
|
|
13
|
+
Popper,
|
|
14
|
+
PopperPlacementType,
|
|
15
|
+
Typography,
|
|
16
|
+
} from "@mui/material";
|
|
17
|
+
import { useEffect, useState } from "react";
|
|
18
|
+
import { useTranslation } from "react-i18next";
|
|
19
|
+
import { useSelector } from "react-redux";
|
|
20
|
+
import { useNavigate } from "react-router-dom";
|
|
21
|
+
import { timeAgo } from "../util";
|
|
22
|
+
import useInterval from "../hooks/useInterval";
|
|
23
|
+
import { useAxios, useSession } from "../hooks";
|
|
24
|
+
import { toast } from "react-toastify";
|
|
25
|
+
import NotificationItem, {
|
|
26
|
+
Notification,
|
|
27
|
+
} from "../components/common/NotificationItem";
|
|
28
|
+
|
|
29
|
+
export const notificationsCheckIntervalSeconds = 1;
|
|
30
|
+
|
|
31
|
+
const NotificationButton: React.FC = () => {
|
|
32
|
+
const { UserInfo } = useSession();
|
|
33
|
+
const [anchorEl, setAnchorEl] = useState<HTMLButtonElement | null>(null);
|
|
34
|
+
const { handleGetRequest, handlePostRequest } = useAxios();
|
|
35
|
+
const navigate = useNavigate();
|
|
36
|
+
const AppLayout = useSelector((state: any) => state.AppLayout);
|
|
37
|
+
const [open, setOpen] = useState(false);
|
|
38
|
+
const [notifications, setNotifications] = useState<Array<Notification>>([]);
|
|
39
|
+
const loadUseNotifications = () => {
|
|
40
|
+
if (UserInfo.isAuthenticated === true) {
|
|
41
|
+
handleGetRequest({
|
|
42
|
+
endPointURI: "api/v1/public/notifications/new",
|
|
43
|
+
showMask: false,
|
|
44
|
+
successCallBkFn: (response: any) => {
|
|
45
|
+
if (response.data.length > notifications.length) {
|
|
46
|
+
toast.info(
|
|
47
|
+
AppLayout.appDirection === "ltr"
|
|
48
|
+
? `You have new notifications`
|
|
49
|
+
: `لديك اشعارات جديدة`,
|
|
50
|
+
{
|
|
51
|
+
autoClose: 3000,
|
|
52
|
+
position:
|
|
53
|
+
AppLayout.appDirection === "ltr"
|
|
54
|
+
? "bottom-right"
|
|
55
|
+
: "bottom-left",
|
|
56
|
+
closeOnClick: true,
|
|
57
|
+
}
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
setNotifications(response.data);
|
|
61
|
+
},
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
useInterval(() => {
|
|
67
|
+
loadUseNotifications();
|
|
68
|
+
}, notificationsCheckIntervalSeconds * 1000);
|
|
69
|
+
|
|
70
|
+
const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {
|
|
71
|
+
setAnchorEl(event.currentTarget);
|
|
72
|
+
setOpen(!open);
|
|
73
|
+
};
|
|
74
|
+
return (
|
|
75
|
+
<ClickAwayListener
|
|
76
|
+
onClickAway={() => {
|
|
77
|
+
setOpen(false);
|
|
78
|
+
}}
|
|
79
|
+
>
|
|
80
|
+
<div style={{ cursor: "pointer" }}>
|
|
81
|
+
<IconButton
|
|
82
|
+
color="inherit"
|
|
83
|
+
onClick={handleClick}
|
|
84
|
+
sx={{ marginRight: 1, marginLeft: 1 }}
|
|
85
|
+
>
|
|
86
|
+
<Badge
|
|
87
|
+
anchorOrigin={{
|
|
88
|
+
vertical: "top",
|
|
89
|
+
horizontal: AppLayout.appDirection === "ltr" ? "right" : "left",
|
|
90
|
+
}}
|
|
91
|
+
badgeContent={
|
|
92
|
+
notifications.filter(
|
|
93
|
+
(notificaiton) =>
|
|
94
|
+
notificaiton.isNotified === undefined ||
|
|
95
|
+
notificaiton.isNotified === null
|
|
96
|
+
).length
|
|
97
|
+
}
|
|
98
|
+
color="error"
|
|
99
|
+
>
|
|
100
|
+
<FontAwesomeIcon icon="bell" />
|
|
101
|
+
</Badge>
|
|
102
|
+
</IconButton>
|
|
103
|
+
|
|
104
|
+
<Popper
|
|
105
|
+
// Note: The following zIndex style is specifically for documentation purposes and may not be necessary in your application.
|
|
106
|
+
sx={{
|
|
107
|
+
zIndex: 1200,
|
|
108
|
+
width: "fit-content",
|
|
109
|
+
minWidth: 350,
|
|
110
|
+
display: "flex",
|
|
111
|
+
flexDirection: "column",
|
|
112
|
+
}}
|
|
113
|
+
open={open}
|
|
114
|
+
anchorEl={anchorEl}
|
|
115
|
+
dir={AppLayout.appDirection}
|
|
116
|
+
placement={"bottom"}
|
|
117
|
+
transition
|
|
118
|
+
>
|
|
119
|
+
{({ TransitionProps }) => (
|
|
120
|
+
<Fade {...TransitionProps} timeout={350}>
|
|
121
|
+
<Paper
|
|
122
|
+
sx={{
|
|
123
|
+
padding: 1,
|
|
124
|
+
m: 1,
|
|
125
|
+
maxHeight: 500,
|
|
126
|
+
overflow: "hidden",
|
|
127
|
+
display: "flex",
|
|
128
|
+
flexDirection: "column",
|
|
129
|
+
}}
|
|
130
|
+
>
|
|
131
|
+
<Divider variant="fullWidth" flexItem>
|
|
132
|
+
<Box
|
|
133
|
+
sx={{
|
|
134
|
+
display: "flex",
|
|
135
|
+
alignItems: "center",
|
|
136
|
+
justifyContent: "center",
|
|
137
|
+
marginTop: 2,
|
|
138
|
+
marginBottom: 1,
|
|
139
|
+
}}
|
|
140
|
+
>
|
|
141
|
+
<FontAwesomeIcon
|
|
142
|
+
icon="bell"
|
|
143
|
+
style={{ marginRight: 10, marginLeft: 10 }}
|
|
144
|
+
/>
|
|
145
|
+
{AppLayout.appDirection === "ltr"
|
|
146
|
+
? "Notifications"
|
|
147
|
+
: "الاشعارات"}
|
|
148
|
+
</Box>
|
|
149
|
+
</Divider>
|
|
150
|
+
{notifications.length == 0 ? (
|
|
151
|
+
<Box
|
|
152
|
+
sx={{
|
|
153
|
+
display: "flex",
|
|
154
|
+
alignItems: "center",
|
|
155
|
+
flex: 1,
|
|
156
|
+
justifyContent: "center",
|
|
157
|
+
}}
|
|
158
|
+
>
|
|
159
|
+
<Box>
|
|
160
|
+
{AppLayout.appDirection === "ltr"
|
|
161
|
+
? "You don't have any notifications"
|
|
162
|
+
: "لا يوجد اشعارات"}
|
|
163
|
+
</Box>
|
|
164
|
+
</Box>
|
|
165
|
+
) : (
|
|
166
|
+
<></>
|
|
167
|
+
)}
|
|
168
|
+
<Box
|
|
169
|
+
sx={{
|
|
170
|
+
flex: 1,
|
|
171
|
+
display: "flex",
|
|
172
|
+
flexDirection: "column",
|
|
173
|
+
overflowY: "auto",
|
|
174
|
+
}}
|
|
175
|
+
>
|
|
176
|
+
{notifications.map((notification, index) => {
|
|
177
|
+
return (
|
|
178
|
+
<NotificationItem
|
|
179
|
+
{...notification}
|
|
180
|
+
setOpen={setOpen}
|
|
181
|
+
showDivider={index < notifications.length - 1}
|
|
182
|
+
/>
|
|
183
|
+
);
|
|
184
|
+
})}
|
|
185
|
+
</Box>
|
|
186
|
+
<Divider variant="fullWidth" flexItem>
|
|
187
|
+
<Button
|
|
188
|
+
sx={{ textTransform: "none" }}
|
|
189
|
+
onClick={() => {
|
|
190
|
+
navigate("myNotifications");
|
|
191
|
+
}}
|
|
192
|
+
>
|
|
193
|
+
{AppLayout.appDirection === "ltr"
|
|
194
|
+
? "Show Old Notifications"
|
|
195
|
+
: "عرض الاشعارات القديمة"}
|
|
196
|
+
</Button>
|
|
197
|
+
</Divider>
|
|
198
|
+
</Paper>
|
|
199
|
+
</Fade>
|
|
200
|
+
)}
|
|
201
|
+
</Popper>
|
|
202
|
+
</div>
|
|
203
|
+
</ClickAwayListener>
|
|
204
|
+
);
|
|
205
|
+
};
|
|
206
|
+
|
|
207
|
+
export default NotificationButton;
|
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
import { Box } from "@mui/material";
|
|
2
|
-
import { useSession } from "../hooks";
|
|
3
|
-
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
4
|
-
|
|
5
|
-
type RouteWrapperProps = {
|
|
6
|
-
authority?: string;
|
|
7
|
-
applicationModule?: string;
|
|
8
|
-
children?: React.ReactNode;
|
|
9
|
-
};
|
|
10
|
-
const RouteWrapper: React.FC<RouteWrapperProps> = (props) => {
|
|
11
|
-
const { isUserAuthorized, isCurrentOrganizationAuthorizedToModule } =
|
|
12
|
-
useSession();
|
|
13
|
-
if (
|
|
14
|
-
props?.applicationModule &&
|
|
15
|
-
!isCurrentOrganizationAuthorizedToModule(props?.applicationModule)
|
|
16
|
-
) {
|
|
17
|
-
return (
|
|
18
|
-
<Box
|
|
19
|
-
sx={{
|
|
20
|
-
flex: 1,
|
|
21
|
-
display: "flex",
|
|
22
|
-
flexDirection: "column",
|
|
23
|
-
alignItems: "center",
|
|
24
|
-
justifyContent: "center",
|
|
25
|
-
color: "red",
|
|
26
|
-
}}
|
|
27
|
-
>
|
|
28
|
-
<h2>
|
|
29
|
-
<FontAwesomeIcon
|
|
30
|
-
style={{ marginRight: 10, marginLeft: 10 }}
|
|
31
|
-
icon="cancel"
|
|
32
|
-
/>
|
|
33
|
-
Your organization didn't subscribe for this system module
|
|
34
|
-
</h2>
|
|
35
|
-
</Box>
|
|
36
|
-
);
|
|
37
|
-
}
|
|
38
|
-
if (props?.authority && !isUserAuthorized(props.authority)) {
|
|
39
|
-
return (
|
|
40
|
-
<Box
|
|
41
|
-
sx={{
|
|
42
|
-
flex: 1,
|
|
43
|
-
display: "flex",
|
|
44
|
-
flexDirection: "column",
|
|
45
|
-
alignItems: "center",
|
|
46
|
-
justifyContent: "center",
|
|
47
|
-
color: "red",
|
|
48
|
-
}}
|
|
49
|
-
>
|
|
50
|
-
<h2>
|
|
51
|
-
<FontAwesomeIcon
|
|
52
|
-
style={{ marginRight: 10, marginLeft: 10 }}
|
|
53
|
-
icon="cancel"
|
|
54
|
-
/>
|
|
55
|
-
You aren't authorized to access this page
|
|
56
|
-
</h2>
|
|
57
|
-
</Box>
|
|
58
|
-
);
|
|
59
|
-
}
|
|
60
|
-
return <>{props.children}</>;
|
|
61
|
-
};
|
|
62
|
-
|
|
63
|
-
export default RouteWrapper;
|
|
1
|
+
import { Box } from "@mui/material";
|
|
2
|
+
import { useSession } from "../hooks";
|
|
3
|
+
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
4
|
+
|
|
5
|
+
type RouteWrapperProps = {
|
|
6
|
+
authority?: string;
|
|
7
|
+
applicationModule?: string;
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
};
|
|
10
|
+
const RouteWrapper: React.FC<RouteWrapperProps> = (props) => {
|
|
11
|
+
const { isUserAuthorized, isCurrentOrganizationAuthorizedToModule } =
|
|
12
|
+
useSession();
|
|
13
|
+
if (
|
|
14
|
+
props?.applicationModule &&
|
|
15
|
+
!isCurrentOrganizationAuthorizedToModule(props?.applicationModule)
|
|
16
|
+
) {
|
|
17
|
+
return (
|
|
18
|
+
<Box
|
|
19
|
+
sx={{
|
|
20
|
+
flex: 1,
|
|
21
|
+
display: "flex",
|
|
22
|
+
flexDirection: "column",
|
|
23
|
+
alignItems: "center",
|
|
24
|
+
justifyContent: "center",
|
|
25
|
+
color: "red",
|
|
26
|
+
}}
|
|
27
|
+
>
|
|
28
|
+
<h2>
|
|
29
|
+
<FontAwesomeIcon
|
|
30
|
+
style={{ marginRight: 10, marginLeft: 10 }}
|
|
31
|
+
icon="cancel"
|
|
32
|
+
/>
|
|
33
|
+
Your organization didn't subscribe for this system module
|
|
34
|
+
</h2>
|
|
35
|
+
</Box>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
if (props?.authority && !isUserAuthorized(props.authority)) {
|
|
39
|
+
return (
|
|
40
|
+
<Box
|
|
41
|
+
sx={{
|
|
42
|
+
flex: 1,
|
|
43
|
+
display: "flex",
|
|
44
|
+
flexDirection: "column",
|
|
45
|
+
alignItems: "center",
|
|
46
|
+
justifyContent: "center",
|
|
47
|
+
color: "red",
|
|
48
|
+
}}
|
|
49
|
+
>
|
|
50
|
+
<h2>
|
|
51
|
+
<FontAwesomeIcon
|
|
52
|
+
style={{ marginRight: 10, marginLeft: 10 }}
|
|
53
|
+
icon="cancel"
|
|
54
|
+
/>
|
|
55
|
+
You aren't authorized to access this page
|
|
56
|
+
</h2>
|
|
57
|
+
</Box>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
return <>{props.children}</>;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
export default RouteWrapper;
|