@asaleh37/ui-base 1.2.3 → 1.2.5

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 (157) hide show
  1. package/dist/index.d.ts +20 -13
  2. package/dist/index.js +6 -6
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.mjs +6 -6
  5. package/dist/index.mjs.map +1 -1
  6. package/package.json +15 -3
  7. package/src/components/App.tsx +1 -1
  8. package/src/components/BaseApp.tsx +2 -19
  9. package/src/components/administration/admin/OrgMemberRoleForm.tsx +83 -0
  10. package/src/components/administration/admin/OrganizationApplicationModuleGrid.tsx +131 -0
  11. package/src/components/administration/admin/OrganizationGrid.tsx +165 -0
  12. package/src/components/administration/admin/OrganizationMemberGrid.tsx +176 -0
  13. package/src/components/administration/admin/OrganizationMemberRoleGrid.tsx +87 -0
  14. package/src/components/{admin → administration/admin}/OrganizationRankGrid.tsx +49 -19
  15. package/src/components/administration/admin/OrganizationUnitGrid.tsx +139 -0
  16. package/src/components/administration/admin/OrganizationUnitTypeGrid.tsx +121 -0
  17. package/src/components/administration/admin/PersonGrid.tsx +195 -0
  18. package/src/components/{admin → administration/admin}/RoleAuthoritiesForm.tsx +30 -11
  19. package/src/components/administration/admin/SystemApplicationAuthorityGrid.tsx +142 -0
  20. package/src/components/administration/admin/SystemApplicationGrid.tsx +161 -0
  21. package/src/components/administration/admin/SystemApplicationModuleGrid.tsx +109 -0
  22. package/src/components/administration/admin/SystemApplicationRoleAuthorityGrid.tsx +67 -0
  23. package/src/components/administration/admin/SystemApplicationRoleGrid.tsx +130 -0
  24. package/src/components/administration/dev/BluePrintGrid.tsx +129 -0
  25. package/src/components/administration/dev/DashboardGrid.tsx +173 -0
  26. package/src/components/administration/dev/DashboardWidgetGrid.tsx +164 -0
  27. package/src/components/administration/dev/DataQueryGrid.tsx +206 -0
  28. package/src/components/administration/dev/DataQueryParameterGrid.tsx +191 -0
  29. package/src/components/administration/dev/DataQueryParametersForm.tsx +84 -0
  30. package/src/components/administration/dev/DatasourceConnectionGrid.tsx +150 -0
  31. package/src/components/administration/dev/EntityParameterGrid.tsx +279 -0
  32. package/src/components/administration/dev/LookupGrid.tsx +131 -0
  33. package/src/components/administration/dev/MailAttachmentGrid.tsx +155 -0
  34. package/src/components/administration/dev/MailBodyGrid.tsx +215 -0
  35. package/src/components/{admin → administration/dev}/MailNotificationQueueGrid.tsx +114 -26
  36. package/src/components/administration/dev/MailRecipientGrid.tsx +169 -0
  37. package/src/components/administration/dev/MailSenderConfigGrid.tsx +478 -0
  38. package/src/components/administration/dev/MailTemplateGrid.tsx +388 -0
  39. package/src/components/administration/dev/ReportGrid.tsx +504 -0
  40. package/src/components/administration/dev/ReportParameterGrid.tsx +186 -0
  41. package/src/components/administration/dev/ReportParametersForm.tsx +84 -0
  42. package/src/components/administration/dev/WidgetGrid.tsx +431 -0
  43. package/src/components/administration/dev/WorkflowDocumentActionGrid.tsx +264 -0
  44. package/src/components/administration/dev/WorkflowDocumentActionHistoryGrid.tsx +172 -0
  45. package/src/components/administration/dev/WorkflowDocumentActionMailGrid.tsx +161 -0
  46. package/src/components/administration/dev/WorkflowDocumentGrid.tsx +377 -0
  47. package/src/components/{admin → administration/dev}/WorkflowDocumentMailLogGrid.tsx +87 -10
  48. package/src/components/administration/dev/WorkflowDocumentStatusGrid.tsx +243 -0
  49. package/src/components/common/ChangeOrgForm.tsx +81 -0
  50. package/src/components/common/Home.tsx +28 -22
  51. package/src/components/common/LoadingMask.tsx +9 -4
  52. package/src/components/common/Login.tsx +9 -13
  53. package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +30 -6
  54. package/src/components/templates/DataEntryTemplates/DataEntryUtil.ts +46 -5
  55. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementField.tsx +64 -5
  56. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementGroup.tsx +11 -3
  57. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/CheckBox.tsx +2 -2
  58. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/ComboBox.tsx +1 -2
  59. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/HtmlEditor.tsx +144 -0
  60. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/SystemLookupCombobox.tsx +55 -0
  61. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/TemplateTextField.tsx +9 -1
  62. package/src/components/templates/DataEntryTemplates/TemplateDataForm/TemplateForm.tsx +45 -5
  63. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/DataGridColumnsUtil.tsx +8 -7
  64. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid.tsx +38 -10
  65. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridRecordAction.tsx +4 -1
  66. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridTopBar.tsx +3 -4
  67. package/src/components/templates/TransferList.tsx +16 -6
  68. package/src/components/templates/index.ts +0 -2
  69. package/src/components/templates/report/ExcelReportViewer.tsx +65 -0
  70. package/src/components/templates/report/ReportViewer.tsx +382 -0
  71. package/src/components/templates/visuals/DashboardRouteView.tsx +9 -0
  72. package/src/components/templates/visuals/DashboardViewer.tsx +148 -0
  73. package/src/components/templates/visuals/WidgetViewer.tsx +198 -0
  74. package/src/components/templates/visuals/charts/TemplateBarChart.tsx +9 -2
  75. package/src/components/templates/visuals/charts/TemplateDataCard.tsx +6 -31
  76. package/src/components/templates/visuals/charts/TemplateGauge.tsx +8 -3
  77. package/src/components/templates/visuals/charts/TemplateLineChart.tsx +8 -2
  78. package/src/components/templates/visuals/charts/TemplateLineProgress.tsx +5 -3
  79. package/src/components/templates/visuals/charts/TemplatePieChart.tsx +1 -2
  80. package/src/components/templates/workflow/WorkflowDocumentPanel.tsx +581 -0
  81. package/src/components/templates/workflow/WorkflowDocumentTimeLine.tsx +134 -0
  82. package/src/hooks/UseSession.tsx +3 -7
  83. package/src/hooks/UseWindow.tsx +2 -1
  84. package/src/hooks/useAxios.tsx +9 -27
  85. package/src/hooks/useLookupGridColumn.tsx +35 -0
  86. package/src/layout/Layout.tsx +2 -46
  87. package/src/layout/MainContent.tsx +60 -7
  88. package/src/layout/MobileDrawer.tsx +5 -5
  89. package/src/layout/NavigationTree.tsx +0 -1
  90. package/src/layout/RouteWrapper.tsx +36 -0
  91. package/src/layout/SideBar.tsx +15 -10
  92. package/src/layout/TopBar.tsx +139 -71
  93. package/src/locales/arabic/adminLocalsAr.json +81 -344
  94. package/src/locales/arabic/common.json +11 -1
  95. package/src/locales/arabic/devLocalsAr.json +280 -0
  96. package/src/locales/arabic/index.ts +2 -0
  97. package/src/locales/english/adminLocalsEn.json +86 -346
  98. package/src/locales/english/common.json +11 -1
  99. package/src/locales/english/devLocalsEn.json +281 -0
  100. package/src/locales/english/index.ts +3 -0
  101. package/src/main.tsx +5 -6
  102. package/src/navigationItems/Administration/adminNavigationItems.tsx +65 -99
  103. package/src/navigationItems/Administration/index.tsx +10 -65
  104. package/src/redux/features/administration/AdministrationStoresMetaData.ts +45 -12
  105. package/src/redux/features/common/AppLayoutSlice.ts +0 -8
  106. package/src/redux/features/common/CommonStoreSlice.ts +4 -0
  107. package/src/redux/features/common/SideBarSlice.ts +29 -0
  108. package/src/redux/features/common/UserSessionSlice.ts +15 -23
  109. package/src/redux/store.ts +1 -1
  110. package/src/routes/administration/adminRoutes.tsx +41 -222
  111. package/src/routes/administration/devRoutes.tsx +90 -0
  112. package/src/routes/administration/index.ts +5 -1
  113. package/src/routes/index.ts +1 -0
  114. package/src/styles/index.css +3 -3
  115. package/src/util/AppUtils.ts +5 -0
  116. package/vite.config.ts +14 -0
  117. package/src/components/admin/AttachmentGrid.tsx +0 -116
  118. package/src/components/admin/AuthorityGrid.tsx +0 -88
  119. package/src/components/admin/BluePrintGrid.tsx +0 -55
  120. package/src/components/admin/BluePrintPageGrid.tsx +0 -85
  121. package/src/components/admin/BluePrintPointGrid.tsx +0 -85
  122. package/src/components/admin/DashboardGrid.tsx +0 -95
  123. package/src/components/admin/DashboardWidgetGrid.tsx +0 -75
  124. package/src/components/admin/DataQueryGrid.tsx +0 -75
  125. package/src/components/admin/DataQueryParameterGrid.tsx +0 -98
  126. package/src/components/admin/DatasourceConnectionGrid.tsx +0 -98
  127. package/src/components/admin/EmployeeGrid.tsx +0 -105
  128. package/src/components/admin/EntityParameterGrid.tsx +0 -125
  129. package/src/components/admin/ExcelUploaderDetailGrid.tsx +0 -78
  130. package/src/components/admin/ExcelUploaderHeaderGrid.tsx +0 -78
  131. package/src/components/admin/LookupGrid.tsx +0 -95
  132. package/src/components/admin/MailAttachmentGrid.tsx +0 -65
  133. package/src/components/admin/MailBodyGrid.tsx +0 -105
  134. package/src/components/admin/MailRecipientGrid.tsx +0 -75
  135. package/src/components/admin/MailTemplateGrid.tsx +0 -145
  136. package/src/components/admin/NewTableGrid.tsx +0 -65
  137. package/src/components/admin/NotificationGrid.tsx +0 -115
  138. package/src/components/admin/NotificationQueueGrid.tsx +0 -125
  139. package/src/components/admin/OrganizationApplicationGrid.tsx +0 -81
  140. package/src/components/admin/OrganizationGrid.tsx +0 -65
  141. package/src/components/admin/OrganizationUnitGrid.tsx +0 -85
  142. package/src/components/admin/OrganizationUserGrid.tsx +0 -75
  143. package/src/components/admin/OrganizationUserRoleGrid.tsx +0 -98
  144. package/src/components/admin/ReportGrid.tsx +0 -155
  145. package/src/components/admin/ReportParameterGrid.tsx +0 -95
  146. package/src/components/admin/RoleAuthorityGrid.tsx +0 -65
  147. package/src/components/admin/RoleGrid.tsx +0 -132
  148. package/src/components/admin/UserAccountGrid.tsx +0 -65
  149. package/src/components/admin/UserRequestGrid.tsx +0 -145
  150. package/src/components/admin/WidgetGrid.tsx +0 -175
  151. package/src/components/admin/WorkflowDocumentActionGrid.tsx +0 -111
  152. package/src/components/admin/WorkflowDocumentActionHistoryGrid.tsx +0 -111
  153. package/src/components/admin/WorkflowDocumentActionMailGrid.tsx +0 -71
  154. package/src/components/admin/WorkflowDocumentGrid.tsx +0 -185
  155. package/src/components/admin/WorkflowDocumentStatusGrid.tsx +0 -121
  156. package/src/components/templates/visuals/TemplateDashboard.tsx +0 -126
  157. package/src/redux/features/CounterSlice.tsx +0 -13
@@ -0,0 +1,281 @@
1
+ {
2
+ "DEVELOPMENT_TOOLS": "Development Tools",
3
+ "SYSTEM_MONITORING": "System Monitoring",
4
+ "dev": "dev",
5
+ "ATTACHMENT_SINGULAR": "attachment",
6
+ "ATTACHMENT_PLURAL": "attachments",
7
+ "ATTACHMENT_ATTACHMENT_NUMBER": "Attachment number",
8
+ "ATTACHMENT_ATTACHMENT_SIZE": "Attachment size",
9
+ "ATTACHMENT_ATTACHMENT_TYPE": "Attachment type",
10
+ "ATTACHMENT_CATEGORY": "Category",
11
+ "ATTACHMENT_DOC_TYPE": "Doc type",
12
+ "ATTACHMENT_FILE_NAME": "File name",
13
+ "ATTACHMENT_REF_KEY": "Ref key",
14
+ "ATTACHMENT_REMARK": "Remark",
15
+ "BLUE_PRINT_SINGULAR": "Blueprint",
16
+ "BLUE_PRINT_PLURAL": "Blueprints",
17
+ "BLUE_PRINT_BLUE_PRINT_CODE": "Blue print code",
18
+ "BLUE_PRINT_QUERY_ID": "Query id",
19
+ "BLUE_PRINT_PAGE_SINGULAR": "blueprintpage",
20
+ "BLUE_PRINT_PAGE_PLURAL": "blueprintpages",
21
+ "BLUE_PRINT_PAGE_BLUE_PRINT_ID": "Blue print id",
22
+ "BLUE_PRINT_PAGE_ENABLED": "Enabled",
23
+ "BLUE_PRINT_PAGE_PAGE_NAME": "Page name",
24
+ "BLUE_PRINT_PAGE_PAGE_ORDER": "Page order",
25
+ "BLUE_PRINT_PAGE_QUERY_ID": "Query id",
26
+ "BLUE_PRINT_POINT_SINGULAR": "blueprintpoint",
27
+ "BLUE_PRINT_POINT_PLURAL": "blueprintpoints",
28
+ "BLUE_PRINT_POINT_BLUE_PRINT_PAGE_ID": "Blue print page id",
29
+ "BLUE_PRINT_POINT_FONT_SIZE": "Font size",
30
+ "BLUE_PRINT_POINT_POINT_CODE": "Point code",
31
+ "BLUE_PRINT_POINT_X": "X",
32
+ "BLUE_PRINT_POINT_Y": "Y",
33
+ "DASHBOARD_SINGULAR": "dashboard",
34
+ "DASHBOARD_PLURAL": "dashboards",
35
+ "DASHBOARD_DASHBOARD_CODE": "Dashboard code",
36
+ "DASHBOARD_DASHBOARD_NAME": "Dashboard name",
37
+ "DASHBOARD_DASHBOARD_TITLE": "Dashboard title",
38
+ "DASHBOARD_ENABLED": "Enabled",
39
+ "DASHBOARD_LOAD_WIDGETS_INDIVIDUALLY": "Load widgets individually",
40
+ "DASHBOARD_NUMBER_OF_COLUMNS": "Number of columns",
41
+ "DASHBOARD_WIDGET_SINGULAR": "dashboardwidget",
42
+ "DASHBOARD_WIDGET_PLURAL": "dashboardwidgets",
43
+ "DASHBOARD_WIDGET_DASHBOARD_ID": "Dashboard id",
44
+ "DASHBOARD_WIDGET_ENABLED": "Enabled",
45
+ "DASHBOARD_WIDGET_WIDGET_ID": "Widget id",
46
+ "DASHBOARD_WIDGET_WIDGET_ORDER": "Widget order",
47
+ "DATA_QUERY_SINGULAR": "Data Query",
48
+ "DATA_QUERY_PLURAL": "Data Queries",
49
+ "DATA_QUERY_DATASOURCE_CON_ID": "Datasource con id",
50
+ "DATA_QUERY_QUERY_NAME": "Query name",
51
+ "DATA_QUERY_QUERY_STR": "Query str",
52
+ "DATA_QUERY_USE_SYS_CON": "Use sys con",
53
+ "DATA_QUERY_PARAMETER_SINGULAR": "dataqueryparameter",
54
+ "DATA_QUERY_PARAMETER_PLURAL": "dataqueryparameters",
55
+ "DATA_QUERY_PARAMETER_DATA_QUERY_ID": "Data query id",
56
+ "DATA_QUERY_PARAMETER_DEFAULT_VALUE": "Default value",
57
+ "DATA_QUERY_PARAMETER_ENABLED": "Enabled",
58
+ "DATA_QUERY_PARAMETER_ENTITY_PARAMETER_ID": "Entity parameter id",
59
+ "DATA_QUERY_PARAMETER_HIDDEN": "Hidden",
60
+ "DATA_QUERY_PARAMETER_MANDATORY": "Mandatory",
61
+ "DATASOURCE_CONNECTION_SINGULAR": "Datasource Connection",
62
+ "DATASOURCE_CONNECTION_PLURAL": "Datasource Connections",
63
+ "DATASOURCE_CONNECTION_CONNECTION_NAME": "Connection name",
64
+ "DATASOURCE_CONNECTION_DATASOURCE_PASSWORD": "Datasource password",
65
+ "DATASOURCE_CONNECTION_DATASOURCE_TYPE": "Datasource type",
66
+ "DATASOURCE_CONNECTION_DATASOURCE_URL": "Datasource url",
67
+ "DATASOURCE_CONNECTION_DATASOURCE_USERNAME": "Datasource username",
68
+ "DATASOURCE_CONNECTION_ENABLED": "Enabled",
69
+ "ENTITY_PARAMETER_SINGULAR": "Entity Parameter",
70
+ "ENTITY_PARAMETER_PLURAL": "Entity Parameters",
71
+ "ENTITY_PARAMETER_ENABLED": "Enabled",
72
+ "ENTITY_PARAMETER_PARAMETER_CODE": "Parameter code",
73
+ "ENTITY_PARAMETER_PARAMETER_DATA_QUERY_ID": "Parameter data query id",
74
+ "ENTITY_PARAMETER_PARAMETER_DATASET": "Parameter dataset",
75
+ "ENTITY_PARAMETER_PARAMETER_DISPLAY_FIELD": "Parameter display field",
76
+ "ENTITY_PARAMETER_PARAMETER_LABEL": "Parameter label",
77
+ "ENTITY_PARAMETER_PARAMETER_TYPE": "Parameter type",
78
+ "ENTITY_PARAMETER_PARAMETER_VALUE_FIELD": "Parameter value field",
79
+ "ENTITY_PARAMETER_PARAMETER_VALUE_FORMAT": "Parameter value format",
80
+ "EXCEL_UPLOADER_DETAIL_SINGULAR": "exceluploaderdetail",
81
+ "EXCEL_UPLOADER_DETAIL_PLURAL": "exceluploaderdetails",
82
+ "EXCEL_UPLOADER_DETAIL_COLUMN_INDEX": "Column index",
83
+ "EXCEL_UPLOADER_DETAIL_EXCEL_UPLOADER_HEADER_ID": "Excel uploader header id",
84
+ "EXCEL_UPLOADER_DETAIL_LOOKUP_QUERY_ID": "Lookup query id",
85
+ "EXCEL_UPLOADER_DETAIL_TABLE_FIELD": "Table field",
86
+ "EXCEL_UPLOADER_HEADER_SINGULAR": "exceluploaderheader",
87
+ "EXCEL_UPLOADER_HEADER_PLURAL": "exceluploaderheaders",
88
+ "EXCEL_UPLOADER_HEADER_UPLOADER_CONNECTION_ID": "Uploader connection id",
89
+ "EXCEL_UPLOADER_HEADER_UPLOADER_DATABASE_NAME": "Uploader database name",
90
+ "EXCEL_UPLOADER_HEADER_UPLOADER_NAME": "Uploader name",
91
+ "EXCEL_UPLOADER_HEADER_UPLOADER_TABLE_NAME": "Uploader table name",
92
+ "LOOKUP_SINGULAR": "lookup",
93
+ "LOOKUP_PLURAL": "lookups",
94
+ "LOOKUP_ENABLED": "Enabled",
95
+ "LOOKUP_LOOKUP_AR_DISPLAY": "Lookup ar display",
96
+ "LOOKUP_LOOKUP_EN_DISPLAY": "Lookup en display",
97
+ "LOOKUP_LOOKUP_TYPE": "Lookup type",
98
+ "LOOKUP_LOOKUP_VALUE": "Lookup value",
99
+ "LOOKUP_ORG_CODE": "Org code",
100
+ "MAIL_ATTACHMENT_SINGULAR": "mailattachment",
101
+ "MAIL_ATTACHMENT_PLURAL": "mailattachments",
102
+ "MAIL_ATTACHMENT_ENABLED": "Enabled",
103
+ "MAIL_ATTACHMENT_MAIL_TEMPLATE_ID": "Mail template id",
104
+ "MAIL_ATTACHMENT_REPORT_ID": "Report id",
105
+ "MAIL_BODY_SINGULAR": "mailbody",
106
+ "MAIL_BODY_PLURAL": "mailbodies",
107
+ "MAIL_BODY_BODY_NAME": "Body Name",
108
+ "MAIL_BODY_BODY_CONTENT": "Body content",
109
+ "MAIL_BODY_BODY_CONTENT_DATA_QUERY_ID": "Body content data query id",
110
+ "MAIL_BODY_BODY_ORDER": "Body order",
111
+ "MAIL_BODY_ENABLED": "Enabled",
112
+ "MAIL_BODY_IS_MAIN": "Is main",
113
+ "MAIL_BODY_MAIL_TEMPLATE_ID": "Mail template id",
114
+ "MAIL_BODY_PRINT_FOR_EACH_RECORD": "Print for each record",
115
+ "MAIL_NOTIFICATION_QUEUE_SINGULAR": "mailnotificationqueue",
116
+ "MAIL_NOTIFICATION_QUEUE_PLURAL": "mailnotificationqueues",
117
+ "MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_ATTACHED_REPORT_ID": "Custom mail attached report id",
118
+ "MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_BODY": "Custom mail body",
119
+ "MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_SUBJECT": "Custom mail subject",
120
+ "MAIL_NOTIFICATION_QUEUE_CUSTOM_RECIPIENTS": "Custom recipients",
121
+ "MAIL_NOTIFICATION_QUEUE_IS_NOTIFIED": "Is notified",
122
+ "MAIL_NOTIFICATION_QUEUE_MAIL_PARAMETERS": "Mail parameters",
123
+ "MAIL_NOTIFICATION_QUEUE_MAIL_TEMPLATE_ID": "Mail template id",
124
+ "MAIL_NOTIFICATION_QUEUE_NOTIFICATION_MESSAGE": "Notification message",
125
+ "MAIL_NOTIFICATION_QUEUE_NOTIFICATION_TIME": "Notification time",
126
+ "MAIL_RECIPIENT_SINGULAR": "mailrecipient",
127
+ "MAIL_RECIPIENT_PLURAL": "mailrecipients",
128
+ "MAIL_RECIPIENT_ENABLED": "Enabled",
129
+ "MAIL_RECIPIENT_MAIL_TEMPLATE_ID": "Mail template id",
130
+ "MAIL_RECIPIENT_RECIPIENT_MAIL": "Recipient mail",
131
+ "MAIL_RECIPIENT_RECIPIENT_TYPE": "Recipient type",
132
+ "MAIL_TEMPLATE_SINGULAR": "Mail Template",
133
+ "MAIL_TEMPLATE_PLURAL": "Mail Templates",
134
+ "MAIL_TEMPLATE_ENABLED": "Enabled",
135
+ "MAIL_TEMPLATE_MAIL_CC_DATA_QUERY_ID": "Mail cc data query id",
136
+ "MAIL_TEMPLATE_MAIL_SUBJECT": "Mail subject",
137
+ "MAIL_TEMPLATE_MAIL_TEMPLATE_CODE": "Mail template code",
138
+ "MAIL_TEMPLATE_MAIL_TEMPLATE_NAME": "Mail template name",
139
+ "MAIL_TEMPLATE_MAIL_TO_DATA_QUERY_ID": "Mail to data query id",
140
+ "MAIL_TEMPLATE_PERIOD_TYPE": "Period type",
141
+ "MAIL_TEMPLATE_PERIOD_VALUE": "Period value",
142
+ "MAIL_TEMPLATE_PERIODICAL": "Periodical",
143
+ "MAIL_TEMPLATE_START_SENDING_AT": "Start sending at",
144
+ "MAIL_TEMPLATE_SUBJECT_DATA_QUERY_ID": "Subject data query id",
145
+ "NOTIFICATION_SINGULAR": "notification",
146
+ "NOTIFICATION_PLURAL": "notifications",
147
+ "NOTIFICATION_ENABLED": "Enabled",
148
+ "NOTIFICATION_NOTIFICATION_ACTION_KEY": "Notification action key",
149
+ "NOTIFICATION_NOTIFICATION_ACTION_PAYLOAD": "Notification action payload",
150
+ "NOTIFICATION_NOTIFICATION_CODE": "Notification code",
151
+ "NOTIFICATION_NOTIFICATION_ICON": "Notification icon",
152
+ "NOTIFICATION_NOTIFICATION_QUERY_ID": "Notification query id",
153
+ "NOTIFICATION_NOTIFICATION_TEXT": "Notification text",
154
+ "NOTIFICATION_USERS_TO_NOTIFY_QUERY_ID": "Users to notify query id",
155
+ "NOTIFICATION_QUEUE_SINGULAR": "notificationqueue",
156
+ "NOTIFICATION_QUEUE_PLURAL": "notificationqueues",
157
+ "NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ACTION_KEY": "Custom notification action key",
158
+ "NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ACTION_PAYLOAD": "Custom notification action payload",
159
+ "NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ICON": "Custom notification icon",
160
+ "NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_TEXT": "Custom notification text",
161
+ "NOTIFICATION_QUEUE_IS_NOTIFIED": "Is notified",
162
+ "NOTIFICATION_QUEUE_NOTIFICATION_CODE": "Notification code",
163
+ "NOTIFICATION_QUEUE_NOTIFICATION_PARAMS": "Notification params",
164
+ "NOTIFICATION_QUEUE_NOTIFIED_TIME": "Notified time",
165
+ "NOTIFICATION_QUEUE_USERNAME": "Username",
166
+
167
+ "REPORT_SINGULAR": "Report",
168
+ "REPORT_PLURAL": "Reports",
169
+ "REPORT_DATASOURCE_CON_ID": "Datasource con id",
170
+ "REPORT_REPORT_BLUE_PRINT_ID": "Report blue print id",
171
+ "REPORT_REPORT_CATEGORY": "Report category",
172
+ "REPORT_REPORT_CODE": "Report code",
173
+ "REPORT_REPORT_EXCEL_DATA_QUERY_ID": "Report excel data query id",
174
+ "REPORT_REPORT_EXPORT_NAME": "Report export name",
175
+ "REPORT_REPORT_JASPER_NAME": "Report jasper name",
176
+ "REPORT_REPORT_JASPER_PATH": "Report jasper path",
177
+ "REPORT_REPORT_MENU_CODE": "Report menu code",
178
+ "REPORT_REPORT_NAME": "Report name",
179
+ "REPORT_REPORT_TYPE": "Report type",
180
+ "REPORT_USE_SYS_DATASOURCE": "Use sys datasource",
181
+ "REPORT_PARAMETER_SINGULAR": "reportparameter",
182
+ "REPORT_PARAMETER_PLURAL": "reportparameters",
183
+ "REPORT_PARAMETER_DEFAULT_VALUE": "Default value",
184
+ "REPORT_PARAMETER_ENABLED": "Enabled",
185
+ "REPORT_PARAMETER_ENTITY_PARAMETER_ID": "Entity parameter id",
186
+ "REPORT_PARAMETER_HIDDEN": "Hidden",
187
+ "REPORT_PARAMETER_MANDATORY": "Mandatory",
188
+ "REPORT_PARAMETER_REPORT_ID": "Report id",
189
+
190
+ "USER_REQUEST_SINGULAR": "userrequest",
191
+ "USER_REQUEST_PLURAL": "userrequests",
192
+ "USER_REQUEST_IS_NOTIFIED": "Is notified",
193
+ "USER_REQUEST_MAILS_TO_NOTIFY": "Mails to notify",
194
+ "USER_REQUEST_NOTIFICATION_MESSAGE": "Notification message",
195
+ "USER_REQUEST_NOTIFICATION_TIME": "Notification time",
196
+ "USER_REQUEST_NOTIFICATION_TYPE": "Notification type",
197
+ "USER_REQUEST_NOTIFY_USER": "Notify user",
198
+ "USER_REQUEST_REPORT_CODE": "Report code",
199
+ "USER_REQUEST_REPORT_PARAMETERS": "Report parameters",
200
+ "USER_REQUEST_REQUEST_TYPE": "Request type",
201
+ "USER_REQUEST_STATUS": "Status",
202
+ "USER_REQUEST_STATUS_MESSAGE": "Status message",
203
+ "WIDGET_SINGULAR": "widget",
204
+ "WIDGET_PLURAL": "widgets",
205
+ "WIDGET_DATA_QUERY_ID": "Data query id",
206
+ "WIDGET_ENABLED": "Enabled",
207
+ "WIDGET_HEIGHT": "Height",
208
+ "WIDGET_HORIZONTAL_AXIS_FIELD": "Horizontal axis field",
209
+ "WIDGET_HORIZONTAL_AXIS_LABEL": "Horizontal axis label",
210
+ "WIDGET_ICON": "Icon",
211
+ "WIDGET_SERIES_KEYS": "Series keys",
212
+ "WIDGET_TITLE": "Title",
213
+ "WIDGET_VERTICAL_AXIS_FIELD": "Vertical axis field",
214
+ "WIDGET_VERTICAL_AXIS_LABEL": "Vertical axis label",
215
+ "WIDGET_WIDGET_DESCRIPTION": "Widget description",
216
+ "WIDGET_WIDGET_NAME": "Widget name",
217
+ "WIDGET_WIDGET_TYPE": "Widget type",
218
+ "WIDGET_WIDTH": "Width",
219
+ "WORKFLOW_DOCUMENT_SINGULAR": "Workflow Document",
220
+ "WORKFLOW_DOCUMENT_PLURAL": "Workflow Documents",
221
+ "WORKFLOW_DOCUMENT_APP_NOTIFICATION_ICON": "App notification icon",
222
+ "WORKFLOW_DOCUMENT_APP_NOTIFICATION_STYLE": "App notification style",
223
+ "WORKFLOW_DOCUMENT_APP_VIEW_ROUTE": "App view route",
224
+ "WORKFLOW_DOCUMENT_DOCUMENT_CODE": "Document code",
225
+ "WORKFLOW_DOCUMENT_DOCUMENT_CON_ID": "Document con id",
226
+ "WORKFLOW_DOCUMENT_DOCUMENT_DATABASE_NAME": "Document database name",
227
+ "WORKFLOW_DOCUMENT_DOCUMENT_DATABASE_TABLE": "Document database table",
228
+ "WORKFLOW_DOCUMENT_DOCUMENT_ID_FIELD": "Document id field",
229
+ "WORKFLOW_DOCUMENT_DOCUMENT_NAME": "Document name",
230
+ "WORKFLOW_DOCUMENT_DOCUMENT_NUMBER_FIELD": "Document number field",
231
+ "WORKFLOW_DOCUMENT_DOCUMENT_REPORT_ID": "Document report id",
232
+ "WORKFLOW_DOCUMENT_DOCUMENT_STATUS_FIELD": "Document status field",
233
+ "WORKFLOW_DOCUMENT_MAIL_APPROVAL_ALLOWED": "Mail approval allowed",
234
+ "WORKFLOW_DOCUMENT_ORG_CODE": "Org code",
235
+ "WORKFLOW_DOCUMENT_USE_SYSTEM_CON": "Use system con",
236
+ "WORKFLOW_DOCUMENT_ACTION_SINGULAR": "workflowdocumentaction",
237
+ "WORKFLOW_DOCUMENT_ACTION_PLURAL": "workflowdocumentactions",
238
+ "WORKFLOW_DOCUMENT_ACTION_DOCUMENT_ACTION_CODE": "Document action code",
239
+ "WORKFLOW_DOCUMENT_ACTION_DOCUMENT_ACTION_NAME": "Document action name",
240
+ "WORKFLOW_DOCUMENT_ACTION_NEXT_DOCUMENT_STATUS_ID": "Next document status id",
241
+ "WORKFLOW_DOCUMENT_ACTION_POST_ACTION_ENDPOINT": "Post action endpoint",
242
+ "WORKFLOW_DOCUMENT_ACTION_PRE_ACTION_ENDPOINT": "Pre action endpoint",
243
+ "WORKFLOW_DOCUMENT_ACTION_REQUIRE_COMMENT": "Require comment",
244
+ "WORKFLOW_DOCUMENT_ACTION_WORKFLOW_DOCUMENT_ID": "Workflow document id",
245
+ "WORKFLOW_DOCUMENT_ACTION_HISTORY_SINGULAR": "workflowdocumentactionhistory",
246
+ "WORKFLOW_DOCUMENT_ACTION_HISTORY_PLURAL": "workflowdocumentactionhistories",
247
+ "WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_BY": "Action by",
248
+ "WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_COMMENT": "Action comment",
249
+ "WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_METHOD": "Action method",
250
+ "WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_TIME": "Action time",
251
+ "WORKFLOW_DOCUMENT_ACTION_HISTORY_DOCUMENT_ACTION_ID": "Document action id",
252
+ "WORKFLOW_DOCUMENT_ACTION_HISTORY_DOCUMENT_REF_ID": "Document ref id",
253
+ "WORKFLOW_DOCUMENT_ACTION_HISTORY_WORKFLOW_DOCUMENT_ID": "Workflow document id",
254
+ "WORKFLOW_DOCUMENT_ACTION_MAIL_SINGULAR": "workflowdocumentactionmail",
255
+ "WORKFLOW_DOCUMENT_ACTION_MAIL_PLURAL": "workflowdocumentactionmails",
256
+ "WORKFLOW_DOCUMENT_ACTION_MAIL_DOCUMENT_ACTION_ID": "Document action id",
257
+ "WORKFLOW_DOCUMENT_ACTION_MAIL_ENABLED": "Enabled",
258
+ "WORKFLOW_DOCUMENT_ACTION_MAIL_MAIL_TEMPLATE_ID": "Mail template id",
259
+ "WORKFLOW_DOCUMENT_MAIL_LOG_SINGULAR": "workflowdocumentmaillog",
260
+ "WORKFLOW_DOCUMENT_MAIL_LOG_PLURAL": "workflowdocumentmaillogs",
261
+ "WORKFLOW_DOCUMENT_MAIL_LOG_GRAPH_API_MSG_ID": "Graph api msg id",
262
+ "WORKFLOW_DOCUMENT_MAIL_LOG_IS_PROCESSED": "Is processed",
263
+ "WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_ACTION_CODE": "Mail action code",
264
+ "WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_BODY_CONTENT": "Mail body content",
265
+ "WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_FROM": "Mail from",
266
+ "WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_SUBJECT": "Mail subject",
267
+ "WORKFLOW_DOCUMENT_MAIL_LOG_PROCESS_MESSAGE": "Process message",
268
+ "WORKFLOW_DOCUMENT_MAIL_LOG_PROCESS_TIME": "Process time",
269
+ "WORKFLOW_DOCUMENT_MAIL_LOG_REF_DOC_ID": "Ref doc id",
270
+ "WORKFLOW_DOCUMENT_MAIL_LOG_WORKFLOW_DOCUMENT_ID": "Workflow document id",
271
+ "WORKFLOW_DOCUMENT_STATUS_SINGULAR": "workflowdocumentstatus",
272
+ "WORKFLOW_DOCUMENT_STATUS_PLURAL": "workflowdocumentstatuses",
273
+ "WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_CODE": "Document status code",
274
+ "WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_NAME": "Document status name",
275
+ "WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_ORDER": "Document status order",
276
+ "WORKFLOW_DOCUMENT_STATUS_ENABLED": "Enabled",
277
+ "WORKFLOW_DOCUMENT_STATUS_IS_ZERO_STATE": "Is zero state",
278
+ "WORKFLOW_DOCUMENT_STATUS_NEXT_ACTION_TAKERS_QUERY_ID": "Next action takers query id",
279
+ "WORKFLOW_DOCUMENT_STATUS_NEXT_ACTIONS_QUERY_ID": "Next actions query id",
280
+ "WORKFLOW_DOCUMENT_STATUS_WORKFLOW_DOCUMENT_ID": "Workflow document id"
281
+ }
@@ -1,6 +1,9 @@
1
1
  import common from "./common.json";
2
2
  import AdminLocalsEn from "./adminLocalsEn.json";
3
+ import devLocalsEn from "./devLocalsEn.json";
4
+
3
5
  export const ENGLISH_TRANS = {
4
6
  ...common,
5
7
  ...AdminLocalsEn,
8
+ ...devLocalsEn,
6
9
  };
package/src/main.tsx CHANGED
@@ -2,7 +2,6 @@ import { StrictMode } from "react";
2
2
  import { createRoot } from "react-dom/client";
3
3
  import { BaseApp } from "./components";
4
4
  import logo from "./assets/logo.png";
5
- import CounterReducer from "./redux/features/CounterSlice";
6
5
 
7
6
  createRoot(document.getElementById("root")!).render(
8
7
  <BaseApp
@@ -12,14 +11,14 @@ createRoot(document.getElementById("root")!).render(
12
11
  appVersion="0.0"
13
12
  businessCommonStoresMetaData={{}}
14
13
  businessNavigationItems={[]}
15
- businessReduxReducers={
16
- {
17
- counter: CounterReducer
18
- }
19
- }
14
+ businessReduxReducers={{}}
20
15
  businessRoutes={[]}
21
16
  documentTitle="UI Base"
22
17
  enableAdministrationModule={true}
18
+ appTheme={{
19
+ dark: { primaryColor: "#b3a10c", secondaryColor: "#2b3c46" },
20
+ light: { primaryColor: "#2b3c46", secondaryColor: "#b3a10c" },
21
+ }}
23
22
  muiPremiumKey="c2bd611fa642666253500ab9c8e4f78fTz0xMTE4MjEsRT0xNzc2OTg4Nzk5MDAwLFM9cHJlbWl1bSxMTT1zdWJzY3JpcHRpb24sUFY9aW5pdGlhbCxLVj0y"
24
23
  />
25
24
  );
@@ -3,180 +3,146 @@ import { ExtendedTreeItemProps } from "..";
3
3
 
4
4
  export const adminNavigationItems: TreeViewBaseItem<ExtendedTreeItemProps>[] = [
5
5
  {
6
- id: "admin",
7
- label: "SYSTEM_ADMINISTRATION",
8
- authority: "DEVELOPMENT_ADMIN",
9
- icon: "cogs",
6
+ id: "system_admin",
7
+ label: "System Administration",
8
+ authority: "SYSTEM_ADMIN",
9
+ icon: "cog",
10
10
  children: [
11
11
  {
12
- id: "admin.systemManagement",
13
- label: "SYSTEM_MANAGEMENT",
14
- icon: "gear",
15
- children: [
16
- {
17
- id: "admin.systemManagement.Organization",
18
- label: "ORGANIZATION_PLURAL",
19
- icon: "globe",
20
- action: "NAVIGATION",
21
- actionPayload: { path: "admin/organizations" },
22
- },
23
- {
24
- id: "admin.systemManagement.OrganizationApplication",
25
- label: "ORGANIZATION_APPLICATION_PLURAL",
26
- icon: "diagram-project",
27
- action: "NAVIGATION",
28
- actionPayload: { path: "admin/organizationapplications" },
29
- },
30
- ],
12
+ id: "development_admin.organization",
13
+ label: "ORGANIZATION_PLURAL",
14
+ authority: "DEVELOPMENT_ADMIN",
15
+ icon: "globe",
16
+ action: "NAVIGATION",
17
+ actionPayload: { path: "admin/organizations" },
31
18
  },
32
19
  {
33
- id: "admin.security",
34
- label: "SECURITY_ADMINISTRATION",
35
- icon: "shield",
36
- children: [
37
- {
38
- id: "admin.security.Authority",
39
- label: "AUTHORITY_PLURAL",
40
- icon: "key",
41
- action: "NAVIGATION",
42
- actionPayload: { path: "admin/authorities" },
43
- },
44
- {
45
- id: "admin.Role",
46
- label: "ROLE_PLURAL",
47
- icon: "tag",
48
- action: "NAVIGATION",
49
- actionPayload: { path: "admin/roles" },
50
- },
51
- {
52
- id: "admin.security.Employee",
53
- label: "EMPLOYEE_PLURAL",
54
- icon: "user",
55
- action: "NAVIGATION",
56
- actionPayload: { path: "admin/employees" },
57
- },
58
- ],
20
+ id: "development_admin.SystemApplication",
21
+ label: "SYSTEM_APPLICATION_PLURAL",
22
+ authority: "DEVELOPMENT_ADMIN",
23
+ icon: "window-restore",
24
+ action: "NAVIGATION",
25
+ actionPayload: { path: "admin/systemapplications" },
26
+ },
27
+ {
28
+ id: "system_admin.Person",
29
+ label: "PERSON_PLURAL",
30
+ icon: "users",
31
+ action: "NAVIGATION",
32
+ actionPayload: { path: "admin/persons" },
59
33
  },
60
34
  {
61
- id: "admin.devtools",
35
+ id: "system_admin.devtools",
62
36
  label: "DEVELOPMENT_TOOLS",
63
37
  icon: "code",
64
38
  children: [
65
39
  {
66
- id: "admin.devtools.DatasourceConnection",
40
+ id: "system_admin.devtools.DatasourceConnection",
67
41
  label: "DATASOURCE_CONNECTION_PLURAL",
68
42
  icon: "plug",
69
43
  action: "NAVIGATION",
70
- actionPayload: { path: "admin/datasourceconnections" },
44
+ actionPayload: { path: "dev/datasourceconnections" },
71
45
  },
72
46
  {
73
- id: "admin.devtools.EntityParameter",
47
+ id: "system_admin.devtools.EntityParameter",
74
48
  label: "ENTITY_PARAMETER_PLURAL",
75
49
  icon: "p",
76
50
  action: "NAVIGATION",
77
- actionPayload: { path: "admin/entityparameters" },
51
+ actionPayload: { path: "dev/entityparameters" },
78
52
  },
79
53
  {
80
- id: "admin.devtools.DataQuery",
54
+ id: "system_admin.devtools.DataQuery",
81
55
  label: "DATA_QUERY_PLURAL",
82
56
  icon: "file-code",
83
57
  action: "NAVIGATION",
84
- actionPayload: { path: "admin/dataqueries" },
58
+ actionPayload: { path: "dev/dataqueries" },
85
59
  },
86
60
  {
87
- id: "admin.devtools.ExcelUploaderHeader",
88
- label: "EXCEL_UPLOADER_HEADER_PLURAL",
89
- icon: "file-excel",
61
+ id: "system_admin.devtools.Report",
62
+ label: "REPORT_PLURAL",
63
+ icon: "file",
90
64
  action: "NAVIGATION",
91
- actionPayload: { path: "admin/exceluploaderheaders" },
65
+ actionPayload: { path: "dev/reports" },
92
66
  },
93
67
  {
94
- id: "admin.devtools.Report",
95
- label: "REPORT_PLURAL",
96
- icon: "file",
68
+ id: "system_admin.devtools.MailConfig",
69
+ label: "Mail Sender Config",
70
+ icon: { iconName: "paper-plane", prefix: "fas" },
97
71
  action: "NAVIGATION",
98
- actionPayload: { path: "admin/reports" },
72
+ actionPayload: { path: "dev/mailsender/config" },
99
73
  },
100
74
  {
101
- id: "admin.devtools.WorkflowDocument",
102
- label: "WORKFLOW_DOCUMENT_PLURAL",
103
- icon: "chart-diagram",
75
+ id: "system_admin.devtools.MailTemplate",
76
+ label: "MAIL_TEMPLATE_PLURAL",
77
+ icon: "envelope",
104
78
  action: "NAVIGATION",
105
- actionPayload: { path: "admin/workflowdocuments" },
79
+ actionPayload: { path: "dev/mailtemplates" },
106
80
  },
107
81
  {
108
- id: "admin.devtools.BluePrint",
109
- label: "BLUE_PRINT_PLURAL",
110
- icon: "fingerprint",
82
+ id: "system_admin.devtools.WorkflowDocument",
83
+ label: "WORKFLOW_DOCUMENT_PLURAL",
84
+ icon: "chart-diagram",
111
85
  action: "NAVIGATION",
112
- actionPayload: { path: "admin/blueprints" },
86
+ actionPayload: { path: "dev/workflowdocuments" },
113
87
  },
114
88
  {
115
- id: "admin.devtools.Widget",
89
+ id: "system_admin.devtools.Widget",
116
90
  label: "WIDGET_PLURAL",
117
91
  icon: "chart-pie",
118
92
  action: "NAVIGATION",
119
- actionPayload: { path: "admin/widgets" },
93
+ actionPayload: { path: "dev/widgets" },
120
94
  },
121
95
  {
122
- id: "admin.devtools.Dashboard",
96
+ id: "system_admin.devtools.Dashboard",
123
97
  label: "DASHBOARD_PLURAL",
124
98
  icon: "square-poll-vertical",
125
99
  action: "NAVIGATION",
126
- actionPayload: { path: "admin/dashboards" },
100
+ actionPayload: { path: "dev/dashboards" },
127
101
  },
128
102
  {
129
- id: "admin.devtools.MailTemplate",
130
- label: "MAIL_TEMPLATE_PLURAL",
131
- icon: "envelope",
103
+ id: "system_admin.devtools.BluePrint",
104
+ label: "BLUE_PRINT_PLURAL",
105
+ icon: "fingerprint",
132
106
  action: "NAVIGATION",
133
- actionPayload: { path: "admin/mailtemplates" },
107
+ actionPayload: { path: "dev/blueprints" },
134
108
  },
135
109
  {
136
- id: "admin.devtools.Notification",
110
+ id: "system_admin.devtools.Notification",
137
111
  label: "NOTIFICATION_PLURAL",
138
112
  icon: "bell",
139
113
  action: "NAVIGATION",
140
- actionPayload: { path: "admin/notifications" },
114
+ actionPayload: { path: "dev/notifications" },
141
115
  },
142
116
  ],
143
117
  },
144
118
  {
145
- id: "admin.followup",
119
+ id: "system_admin.followup",
146
120
  label: "SYSTEM_MONITORING",
147
121
  icon: "tv",
148
122
  children: [
149
123
  {
150
- id: "admin.WorkflowDocumentMailLog",
151
- label: "WORKFLOW_DOCUMENT_MAIL_LOG_PLURAL",
124
+ id: "system_admin.WorkflowDocumentMailLog",
125
+ label: "Action Mail Logs",
152
126
  icon: "envelopes-bulk",
153
127
  action: "NAVIGATION",
154
- actionPayload: { path: "admin/workflowdocumentmaillogs" },
128
+ actionPayload: { path: "dev/workflowdocumentmaillogs" },
155
129
  },
156
130
  {
157
- id: "admin.MailNotificationQueue",
158
- label: "MAIL_NOTIFICATION_QUEUE_PLURAL",
131
+ id: "system_admin.MailNotificationQueue",
132
+ label: "Mail Notification Queue",
159
133
  icon: "envelope-open-text",
160
134
  action: "NAVIGATION",
161
- actionPayload: { path: "admin/mailnotificationqueues" },
135
+ actionPayload: { path: "dev/mailnotificationqueues" },
162
136
  },
163
137
  {
164
- id: "admin.NotificationQueue",
138
+ id: "system_admin.NotificationQueue",
165
139
  label: "NOTIFICATION_QUEUE_PLURAL",
166
140
  icon: "bell",
167
141
  action: "NAVIGATION",
168
- actionPayload: { path: "admin/notificationqueues" },
142
+ actionPayload: { path: "dev/notificationqueues" },
169
143
  },
170
144
  ],
171
145
  },
172
-
173
- {
174
- id: "admin.Lookup",
175
- label: "LOOKUP_PLURAL",
176
- icon: "list-check",
177
- action: "NAVIGATION",
178
- actionPayload: { path: "admin/lookups" },
179
- },
180
146
  ],
181
147
  },
182
148
  ];
@@ -3,69 +3,14 @@ import { ExtendedTreeItemProps } from "..";
3
3
  import { adminNavigationItems } from "./adminNavigationItems";
4
4
 
5
5
  export const AdministrationItems: TreeViewBaseItem<ExtendedTreeItemProps>[] = [
6
- ...adminNavigationItems
7
- // {
8
- // id: "1",
9
- // label: "System Administration",
10
- // icon: "gears",
11
- // authority: "DEVELOPMENT_ADMIN",
12
- // children: [
13
- // {
14
- // id: "1.1",
15
- // label: "Security",
16
- // icon: "shield",
17
- // action: "NAVIGATION",
18
- // actionPayload: { path: "Security" },
19
- // children: [
20
- // {
21
- // id: "1.1.1",
22
- // label: "Roles",
23
- // icon: "tag",
24
- // action: "NAVIGATION",
25
- // actionPayload: { path: "admin/security/roles" },
26
- // },
27
- // {
28
- // id: "1.1.2",
29
- // label: "Authorities",
30
- // icon: "key",
31
- // action: "NAVIGATION",
32
- // actionPayload: { path: "admin/security/authorities" },
33
- // children: [],
34
- // },
35
- // ],
36
- // },
37
- // {
38
- // id: "1.2",
39
- // label: "Development Tools",
40
- // icon: "code",
41
- // authority: "DEVELOPMENT_ADMIN",
42
- // children: [
43
- // {
44
- // id: "1.2.1",
45
- // label: "Datasources",
46
- // icon: "database",
47
- // authority: "DEVELOPMENT_ADMIN",
48
- // action: "NAVIGATION",
49
- // actionPayload: { path: "admin/datasources" },
50
- // },
51
- // {
52
- // id: "1.2.2",
53
- // label: "Parameters",
54
- // icon: "p",
55
- // authority: "DEVELOPMENT_ADMIN",
56
- // action: "NAVIGATION",
57
- // actionPayload: { path: "admin/parameters" },
58
- // },
59
- // {
60
- // id: "1.2.3",
61
- // label: "System Queries",
62
- // icon: "file-code",
63
- // authority: "DEVELOPMENT_ADMIN",
64
- // action: "NAVIGATION",
65
- // actionPayload: { path: "admin/queries" },
66
- // },
67
- // ],
68
- // },
69
- // ],
70
- // },
6
+ {
7
+ id: "home",
8
+ icon: "home",
9
+ label: "Home",
10
+ action: "NAVIGATION",
11
+ actionPayload: {
12
+ path: "/",
13
+ },
14
+ },
15
+ ...adminNavigationItems,
71
16
  ];