@asaleh37/ui-base 25.6.2-0.4 → 25.6.17-1

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