@asaleh37/ui-base 25.6.1 → 25.6.2-0.2

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.
Files changed (161) hide show
  1. package/.github/workflows/publish-npm.yml +31 -0
  2. package/README.md +51 -51
  3. package/dist/index.d.ts +3 -0
  4. package/dist/index.js +6 -6
  5. package/dist/index.js.map +1 -1
  6. package/dist/index.mjs +6 -6
  7. package/dist/index.mjs.map +1 -1
  8. package/eslint.config.js +29 -29
  9. package/index.html +13 -13
  10. package/package.json +120 -120
  11. package/rollup.config-1748377725725.cjs +50 -50
  12. package/rollup.config.js +45 -45
  13. package/src/components/App.tsx +123 -123
  14. package/src/components/BaseApp.tsx +53 -53
  15. package/src/components/administration/admin/OrgMemberRoleForm.tsx +83 -83
  16. package/src/components/administration/admin/OrganizationApplicationModuleGrid.tsx +107 -107
  17. package/src/components/administration/admin/OrganizationGrid.tsx +82 -82
  18. package/src/components/administration/admin/OrganizationMemberGrid.tsx +176 -176
  19. package/src/components/administration/admin/OrganizationMemberRoleGrid.tsx +87 -87
  20. package/src/components/administration/admin/OrganizationRankGrid.tsx +133 -133
  21. package/src/components/administration/admin/OrganizationUnitGrid.tsx +143 -143
  22. package/src/components/administration/admin/OrganizationUnitTypeGrid.tsx +108 -108
  23. package/src/components/administration/admin/PersonGrid.tsx +334 -231
  24. package/src/components/administration/admin/RoleAuthoritiesForm.tsx +82 -82
  25. package/src/components/administration/admin/SystemApplicationAuthorityGrid.tsx +117 -126
  26. package/src/components/administration/admin/SystemApplicationGrid.tsx +83 -83
  27. package/src/components/administration/admin/SystemApplicationModuleGrid.tsx +96 -96
  28. package/src/components/administration/admin/SystemApplicationRoleAuthorityGrid.tsx +75 -67
  29. package/src/components/administration/admin/SystemApplicationRoleGrid.tsx +116 -116
  30. package/src/components/administration/dev/AttachmentConfigGrid.tsx +223 -223
  31. package/src/components/administration/dev/AttachmentGrid.tsx +172 -172
  32. package/src/components/administration/dev/BluePrintGrid.tsx +129 -129
  33. package/src/components/administration/dev/DashboardGrid.tsx +173 -173
  34. package/src/components/administration/dev/DashboardWidgetGrid.tsx +164 -164
  35. package/src/components/administration/dev/DataQueryGrid.tsx +206 -206
  36. package/src/components/administration/dev/DataQueryParameterGrid.tsx +191 -191
  37. package/src/components/administration/dev/DataQueryParametersForm.tsx +84 -84
  38. package/src/components/administration/dev/DatasourceConnectionGrid.tsx +150 -150
  39. package/src/components/administration/dev/EntityParameterGrid.tsx +279 -279
  40. package/src/components/administration/dev/LookupGrid.tsx +120 -120
  41. package/src/components/administration/dev/MailAttachmentGrid.tsx +155 -155
  42. package/src/components/administration/dev/MailBodyGrid.tsx +216 -216
  43. package/src/components/administration/dev/MailNotificationQueueGrid.tsx +245 -245
  44. package/src/components/administration/dev/MailRecipientGrid.tsx +169 -169
  45. package/src/components/administration/dev/MailSenderConfigGrid.tsx +478 -478
  46. package/src/components/administration/dev/MailTemplateGrid.tsx +384 -384
  47. package/src/components/administration/dev/NotificationGrid.tsx +432 -432
  48. package/src/components/administration/dev/NotificationQueueGrid.tsx +222 -222
  49. package/src/components/administration/dev/ReportGrid.tsx +506 -506
  50. package/src/components/administration/dev/ReportParameterGrid.tsx +186 -186
  51. package/src/components/administration/dev/ReportParametersForm.tsx +84 -84
  52. package/src/components/administration/dev/WidgetGrid.tsx +431 -431
  53. package/src/components/administration/dev/WorkflowDocumentActionGrid.tsx +264 -264
  54. package/src/components/administration/dev/WorkflowDocumentActionHistoryGrid.tsx +172 -172
  55. package/src/components/administration/dev/WorkflowDocumentActionMailGrid.tsx +161 -161
  56. package/src/components/administration/dev/WorkflowDocumentGrid.tsx +377 -377
  57. package/src/components/administration/dev/WorkflowDocumentMailLogGrid.tsx +218 -218
  58. package/src/components/administration/dev/WorkflowDocumentStatusGrid.tsx +243 -243
  59. package/src/components/common/ChangeOrgForm.tsx +81 -81
  60. package/src/components/common/Home.tsx +43 -43
  61. package/src/components/common/LanguageSwitcher.tsx +25 -25
  62. package/src/components/common/LayoutHandlers.tsx +11 -11
  63. package/src/components/common/LoadingMask.tsx +24 -24
  64. package/src/components/common/Login.tsx +214 -214
  65. package/src/components/common/MyNotificationsPanel.tsx +103 -103
  66. package/src/components/common/NotificationItem.tsx +138 -138
  67. package/src/components/index.ts +9 -9
  68. package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +324 -324
  69. package/src/components/templates/DataEntryTemplates/DataEntryUtil.ts +248 -248
  70. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormAction.tsx +60 -60
  71. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementField.tsx +231 -231
  72. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementGroup.tsx +106 -106
  73. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/CheckBox.tsx +64 -64
  74. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/ComboBox.tsx +93 -93
  75. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/Datefield.tsx +65 -65
  76. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/DatetimeField.tsx +64 -64
  77. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/FiltersPanel.tsx +237 -237
  78. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/SystemLookupCombobox.tsx +55 -55
  79. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/TemplateTextField.tsx +17 -17
  80. package/src/components/templates/DataEntryTemplates/TemplateDataForm/TemplateForm.tsx +387 -387
  81. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/DataGridColumnsUtil.tsx +189 -189
  82. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid.tsx +998 -998
  83. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridMultiRecordAction.tsx +89 -89
  84. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridRecordAction.tsx +95 -95
  85. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridTopBar.tsx +227 -227
  86. package/src/components/templates/TransferList.tsx +257 -257
  87. package/src/components/templates/Window/ConfirmationWindow.tsx +55 -55
  88. package/src/components/templates/attachment/AttachmentCard.tsx +141 -141
  89. package/src/components/templates/attachment/AttachmentImageViewer.tsx +45 -45
  90. package/src/components/templates/attachment/AttachmentPanel.tsx +271 -271
  91. package/src/components/templates/index.ts +33 -33
  92. package/src/components/templates/report/ExcelReportViewer.tsx +71 -71
  93. package/src/components/templates/report/ReportViewer.tsx +382 -382
  94. package/src/components/templates/visuals/DashboardRouteView.tsx +9 -9
  95. package/src/components/templates/visuals/DashboardViewer.tsx +148 -148
  96. package/src/components/templates/visuals/WidgetViewer.tsx +198 -198
  97. package/src/components/templates/visuals/charts/TemplateBarChart.tsx +23 -23
  98. package/src/components/templates/visuals/charts/TemplateDataCard.tsx +35 -35
  99. package/src/components/templates/visuals/charts/TemplateGauge.tsx +21 -21
  100. package/src/components/templates/visuals/charts/TemplateLineChart.tsx +22 -22
  101. package/src/components/templates/visuals/charts/TemplateLineProgress.tsx +42 -42
  102. package/src/components/templates/visuals/charts/TemplatePieChart.tsx +24 -24
  103. package/src/components/templates/workflow/WorkflowDocumentPanel.tsx +606 -606
  104. package/src/components/templates/workflow/WorkflowDocumentTimeLine.tsx +140 -140
  105. package/src/components/templates/workflow/WorkflowRouteComponent.tsx +14 -14
  106. package/src/hooks/UseConfirmationWindow.tsx +54 -54
  107. package/src/hooks/UseMobile.tsx +13 -13
  108. package/src/hooks/UseSession.tsx +59 -40
  109. package/src/hooks/UseWindow.tsx +107 -107
  110. package/src/hooks/index.ts +7 -7
  111. package/src/hooks/useApiActions.ts +124 -124
  112. package/src/hooks/useAxios.tsx +316 -316
  113. package/src/hooks/useInterval.tsx +23 -23
  114. package/src/hooks/useLoadingMask.tsx +16 -16
  115. package/src/hooks/useLookupGridColumn.tsx +35 -35
  116. package/src/index.ts +4 -4
  117. package/src/layout/DrawerHeader.tsx +10 -10
  118. package/src/layout/Layout.tsx +90 -90
  119. package/src/layout/MainContent.tsx +117 -114
  120. package/src/layout/MobileDrawer.tsx +103 -103
  121. package/src/layout/NavigationTree.tsx +298 -295
  122. package/src/layout/NotificationButton.tsx +207 -207
  123. package/src/layout/RouteWrapper.tsx +63 -36
  124. package/src/layout/SideBar.tsx +85 -85
  125. package/src/layout/TopBar.tsx +215 -215
  126. package/src/locales/arabic/adminLocalsAr.json +93 -93
  127. package/src/locales/arabic/common.json +44 -44
  128. package/src/locales/arabic/devLocalsAr.json +317 -317
  129. package/src/locales/arabic/index.ts +9 -9
  130. package/src/locales/english/adminLocalsEn.json +96 -96
  131. package/src/locales/english/common.json +43 -43
  132. package/src/locales/english/devLocalsEn.json +318 -318
  133. package/src/locales/english/index.ts +9 -9
  134. package/src/locales/i18n.ts +8 -8
  135. package/src/locales/index.ts +9 -9
  136. package/src/main.tsx +23 -23
  137. package/src/navigationItems/Administration/adminNavigationItems.tsx +223 -222
  138. package/src/navigationItems/Administration/index.tsx +16 -16
  139. package/src/navigationItems/common/CommonNavigationItems.tsx +12 -12
  140. package/src/navigationItems/common/index.tsx +7 -7
  141. package/src/navigationItems/index.tsx +35 -34
  142. package/src/redux/features/administration/AdministrationStoresMetaData.ts +148 -126
  143. package/src/redux/features/common/AppInfoSlice.ts +63 -63
  144. package/src/redux/features/common/AppLayoutSlice.ts +29 -29
  145. package/src/redux/features/common/CommonStoreSlice.ts +44 -44
  146. package/src/redux/features/common/LoadingMaskSlice.ts +30 -30
  147. package/src/redux/features/common/SideBarSlice.ts +27 -27
  148. package/src/redux/features/common/UserSessionSlice.ts +54 -54
  149. package/src/redux/store.ts +29 -29
  150. package/src/routes/administration/adminRoutes.tsx +99 -99
  151. package/src/routes/administration/devRoutes.tsx +129 -129
  152. package/src/routes/administration/index.ts +8 -8
  153. package/src/routes/index.ts +11 -11
  154. package/src/routes/types/index.ts +6 -5
  155. package/src/styles/index.css +19 -19
  156. package/src/types/index.ts +8 -8
  157. package/src/util/AppUtils.ts +53 -53
  158. package/src/util/constants.ts +6 -6
  159. package/src/util/index.ts +2 -2
  160. package/tsconfig.json +135 -135
  161. package/vite.config.ts +24 -36
@@ -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,36 +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
- children?: React.ReactNode;
8
- };
9
- const RouteWrapper: React.FC<RouteWrapperProps> = (props) => {
10
- const { isUserAuthorized } = useSession();
11
- if (props?.authority && !isUserAuthorized(props.authority)) {
12
- return (
13
- <Box
14
- sx={{
15
- flex: 1,
16
- display: "flex",
17
- flexDirection: "column",
18
- alignItems: "center",
19
- justifyContent: "center",
20
- color: "red",
21
- }}
22
- >
23
- <h2>
24
- <FontAwesomeIcon
25
- style={{ marginRight: 10, marginLeft: 10 }}
26
- icon="cancel"
27
- />
28
- You aren't authorized to access this page
29
- </h2>
30
- </Box>
31
- );
32
- }
33
- return <>{props.children}</>;
34
- };
35
-
36
- 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;