@dashadmin/dash-admin 1.3.25 → 1.3.26

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 (511) hide show
  1. package/dist/AppAsyncWrapper.js +30 -1
  2. package/dist/AppWrapper.js +35 -1
  3. package/dist/DASHAdmin.js +312 -1
  4. package/dist/RoutingWrapper.js +76 -1
  5. package/dist/classes/DASHStorageClass.js +15 -1
  6. package/dist/components/Input/RichTextField.js +26 -1
  7. package/dist/components/Redirect.js +56 -1
  8. package/dist/components/avatar/Avatar.js +72 -1
  9. package/dist/components/avatar/SingleImageUploader.js +46 -1
  10. package/dist/components/currency/Format.js +71 -1
  11. package/dist/components/custom/Redirect.js +20 -1
  12. package/dist/components/error/Error.js +161 -1
  13. package/dist/components/geocoding/GeocodingField.js +133 -1
  14. package/dist/components/i18n/BridgedLocalesMenuButton.js +126 -1
  15. package/dist/components/i18n/LangSwitcher.js +196 -1
  16. package/dist/components/loader/GlobalLoader.js +71 -1
  17. package/dist/components/logs/LogFile.js +99 -1
  18. package/dist/components/logs/LogFileById.js +75 -1
  19. package/dist/components/logs/LogViewer.js +33 -1
  20. package/dist/components/menu/AppMenu.js +11 -1
  21. package/dist/components/menu/CustomMenuItemLink.js +77 -1
  22. package/dist/components/menu/DarkToggleMode.js +47 -1
  23. package/dist/components/menu/LanguageToggleMode.js +99 -1
  24. package/dist/components/misc/CustomImageInput.js +54 -1
  25. package/dist/components/misc/DASHGlobalErrorHandler.js +159 -1
  26. package/dist/components/misc/DarkModeSwitcher.js +40 -1
  27. package/dist/components/misc/LanguageSwitcher.js +193 -1
  28. package/dist/components/misc/MUIHtmlToolTip.js +50 -1
  29. package/dist/components/misc/MuiSimpleJsonTable.js +178 -1
  30. package/dist/components/misc/MultiLevelTable.js +124 -1
  31. package/dist/components/misc/NoResults.js +17 -1
  32. package/dist/components/misc/PDFViewer.js +86 -1
  33. package/dist/components/navigation/Breadcrumbs.js +178 -1
  34. package/dist/components/navigation/BreadcrumbsManager.js +194 -1
  35. package/dist/components/navigation/index.js +8 -1
  36. package/dist/components/panel/Error.js +161 -1
  37. package/dist/components/permission/AvailablePermissionsContext.js +157 -1
  38. package/dist/components/permission/PermissionsSelector.js +719 -1
  39. package/dist/components/permission/PermissionsSelectorList.js +400 -1
  40. package/dist/components/racustombuttons/CustomRAButton.js +94 -1
  41. package/dist/components/racustombuttons/QuickButton.js +109 -1
  42. package/dist/components/racustombuttons/QuickEditButton.js +114 -1
  43. package/dist/components/racustombuttons/QuickIconButton.js +119 -1
  44. package/dist/components/scrollbar/Scrollbar.js +52 -1
  45. package/dist/components/selects/MultiSelect.js +42 -1
  46. package/dist/components/selects/RASearchableSelect.js +207 -1
  47. package/dist/components/selects/RASearchableSelectChips.js +225 -1
  48. package/dist/components/selects/SearchableSelect.js +128 -1
  49. package/dist/components/subscription/BillingCycleSelectInput.js +50 -1
  50. package/dist/components/subscription/PlanAddonsSettings.js +396 -1
  51. package/dist/components/subscription/PlanAuditLog.js +345 -1
  52. package/dist/components/subscription/PlanFeaturesSettings.js +151 -1
  53. package/dist/components/subscription/PlanLimitsSettings.js +168 -1
  54. package/dist/components/subscription/PlanMetadataSettings.js +219 -1
  55. package/dist/components/subscription/PlanPricesSettings.js +222 -1
  56. package/dist/components/subscription/index.js +12 -1
  57. package/dist/components/svgelements/SvgLoading.js +330 -1
  58. package/dist/components/svgelements/SvgLogo.js +70 -1
  59. package/dist/components/svgelements/SvgLogoMin.js +76 -1
  60. package/dist/components/svgelements/SvgShipping.js +1001 -1
  61. package/dist/components/tenant/TenantAttributes.js +107 -1
  62. package/dist/components/tenant/TenantAttributesContext.js +150 -1
  63. package/dist/components/tenant/TenantSelector.js +160 -1
  64. package/dist/components/tenant/TenantSettings.js +107 -1
  65. package/dist/components/tenant/TenantSettingsContext.js +152 -1
  66. package/dist/components/tenant/TenantTheme.js +112 -1
  67. package/dist/components/user/AvatarComponent.js +270 -1
  68. package/dist/components/user/TenantAvatarComponent.js +83 -1
  69. package/dist/components/user/UserPreferences.js +422 -1
  70. package/dist/config/ACTIONS.js +25 -1
  71. package/dist/config/ConstantsService.js +25 -1
  72. package/dist/config/DASHAdminSystemConstants.js +137 -1
  73. package/dist/config/PARSERS.js +9 -1
  74. package/dist/contexts/DashQueryClientContext.js +78 -1
  75. package/dist/contexts/DashResourceContext.js +21 -1
  76. package/dist/contexts/I18nBridgeContext.js +123 -1
  77. package/dist/contexts/I18nBridgeSetter.js +29 -1
  78. package/dist/contexts/I18nReduxSync.js +16 -1
  79. package/dist/contexts/SubscriptionPlanFormatsProvider.js +175 -1
  80. package/dist/contexts/SystemRequestsCache.js +194 -1
  81. package/dist/contexts/auth/AuthContext.js +396 -1
  82. package/dist/contexts/auth/AuthContextLocalStorage.js +118 -1
  83. package/dist/contexts/auth/DASHAuthenticationService.js +679 -1
  84. package/dist/contexts/auth/WindowContext.js +10 -1
  85. package/dist/contexts/auth/index.js +2 -1
  86. package/dist/contexts/com/FCMContext.js +378 -1
  87. package/dist/contexts/com/LaravelEchoContext.js +45 -1
  88. package/dist/contexts/com/LaravelEchoMgr.js +121 -1
  89. package/dist/contexts/com/components/DefaultNotificationComponent.js +31 -1
  90. package/dist/contexts/com/components/NotificationAttributesTable.js +28 -1
  91. package/dist/contexts/com/components/NotificationRenderer.js +36 -1
  92. package/dist/contexts/com/components/NotificationsWidget.js +142 -1
  93. package/dist/contexts/com/components/notificationFormats.js +15 -1
  94. package/dist/contexts/com/useLaravelEcho.js +340 -1
  95. package/dist/contexts/dictionary/DictionaryContext.js +43 -1
  96. package/dist/default-theme/DASHAppProviders.js +86 -1
  97. package/dist/default-theme/DashThemeContext.js +146 -1
  98. package/dist/default-theme/DashThemeHelperProvider.js +54 -1
  99. package/dist/default-theme/DomainAppLayout.js +126 -1
  100. package/dist/default-theme/DomainHeader.js +114 -1
  101. package/dist/default-theme/DomainTheme.js +60 -1
  102. package/dist/default-theme/FullLayoutMarkup.js +55 -1
  103. package/dist/default-theme/StaticLayout.js +36 -1
  104. package/dist/default-theme/index.js +19 -1
  105. package/dist/default-theme/menu/AppMaterialMenu.js +364 -1
  106. package/dist/default-theme/menu/AppMenuComponents/SubmenuPortal.js +33 -1
  107. package/dist/default-theme/menu/AppMenuComponents/collapsed/CollapsedSidebarItem.js +239 -1
  108. package/dist/default-theme/menu/AppMenuComponents/collapsed/CollapsedSidebarItems.js +22 -1
  109. package/dist/default-theme/menu/AppMenuComponents/expanded/CollapsableSidebarMenu.js +209 -1
  110. package/dist/default-theme/menu/AppMenuComponents/expanded/SidebarItem.js +71 -1
  111. package/dist/default-theme/menu/AppMenuComponents/getItem.js +7 -1
  112. package/dist/default-theme/menu/AppMenuComponents/submenuConstants.js +78 -1
  113. package/dist/default-theme/menu/AppSidebarMaterial.js +232 -1
  114. package/dist/default-theme/menu/SidebarActions.js +75 -1
  115. package/dist/default-theme/updateDomCssVariables.js +134 -1
  116. package/dist/helpers/checkRole.js +14 -1
  117. package/dist/helpers/parseAxiosError.js +28 -2
  118. package/dist/hooks/audio/useAudio.js +24 -1
  119. package/dist/hooks/axios.js +52 -1
  120. package/dist/hooks/data/useDashboardStats.js +88 -1
  121. package/dist/hooks/data/usePackageByClientsStats.js +51 -1
  122. package/dist/hooks/data/usePackageByCommunesStats.js +51 -1
  123. package/dist/hooks/data/usePackageStats.js +88 -1
  124. package/dist/hooks/data/usePackageWithdrawDetails.js +69 -1
  125. package/dist/hooks/data/useStats.js +94 -1
  126. package/dist/hooks/isCurrentPath.js +18 -1
  127. package/dist/hooks/notifications/WSMessagesManager.js +128 -1
  128. package/dist/hooks/notifications/WSPusherManager.js +70 -1
  129. package/dist/hooks/useBreadcrumbs.js +208 -1
  130. package/dist/hooks/useClickOutside.js +18 -1
  131. package/dist/hooks/useFormPersistance.js +129 -1
  132. package/dist/hooks/useGlobalErrorMediator.js +37 -1
  133. package/dist/hooks/useGlobalLoaderMgr.js +20 -1
  134. package/dist/hooks/useHash.js +24 -1
  135. package/dist/hooks/useLocalStorage.js +68 -1
  136. package/dist/hooks/usePolyglotTranslation.js +57 -1
  137. package/dist/hooks/usePrevious.js +12 -1
  138. package/dist/hooks/usePrintSelected.js +30 -1
  139. package/dist/hooks/useVirtualHash.js +28 -1
  140. package/dist/hooks/window/useWindowSize.js +23 -1
  141. package/dist/index.js +120 -97
  142. package/dist/interfaces.js +6 -1
  143. package/dist/layout/AppLayout.js +36 -1
  144. package/dist/layout/ApplicationLayout.js +110 -1
  145. package/dist/layout/MotionWrapper.js +182 -1
  146. package/dist/layout/MotionWrapper.original.js +182 -1
  147. package/dist/layout/ResourceMenu.js +87 -1
  148. package/dist/layout/ResoureLayout.js +47 -1
  149. package/dist/layout/TransitionWrapper.js +83 -2
  150. package/dist/pages/ChangePassword.js +198 -1
  151. package/dist/pages/DASHLanding.js +9 -1
  152. package/dist/pages/DASHLightWeightLogin.js +495 -1
  153. package/dist/pages/DASHSimpleLogin.js +231 -1
  154. package/dist/pages/Login.js +113 -1
  155. package/dist/pages/Profile.js +347 -1
  156. package/dist/pages/RecoverPassword.js +175 -1
  157. package/dist/pages/SingleImageUploader.js +40 -1
  158. package/dist/pages/VerifyAccount.js +129 -1
  159. package/dist/providers/authProvider.js +186 -1
  160. package/dist/providers/dataProvider.js +468 -1
  161. package/dist/providers/i18n/en.js +514 -1
  162. package/dist/providers/i18n/es.js +520 -1
  163. package/dist/providers/i18n/languages.js +8 -1
  164. package/dist/providers/i18nProvider.js +23 -1
  165. package/dist/react-admin-dash/RADashComponent.js +210 -1
  166. package/dist/react-admin-dash/Resource.js +62 -1
  167. package/dist/resources/Brand/BrandResource.js +106 -1
  168. package/dist/resources/DASHResourceLoader.js +104 -1
  169. package/dist/resources/Log/LogResource.js +59 -1
  170. package/dist/resources/Tenant/ImpersonateTenantResource.js +113 -1
  171. package/dist/resources/Trash/TrashTemplate.js +195 -1
  172. package/dist/resources.js +259 -1
  173. package/dist/schemas/log.js +45 -1
  174. package/dist/schemas/notification.js +39 -1
  175. package/dist/schemas/permissions.js +44 -1
  176. package/dist/schemas/roles.js +48 -1
  177. package/dist/schemas/rolesDataGrid.js +48 -1
  178. package/dist/schemas/subscription/components/SubscriptionActions.js +172 -1
  179. package/dist/schemas/subscription/components/SubscriptionPaymentHistory.js +101 -1
  180. package/dist/schemas/subscription/components/SubscriptionPlanFeatures.js +115 -1
  181. package/dist/schemas/subscription/components/SubscriptionPlanPreview.js +92 -1
  182. package/dist/schemas/subscription/components/SubscriptionPlanStats.js +181 -1
  183. package/dist/schemas/subscription/components/SubscriptionStatusIndicator.js +70 -1
  184. package/dist/schemas/subscription/subscriptionPlanSchema.js +184 -1
  185. package/dist/schemas/subscription/subscriptionSchema.js +147 -1
  186. package/dist/schemas/subscriptionPlan.js +397 -1
  187. package/dist/schemas/tenant.js +122 -1
  188. package/dist/schemas/tenantUser.js +94 -1
  189. package/dist/schemas/tenant_superadmin.js +118 -1
  190. package/dist/schemas/user.js +26 -1
  191. package/dist/systemResources.js +1039 -1
  192. package/dist/systemResources.old.js +668 -1
  193. package/dist/templates/ResourceTemplate.js +196 -1
  194. package/dist/templates/ResourceTemplateCreate.js +144 -1
  195. package/dist/templates/ResourceTemplateEdit.js +147 -1
  196. package/dist/templates/ResourceTemplateFull.js +518 -1
  197. package/dist/templates/ResourceTemplateList.js +295 -1
  198. package/dist/templates/ResourceTemplateShow.js +45 -1
  199. package/dist/templates/TrashTemplate.js +175 -1
  200. package/dist/tenantResources.js +206 -1
  201. package/dist/test_portal_bubbles.js +37 -1
  202. package/dist/theme/AppHeader.js +60 -1
  203. package/dist/theme/AppLayoutSetting.js +34 -1
  204. package/dist/theme/AppLogo.js +7 -1
  205. package/dist/theme/AppSidebar.js +30 -1
  206. package/dist/theme/AppSidebarContent.js +84 -1
  207. package/dist/theme/AppSidebarLogo.js +42 -1
  208. package/dist/theme/components/PageTitle.js +61 -1
  209. package/dist/utils/cache/CacheInvalidatorContext.js +100 -1
  210. package/dist/utils/cache/CacheInvalidatorListenerComponent.js +10 -1
  211. package/dist/utils/cache/useCacheInvalidatorListener.js +17 -1
  212. package/dist/utils/convertFileToBase64.js +10 -1
  213. package/dist/utils/convertToFile.js +12 -1
  214. package/dist/utils/cookies.js +45 -1
  215. package/dist/utils/dashDefaultQueryClient.js +15 -1
  216. package/dist/utils/dataUrlToBlob.js +23 -1
  217. package/dist/utils/deepReplace.js +17 -1
  218. package/dist/utils/getProfileMenu.js +31 -1
  219. package/dist/utils/getTenantSettings.js +9 -1
  220. package/dist/utils/getType.js +10 -1
  221. package/dist/utils/getUserSettings.js +9 -1
  222. package/dist/utils/hasCode.js +14 -1
  223. package/dist/utils/index.js +19 -1
  224. package/dist/utils/injectTenantStyles.js +19 -1
  225. package/dist/utils/isComponent.js +23 -1
  226. package/dist/utils/navEvents.js +75 -1
  227. package/dist/utils/prototypes.js +5 -1
  228. package/dist/utils/regexp.js +7 -1
  229. package/dist/utils/resolveObjectPath.js +5 -1
  230. package/dist/utils/setNativeValue.js +17 -1
  231. package/dist/utils/slugify.js +7 -1
  232. package/dist/utils/validators/emailValidator.js +8 -1
  233. package/dist/utils/validators/requiredValidator.js +7 -1
  234. package/dist/utils/validators/rutValidator.js +25 -1
  235. package/dist/utils/validators.js +57 -1
  236. package/package.json +153 -69
  237. package/src/AppAsyncWrapper.tsx +42 -0
  238. package/src/AppWrapper.tsx +45 -0
  239. package/src/DASHAdmin.tsx +501 -0
  240. package/src/RoutingWrapper.tsx +139 -0
  241. package/src/classes/DASHStorageClass.tsx +8 -0
  242. package/src/components/Input/RichTextField.tsx +27 -0
  243. package/src/components/Redirect.tsx +46 -0
  244. package/src/components/avatar/Avatar.tsx +67 -0
  245. package/src/components/avatar/SingleImageUploader.tsx +53 -0
  246. package/src/components/currency/Format.tsx +77 -0
  247. package/src/components/custom/Redirect.tsx +23 -0
  248. package/src/components/error/Error.tsx +168 -0
  249. package/src/components/geocoding/GeocodingField.tsx +167 -0
  250. package/src/components/i18n/BridgedLocalesMenuButton.tsx +159 -0
  251. package/src/components/i18n/LangSwitcher.tsx +204 -0
  252. package/src/components/loader/GlobalLoader.tsx +56 -0
  253. package/src/components/logs/LogFile.tsx +88 -0
  254. package/src/components/logs/LogFileById.tsx +68 -0
  255. package/src/components/logs/LogViewer.tsx +43 -0
  256. package/src/components/menu/AppMenu.tsx +22 -0
  257. package/src/components/menu/CustomMenuItemLink.tsx +61 -0
  258. package/src/components/menu/DarkToggleMode.tsx +65 -0
  259. package/src/components/menu/LanguageToggleMode.tsx +120 -0
  260. package/src/components/misc/CustomImageInput.tsx +62 -0
  261. package/src/components/misc/DASHGlobalErrorHandler.tsx +194 -0
  262. package/src/components/misc/DarkModeSwitcher.tsx +112 -0
  263. package/src/components/misc/LanguageSwitcher.tsx +199 -0
  264. package/src/components/misc/MUIHtmlToolTip.tsx +15 -0
  265. package/src/components/misc/MuiSimpleJsonTable.tsx +279 -0
  266. package/src/components/misc/MultiLevelTable.tsx +229 -0
  267. package/src/components/misc/NoResults.tsx +25 -0
  268. package/src/components/misc/PDFViewer.tsx +85 -0
  269. package/src/components/navigation/Breadcrumbs.tsx +220 -0
  270. package/src/components/navigation/BreadcrumbsManager.tsx +310 -0
  271. package/src/components/navigation/index.tsx +5 -0
  272. package/src/components/panel/Error.tsx +168 -0
  273. package/src/components/permission/AvailablePermissionsContext.tsx +173 -0
  274. package/src/components/permission/PermissionsSelector.tsx +819 -0
  275. package/src/components/permission/PermissionsSelectorList.tsx +468 -0
  276. package/src/components/permission/tsx +0 -0
  277. package/src/components/racustombuttons/CustomRAButton.tsx +87 -0
  278. package/src/components/racustombuttons/QuickButton.tsx +117 -0
  279. package/src/components/racustombuttons/QuickEditButton.tsx +115 -0
  280. package/src/components/racustombuttons/QuickIconButton.tsx +122 -0
  281. package/src/components/scrollbar/Scrollbar.tsx +31 -0
  282. package/src/components/selects/MultiSelect.tsx +53 -0
  283. package/src/components/selects/RASearchableSelect.tsx +279 -0
  284. package/src/components/selects/RASearchableSelectChips.tsx +304 -0
  285. package/src/components/selects/SearchableSelect.tsx +135 -0
  286. package/src/components/subscription/BillingCycleSelectInput.tsx +68 -0
  287. package/src/components/subscription/PlanAddonsSettings.tsx +522 -0
  288. package/src/components/subscription/PlanAuditLog.tsx +439 -0
  289. package/src/components/subscription/PlanFeaturesSettings.tsx +223 -0
  290. package/src/components/subscription/PlanLimitsSettings.tsx +230 -0
  291. package/src/components/subscription/PlanMetadataSettings.tsx +284 -0
  292. package/src/components/subscription/PlanPricesSettings.tsx +295 -0
  293. package/src/components/subscription/index.ts +7 -0
  294. package/src/components/svgelements/SvgLoading.tsx +229 -0
  295. package/src/components/svgelements/SvgLogo.tsx +53 -0
  296. package/src/components/svgelements/SvgLogoMin.tsx +64 -0
  297. package/src/components/svgelements/SvgShipping.tsx +673 -0
  298. package/src/components/tenant/AvailablePermissionsContext.tsx +0 -0
  299. package/src/components/tenant/TenantAttributes.tsx +153 -0
  300. package/src/components/tenant/TenantAttributesContext.tsx +163 -0
  301. package/src/components/tenant/TenantSelector.tsx +139 -0
  302. package/src/components/tenant/TenantSettings.tsx +172 -0
  303. package/src/components/tenant/TenantSettingsContext.tsx +165 -0
  304. package/src/components/tenant/TenantTheme.tsx +172 -0
  305. package/src/components/user/AvatarComponent.tsx +301 -0
  306. package/src/components/user/TenantAvatarComponent.tsx +99 -0
  307. package/src/components/user/UserPreferences.tsx +642 -0
  308. package/src/config/ACTIONS.tsx +26 -0
  309. package/src/config/ConstantsService.tsx +44 -0
  310. package/src/config/DASHAdminSystemConstants.tsx +182 -0
  311. package/src/config/PARSERS.tsx +9 -0
  312. package/src/contexts/DashQueryClientContext.tsx +113 -0
  313. package/src/contexts/DashResourceContext.tsx +34 -0
  314. package/src/contexts/I18nBridgeContext.tsx +156 -0
  315. package/src/contexts/I18nBridgeSetter.tsx +39 -0
  316. package/src/contexts/I18nReduxSync.tsx +27 -0
  317. package/src/contexts/SubscriptionPlanFormatsProvider.tsx +217 -0
  318. package/src/contexts/SystemRequestsCache.tsx +215 -0
  319. package/src/contexts/auth/AuthContext.tsx +553 -0
  320. package/src/contexts/auth/AuthContextLocalStorage.tsx +140 -0
  321. package/src/contexts/auth/DASHAuthenticationService.tsx +917 -0
  322. package/src/contexts/auth/WindowContext.tsx +15 -0
  323. package/src/contexts/auth/index.tsx +3 -0
  324. package/src/contexts/com/FCMContext.tsx +415 -0
  325. package/src/contexts/com/LaravelEchoContext.tsx +41 -0
  326. package/src/contexts/com/LaravelEchoMgr.tsx +155 -0
  327. package/src/contexts/com/components/DefaultNotificationComponent.tsx +20 -0
  328. package/src/contexts/com/components/NotificationAttributesTable.tsx +54 -0
  329. package/src/contexts/com/components/NotificationRenderer.tsx +42 -0
  330. package/src/contexts/com/components/NotificationsWidget.tsx +182 -0
  331. package/src/contexts/com/components/notificationFormats.tsx +50 -0
  332. package/src/contexts/com/useLaravelEcho.tsx +432 -0
  333. package/src/contexts/dictionary/DictionaryContext.tsx +94 -0
  334. package/src/default-theme/DASHAppProviders.tsx +117 -0
  335. package/src/default-theme/DashThemeContext.tsx +218 -0
  336. package/src/default-theme/DashThemeHelperProvider.tsx +98 -0
  337. package/src/default-theme/DomainAppLayout.tsx +166 -0
  338. package/src/default-theme/DomainHeader.tsx +162 -0
  339. package/src/default-theme/DomainTheme.tsx +59 -0
  340. package/src/default-theme/FullLayoutMarkup.tsx +250 -0
  341. package/src/default-theme/StaticLayout.tsx +47 -0
  342. package/src/default-theme/index.tsx +11 -0
  343. package/src/default-theme/menu/AppMaterialMenu.tsx +545 -0
  344. package/src/default-theme/menu/AppMenuComponents/SubmenuPortal.tsx +56 -0
  345. package/src/default-theme/menu/AppMenuComponents/collapsed/CollapsedSidebarItem.tsx +254 -0
  346. package/src/default-theme/menu/AppMenuComponents/collapsed/CollapsedSidebarItems.tsx +31 -0
  347. package/src/default-theme/menu/AppMenuComponents/expanded/CollapsableSidebarMenu.tsx +276 -0
  348. package/src/default-theme/menu/AppMenuComponents/expanded/SidebarItem.tsx +91 -0
  349. package/src/default-theme/menu/AppMenuComponents/getItem.tsx +17 -0
  350. package/src/default-theme/menu/AppMenuComponents/interfaces.tsx +41 -0
  351. package/src/default-theme/menu/AppMenuComponents/submenuConstants.ts +85 -0
  352. package/src/default-theme/menu/AppSidebarMaterial.tsx +339 -0
  353. package/src/default-theme/menu/SidebarActions.tsx +84 -0
  354. package/src/default-theme/updateDomCssVariables.tsx +176 -0
  355. package/src/helpers/checkRole.tsx +66 -0
  356. package/src/helpers/parseAxiosError.tsx +41 -0
  357. package/src/hooks/audio/useAudio.tsx +39 -0
  358. package/src/hooks/axios.tsx +62 -0
  359. package/src/hooks/data/useDashboardStats.tsx +65 -0
  360. package/src/hooks/data/usePackageByClientsStats.tsx +44 -0
  361. package/src/hooks/data/usePackageByCommunesStats.tsx +44 -0
  362. package/src/hooks/data/usePackageStats.tsx +69 -0
  363. package/src/hooks/data/usePackageWithdrawDetails.tsx +61 -0
  364. package/src/hooks/data/useStats.tsx +86 -0
  365. package/src/hooks/isCurrentPath.tsx +22 -0
  366. package/src/hooks/notifications/WSMessagesManager.tsx +152 -0
  367. package/src/hooks/notifications/WSPusherManager.tsx +92 -0
  368. package/src/hooks/useBreadcrumbs.tsx +329 -0
  369. package/src/hooks/useClickOutside.tsx +17 -0
  370. package/src/hooks/useFormPersistance.tsx +150 -0
  371. package/src/hooks/useGlobalErrorMediator.tsx +43 -0
  372. package/src/hooks/useGlobalLoaderMgr.tsx +21 -0
  373. package/src/hooks/useHash.tsx +27 -0
  374. package/src/hooks/useLocalStorage.tsx +196 -0
  375. package/src/hooks/usePolyglotTranslation.tsx +62 -0
  376. package/src/hooks/usePrevious.tsx +9 -0
  377. package/src/hooks/usePrintSelected.tsx +37 -0
  378. package/src/hooks/useVirtualHash.tsx +33 -0
  379. package/src/hooks/window/useWindowSize.tsx +36 -0
  380. package/src/index.tsx +110 -0
  381. package/src/interfaces/IAppResourceConfig.tsx +20 -0
  382. package/src/interfaces/Log.tsx +16 -0
  383. package/src/interfaces/Tenant.tsx +25 -0
  384. package/src/interfaces/communication/IActions.tsx +5 -0
  385. package/src/interfaces/communication/INotification.tsx +21 -0
  386. package/src/interfaces/communication/IPayload.tsx +3 -0
  387. package/src/interfaces/communication/IRequestAction.tsx +10 -0
  388. package/src/interfaces/communication/IRequestPayload.tsx +7 -0
  389. package/src/interfaces/communication/IResponseAction.tsx +7 -0
  390. package/src/interfaces/misc/IAny.tsx +3 -0
  391. package/src/interfaces/misc/IFlashMessage.tsx +10 -0
  392. package/src/interfaces/navigation/IAppMenu.ts +14 -0
  393. package/src/interfaces/navigation/ICollapsableSidebarMenu.ts +12 -0
  394. package/src/interfaces/navigation/IMenuItem.ts +16 -0
  395. package/src/interfaces/notifications/IModel.tsx +6 -0
  396. package/src/interfaces/notifications/IModelField.tsx +8 -0
  397. package/src/interfaces/notifications/IUserNotification.tsx +12 -0
  398. package/src/interfaces/notifications/IUserNotificationData.tsx +13 -0
  399. package/src/interfaces/notifications/IUserNotificationPayload.tsx +8 -0
  400. package/src/interfaces/user/IGetAuth.tsx +92 -0
  401. package/src/interfaces/user/ITenantSettings.tsx +3 -0
  402. package/src/interfaces/user/IUser.tsx +60 -0
  403. package/src/interfaces/user/IUserSettings.tsx +43 -0
  404. package/src/interfaces.tsx +6 -0
  405. package/src/layout/AppLayout.tsx +112 -0
  406. package/src/layout/ApplicationLayout.tsx +197 -0
  407. package/src/layout/MotionWrapper.original.tsx +236 -0
  408. package/src/layout/MotionWrapper.tsx +236 -0
  409. package/src/layout/ResourceMenu.tsx +164 -0
  410. package/src/layout/ResoureLayout.tsx +105 -0
  411. package/src/layout/TransitionWrapper.tsx +125 -0
  412. package/src/pages/ChangePassword.tsx +179 -0
  413. package/src/pages/DASHLanding.tsx +22 -0
  414. package/src/pages/DASHLightWeightLogin.tsx +610 -0
  415. package/src/pages/DASHSimpleLogin.tsx +260 -0
  416. package/src/pages/Login.tsx +111 -0
  417. package/src/pages/Profile.tsx +394 -0
  418. package/src/pages/RecoverPassword.tsx +166 -0
  419. package/src/pages/SingleImageUploader.tsx +55 -0
  420. package/src/pages/VerifyAccount.tsx +128 -0
  421. package/src/providers/authProvider.tsx +210 -0
  422. package/src/providers/dataProvider.tsx +672 -0
  423. package/src/providers/i18n/en.ts +533 -0
  424. package/src/providers/i18n/es.ts +539 -0
  425. package/src/providers/i18n/languages.tsx +5 -0
  426. package/src/providers/i18nProvider.tsx +23 -0
  427. package/src/react-admin-dash/RADashComponent.tsx +240 -0
  428. package/src/react-admin-dash/Resource.tsx +77 -0
  429. package/src/resources/Brand/BrandResource.tsx +130 -0
  430. package/src/resources/DASHResourceLoader.ts +180 -0
  431. package/src/resources/Log/LogResource.tsx +73 -0
  432. package/src/resources/Tenant/ImpersonateTenantResource.tsx +113 -0
  433. package/src/resources/Trash/TrashTemplate.tsx +180 -0
  434. package/src/resources.tsx +280 -0
  435. package/src/schemas/log.tsx +45 -0
  436. package/src/schemas/notification.tsx +42 -0
  437. package/src/schemas/permissions.tsx +44 -0
  438. package/src/schemas/roles.tsx +48 -0
  439. package/src/schemas/rolesDataGrid.tsx +48 -0
  440. package/src/schemas/subscription/components/SubscriptionActions.tsx +153 -0
  441. package/src/schemas/subscription/components/SubscriptionPaymentHistory.tsx +120 -0
  442. package/src/schemas/subscription/components/SubscriptionPlanFeatures.tsx +155 -0
  443. package/src/schemas/subscription/components/SubscriptionPlanPreview.tsx +128 -0
  444. package/src/schemas/subscription/components/SubscriptionPlanStats.tsx +268 -0
  445. package/src/schemas/subscription/components/SubscriptionStatusIndicator.tsx +72 -0
  446. package/src/schemas/subscription/subscriptionPlanSchema.tsx +185 -0
  447. package/src/schemas/subscription/subscriptionSchema.tsx +152 -0
  448. package/src/schemas/subscriptionPlan.ts +422 -0
  449. package/src/schemas/tenant.tsx +129 -0
  450. package/src/schemas/tenantUser.tsx +96 -0
  451. package/src/schemas/tenant_superadmin.tsx +119 -0
  452. package/src/schemas/user.tsx +26 -0
  453. package/src/systemResources.old.tsx +928 -0
  454. package/src/systemResources.tsx +1135 -0
  455. package/src/templates/ResourceTemplate.tsx +240 -0
  456. package/src/templates/ResourceTemplateCreate.tsx +167 -0
  457. package/src/templates/ResourceTemplateEdit.tsx +176 -0
  458. package/src/templates/ResourceTemplateFull.tsx +581 -0
  459. package/src/templates/ResourceTemplateList.tsx +340 -0
  460. package/src/templates/ResourceTemplateShow.tsx +88 -0
  461. package/src/templates/TrashTemplate.tsx +179 -0
  462. package/src/tenantResources.tsx +223 -0
  463. package/src/test_portal_bubbles.tsx +40 -0
  464. package/src/theme/AppHeader.tsx +52 -0
  465. package/src/theme/AppLayoutSetting.tsx +33 -0
  466. package/src/theme/AppLogo.tsx +13 -0
  467. package/src/theme/AppSidebar.tsx +12 -0
  468. package/src/theme/AppSidebarContent.tsx +105 -0
  469. package/src/theme/AppSidebarLogo.tsx +48 -0
  470. package/src/theme/components/PageTitle.tsx +37 -0
  471. package/src/utils/cache/CacheInvalidatorContext.tsx +125 -0
  472. package/src/utils/cache/CacheInvalidatorListenerComponent.tsx +10 -0
  473. package/src/utils/cache/useCacheInvalidatorListener.tsx +27 -0
  474. package/src/utils/convertFileToBase64.tsx +9 -0
  475. package/src/utils/convertToFile.tsx +14 -0
  476. package/src/utils/cookies.tsx +33 -0
  477. package/src/utils/dashDefaultQueryClient.tsx +34 -0
  478. package/src/utils/dataUrlToBlob.tsx +30 -0
  479. package/src/utils/deepReplace.tsx +19 -0
  480. package/src/utils/getProfileMenu.tsx +41 -0
  481. package/src/utils/getTenantSettings.tsx +9 -0
  482. package/src/utils/getType.tsx +8 -0
  483. package/src/utils/getUserSettings.tsx +8 -0
  484. package/src/utils/hasCode.tsx +14 -0
  485. package/src/utils/index.ts +19 -0
  486. package/src/utils/injectTenantStyles.ts +28 -0
  487. package/src/utils/isComponent.tsx +45 -0
  488. package/src/utils/navEvents.tsx +91 -0
  489. package/src/utils/prototypes.tsx +5 -0
  490. package/src/utils/regexp.tsx +4 -0
  491. package/src/utils/resolveObjectPath.tsx +4 -0
  492. package/src/utils/setNativeValue.tsx +24 -0
  493. package/src/utils/slugify.tsx +11 -0
  494. package/src/utils/validators/emailValidator.tsx +6 -0
  495. package/src/utils/validators/requiredValidator.tsx +5 -0
  496. package/src/utils/validators/rutValidator.tsx +31 -0
  497. package/src/utils/validators.tsx +96 -0
  498. package/dist/ChangePassword-DmWAQAX_.js +0 -152
  499. package/dist/Login-t41HMhVT.js +0 -101
  500. package/dist/Profile-By-gdPUd.js +0 -294
  501. package/dist/RecoverPassword-DzPdbkg2.js +0 -149
  502. package/dist/VerifyAccount-Bofaxe5w.js +0 -99
  503. package/dist/index-gfebuoyf.js +0 -21614
  504. /package/dist/{components/permission/tsx → declarations.d.js} +0 -0
  505. /package/{dist → src}/DASHAdmin.tsx.old +0 -0
  506. /package/{dist → src}/declarations.d.ts +0 -0
  507. /package/{dist → src}/default-theme/DashThemeContext.tsx.fast +0 -0
  508. /package/{dist → src}/default-theme/DashThemeContext.tsx.old +0 -0
  509. /package/{dist → src}/templates/ResourceTemplate.tsx.memoized_experiment +0 -0
  510. /package/{dist → src}/templates/ResourceTemplate.tsx.original +0 -0
  511. /package/{dist → src}/templates/ResourceTemplateOld.tsx.bkup +0 -0
@@ -1 +1,422 @@
1
- import{Fragment as fe,jsx as t,jsxs as i}from"react/jsx-runtime";import{useState as d,useEffect as ee,useCallback as D,useMemo as ne,useRef as te}from"react";import{CircularProgress as j,Box as l,Typography as a,Switch as k,FormControlLabel as z,Card as y,CardContent as b,Alert as f,Button as re,Snackbar as se,Tabs as ae,Tab as ie,TextField as N,Slider as oe,InputAdornment as ce}from"@mui/material";import{Save as le,Notifications as de,Settings as pe}from"@mui/icons-material";import{useAxios as ue}from"@dashadmin/dash-axios-hook";import{AuthPersistenceService as ge}from"@dashadmin/dash-auth";const ye=x=>x==="notifications"?t(de,{}):t(pe,{}),be=()=>{const[x,V]=d(!0),[c,T]=d(!1),[S,h]=d(!1),[C,W]=d(0),[F,w]=d([]),[B,A]=d({}),[O,q]=d([]),[I,H]=d({}),[P,m]=d({open:!1,message:"",severity:"success"}),R=ue(),v=ne(()=>ge.getSystemValues()?.user_notifications||[],[]),L=te(v);L.current=v;const p=Object.entries(I).sort(([,e],[,n])=>(e.order||0)-(n.order||0)).map(([e,n])=>({key:e,...n})),M=e=>O.filter(n=>n.group===e&&n.visible),G=D((e,n)=>{const r=e?.notifications||[];return n.map(s=>{const o=Array.isArray(r)?r.find(u=>u.id===s.id):null;return{id:s.id,name:s.name,email:o?.email!==void 0?o.email:s.hasEmail,push:o?.push!==void 0?o.push:s.hasPush}})},[]),_=D(async()=>{try{console.log("\u{1F504} UserPreferences - Fetching preferences from API...");const n=(await R.get("/system/user/preferences")).data;console.log("\u2705 UserPreferences - Fetched:",n),q(n.preference_formats||[]),H(n.groups||{});const r=n.preferences||{},s=G(r,L.current);w(s);const o={};(n.preference_formats||[]).forEach(u=>{u.type!=="custom"&&(o[u.id]=r[u.id]??u.default_value)}),A(o),h(!1)}catch(e){console.error("\u274C UserPreferences - Fetch error:",e),m({open:!0,message:"Failed to load preferences",severity:"error"})}},[G]);ee(()=>{(async()=>(await _(),V(!1)))()},[]);const Y=(e,n)=>{W(n)},E=(e,n,r)=>{w(s=>s.map(o=>o.id===e?{...o,[n]:r}:o)),h(!0)},g=(e,n)=>{A(r=>({...r,[e]:n})),h(!0)},Z=async()=>{T(!0);try{const e={notifications:F,...B},n=await R.put("/system/user/preferences",{preferences:e});console.log("\u2705 UserPreferences - Saved:",n.data),m({open:!0,message:"Preferences saved successfully!",severity:"success"}),h(!1),await _()}catch(e){console.error("\u274C UserPreferences - Save error:",e),m({open:!0,message:e.response?.data?.message||"Failed to save preferences",severity:"error"})}finally{T(!1)}},U=()=>{m(e=>({...e,open:!1}))},J=e=>v.find(n=>n.id===e),Q=e=>e.replace(/Notification$/,"").replace(/([A-Z])/g," $1").trim(),X=e=>{const n=B[e.id];switch(e.type){case"boolean":return t(y,{sx:{mb:2},children:i(b,{sx:{display:"flex",justifyContent:"space-between",alignItems:"center"},children:[i(l,{children:[t(a,{variant:"subtitle1",children:e.label}),e.description&&t(a,{variant:"caption",color:"text.secondary",children:e.description})]}),t(k,{checked:!!n,onChange:r=>g(e.id,r.target.checked),disabled:c||!e.editable})]})},e.id);case"integer":return t(y,{sx:{mb:2},children:i(b,{children:[t(a,{variant:"subtitle1",gutterBottom:!0,children:e.label}),e.description&&t(a,{variant:"caption",color:"text.secondary",display:"block",mb:2,children:e.description}),i(l,{sx:{display:"flex",alignItems:"center",gap:2},children:[t(oe,{value:n??e.default_value??0,onChange:(r,s)=>g(e.id,s),min:e.min??0,max:e.max??100,disabled:c||!e.editable,sx:{flexGrow:1},valueLabelDisplay:"auto"}),t(N,{type:"number",value:n??e.default_value??0,onChange:r=>g(e.id,parseInt(r.target.value,10)),disabled:c||!e.editable,inputProps:{min:e.min??0,max:e.max??100},sx:{width:80},size:"small"})]})]})},e.id);case"string":return t(y,{sx:{mb:2},children:i(b,{children:[t(a,{variant:"subtitle1",gutterBottom:!0,children:e.label}),e.description&&t(a,{variant:"caption",color:"text.secondary",display:"block",mb:2,children:e.description}),t(N,{fullWidth:!0,value:n??"",onChange:r=>g(e.id,r.target.value),disabled:c||!e.editable,inputProps:{maxLength:e.maxLength},InputProps:e.maxLength?{endAdornment:i(ce,{position:"end",children:[n?.length||0,"/",e.maxLength]})}:void 0})]})},e.id);case"textarea":return t(y,{sx:{mb:2},children:i(b,{children:[t(a,{variant:"subtitle1",gutterBottom:!0,children:e.label}),e.description&&t(a,{variant:"caption",color:"text.secondary",display:"block",mb:2,children:e.description}),t(N,{fullWidth:!0,multiline:!0,rows:e.rows??3,value:n??"",onChange:r=>g(e.id,r.target.value),disabled:c||!e.editable,inputProps:{maxLength:e.maxLength},helperText:e.maxLength?`${n?.length||0}/${e.maxLength} characters`:void 0})]})},e.id);default:return null}},K=()=>v.length===0?t(f,{severity:"info",children:"No notification types available."}):t(fe,{children:F.map(e=>{const n=J(e.id);return t(y,{sx:{mb:2},children:i(b,{sx:{display:"flex",justifyContent:"space-between",alignItems:"center"},children:[i(l,{children:[t(a,{variant:"subtitle1",children:Q(e.name)}),t(a,{variant:"caption",color:"text.secondary",children:e.name})]}),i(l,{sx:{display:"flex",gap:2},children:[n?.hasEmail&&t(z,{control:t(k,{checked:e.email,onChange:r=>E(e.id,"email",r.target.checked),color:"primary",disabled:c}),label:"Email"}),n?.hasPush&&t(z,{control:t(k,{checked:e.push,onChange:r=>E(e.id,"push",r.target.checked),color:"primary",disabled:c}),label:"Push"}),!n?.hasEmail&&!n?.hasPush&&t(a,{variant:"caption",color:"text.secondary",children:"(No configurable channels)"})]})]})},e.id)})}),$=e=>{const n=M(e),r=I[e];return i(l,{sx:{pt:2},children:[r?.description&&t(a,{variant:"body2",color:"text.secondary",sx:{mb:3},children:r.description}),n.map(s=>s.type==="custom"&&s.component==="NotificationPreferences"?t(l,{children:K()},s.id):X(s)),n.length===0&&t(f,{severity:"info",children:"No preferences available in this group."})]})};return x?t(l,{sx:{display:"flex",justifyContent:"center",p:4},children:t(j,{})}):i(l,{sx:{p:2},children:[t(l,{sx:{display:"flex",justifyContent:"space-between",alignItems:"center",mb:2},children:t(a,{variant:"h5",children:"User Preferences"})}),S&&t(f,{severity:"info",sx:{mb:2},children:'You have unsaved changes. Click "Save Preferences" to apply them.'}),p.length>1&&t(ae,{value:C,onChange:Y,sx:{borderBottom:1,borderColor:"divider",mb:2},children:p.map((e,n)=>t(ie,{label:e.label,icon:ye(e.icon),iconPosition:"start",id:`preference-tab-${n}`,"aria-controls":`preference-tabpanel-${n}`},e.key))}),p.map((e,n)=>t(l,{role:"tabpanel",hidden:C!==n,id:`preference-tabpanel-${n}`,"aria-labelledby":`preference-tab-${n}`,children:C===n&&$(e.key)},e.key)),p.length===1&&$(p[0].key),p.length===0&&t(f,{severity:"warning",children:"No preference groups configured."}),t(se,{open:P.open,autoHideDuration:4e3,onClose:U,anchorOrigin:{vertical:"bottom",horizontal:"center"},children:t(f,{onClose:U,severity:P.severity,sx:{width:"100%"},children:P.message})}),t(re,{variant:"contained",fullWidth:!0,color:"primary",startIcon:c?t(j,{size:16,color:"inherit"}):t(le,{}),onClick:Z,disabled:c||!S,children:c?"Saving...":"Save Preferences"})]})};var ke=be;export{ke as default};
1
+ var __defProp = Object.defineProperty;
2
+ var __defProps = Object.defineProperties;
3
+ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
4
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
7
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
8
+ var __spreadValues = (a, b) => {
9
+ for (var prop in b || (b = {}))
10
+ if (__hasOwnProp.call(b, prop))
11
+ __defNormalProp(a, prop, b[prop]);
12
+ if (__getOwnPropSymbols)
13
+ for (var prop of __getOwnPropSymbols(b)) {
14
+ if (__propIsEnum.call(b, prop))
15
+ __defNormalProp(a, prop, b[prop]);
16
+ }
17
+ return a;
18
+ };
19
+ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
20
+ var __async = (__this, __arguments, generator) => {
21
+ return new Promise((resolve, reject) => {
22
+ var fulfilled = (value) => {
23
+ try {
24
+ step(generator.next(value));
25
+ } catch (e) {
26
+ reject(e);
27
+ }
28
+ };
29
+ var rejected = (value) => {
30
+ try {
31
+ step(generator.throw(value));
32
+ } catch (e) {
33
+ reject(e);
34
+ }
35
+ };
36
+ var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
37
+ step((generator = generator.apply(__this, __arguments)).next());
38
+ });
39
+ };
40
+ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
41
+ import { useState, useEffect, useCallback, useMemo, useRef } from "react";
42
+ import {
43
+ CircularProgress,
44
+ Box,
45
+ Typography,
46
+ Switch,
47
+ FormControlLabel,
48
+ Card,
49
+ CardContent,
50
+ Alert,
51
+ Button,
52
+ Snackbar,
53
+ Tabs,
54
+ Tab,
55
+ TextField,
56
+ Slider,
57
+ InputAdornment
58
+ } from "@mui/material";
59
+ import {
60
+ Save as SaveIcon,
61
+ Notifications as NotificationsIcon,
62
+ Settings as SettingsIcon
63
+ } from "@mui/icons-material";
64
+ import { useAxios } from "dash-axios-hook";
65
+ import { AuthPersistenceService } from "dash-auth";
66
+ const getGroupIcon = (icon) => {
67
+ switch (icon) {
68
+ case "notifications":
69
+ return /* @__PURE__ */ jsx(NotificationsIcon, {});
70
+ case "settings":
71
+ default:
72
+ return /* @__PURE__ */ jsx(SettingsIcon, {});
73
+ }
74
+ };
75
+ const UserPreferences = () => {
76
+ const [loading, setLoading] = useState(true);
77
+ const [saving, setSaving] = useState(false);
78
+ const [isDirty, setIsDirty] = useState(false);
79
+ const [activeTab, setActiveTab] = useState(0);
80
+ const [notificationPreferences, setNotificationPreferences] = useState([]);
81
+ const [genericPreferences, setGenericPreferences] = useState({});
82
+ const [preferenceFormats, setPreferenceFormats] = useState([]);
83
+ const [groups, setGroups] = useState({});
84
+ const [snackbar, setSnackbar] = useState({
85
+ open: false,
86
+ message: "",
87
+ severity: "success"
88
+ });
89
+ const axios = useAxios();
90
+ const availableNotifications = useMemo(() => {
91
+ const systemValues = AuthPersistenceService.getSystemValues();
92
+ return (systemValues == null ? void 0 : systemValues.user_notifications) || [];
93
+ }, []);
94
+ const availableNotificationsRef = useRef(availableNotifications);
95
+ availableNotificationsRef.current = availableNotifications;
96
+ const sortedGroups = Object.entries(groups).sort(([, a], [, b]) => (a.order || 0) - (b.order || 0)).map(([key, config]) => __spreadValues({ key }, config));
97
+ const getPreferencesForGroup = (groupKey) => {
98
+ return preferenceFormats.filter((pf) => pf.group === groupKey && pf.visible);
99
+ };
100
+ const buildNotificationPreferencesFromUser = useCallback((userPrefs, notifications) => {
101
+ const notificationPrefs = (userPrefs == null ? void 0 : userPrefs.notifications) || [];
102
+ return notifications.map((notif) => {
103
+ const existing = Array.isArray(notificationPrefs) ? notificationPrefs.find((p) => p.id === notif.id) : null;
104
+ return {
105
+ id: notif.id,
106
+ name: notif.name,
107
+ email: (existing == null ? void 0 : existing.email) !== void 0 ? existing.email : notif.hasEmail,
108
+ push: (existing == null ? void 0 : existing.push) !== void 0 ? existing.push : notif.hasPush
109
+ };
110
+ });
111
+ }, []);
112
+ const fetchPreferences = useCallback(() => __async(null, null, function* () {
113
+ try {
114
+ console.log("\u{1F504} UserPreferences - Fetching preferences from API...");
115
+ const response = yield axios.get("/system/user/preferences");
116
+ const data = response.data;
117
+ console.log("\u2705 UserPreferences - Fetched:", data);
118
+ setPreferenceFormats(data.preference_formats || []);
119
+ setGroups(data.groups || {});
120
+ const userPrefs = data.preferences || {};
121
+ const builtNotifPrefs = buildNotificationPreferencesFromUser(userPrefs, availableNotificationsRef.current);
122
+ setNotificationPreferences(builtNotifPrefs);
123
+ const genericPrefs = {};
124
+ (data.preference_formats || []).forEach((format) => {
125
+ var _a;
126
+ if (format.type !== "custom") {
127
+ genericPrefs[format.id] = (_a = userPrefs[format.id]) != null ? _a : format.default_value;
128
+ }
129
+ });
130
+ setGenericPreferences(genericPrefs);
131
+ setIsDirty(false);
132
+ } catch (error) {
133
+ console.error("\u274C UserPreferences - Fetch error:", error);
134
+ setSnackbar({
135
+ open: true,
136
+ message: "Failed to load preferences",
137
+ severity: "error"
138
+ });
139
+ }
140
+ }), [buildNotificationPreferencesFromUser]);
141
+ useEffect(() => {
142
+ const init = () => __async(null, null, function* () {
143
+ yield fetchPreferences();
144
+ setLoading(false);
145
+ });
146
+ init();
147
+ }, []);
148
+ const handleTabChange = (_event, newValue) => {
149
+ setActiveTab(newValue);
150
+ };
151
+ const handleNotificationToggle = (notificationId, type, checked) => {
152
+ setNotificationPreferences((prev) => prev.map(
153
+ (pref) => pref.id === notificationId ? __spreadProps(__spreadValues({}, pref), { [type]: checked }) : pref
154
+ ));
155
+ setIsDirty(true);
156
+ };
157
+ const handleGenericPreferenceChange = (preferenceId, value) => {
158
+ setGenericPreferences((prev) => __spreadProps(__spreadValues({}, prev), { [preferenceId]: value }));
159
+ setIsDirty(true);
160
+ };
161
+ const handleSave = () => __async(null, null, function* () {
162
+ var _a, _b;
163
+ setSaving(true);
164
+ try {
165
+ const preferencesToSave = __spreadValues({
166
+ notifications: notificationPreferences
167
+ }, genericPreferences);
168
+ const response = yield axios.put("/system/user/preferences", {
169
+ preferences: preferencesToSave
170
+ });
171
+ console.log("\u2705 UserPreferences - Saved:", response.data);
172
+ setSnackbar({
173
+ open: true,
174
+ message: "Preferences saved successfully!",
175
+ severity: "success"
176
+ });
177
+ setIsDirty(false);
178
+ yield fetchPreferences();
179
+ } catch (error) {
180
+ console.error("\u274C UserPreferences - Save error:", error);
181
+ setSnackbar({
182
+ open: true,
183
+ message: ((_b = (_a = error.response) == null ? void 0 : _a.data) == null ? void 0 : _b.message) || "Failed to save preferences",
184
+ severity: "error"
185
+ });
186
+ } finally {
187
+ setSaving(false);
188
+ }
189
+ });
190
+ const handleCloseSnackbar = () => {
191
+ setSnackbar((prev) => __spreadProps(__spreadValues({}, prev), { open: false }));
192
+ };
193
+ const getNotificationConfig = (id) => {
194
+ return availableNotifications.find((n) => n.id === id);
195
+ };
196
+ const formatNotificationName = (name) => {
197
+ return name.replace(/Notification$/, "").replace(/([A-Z])/g, " $1").trim();
198
+ };
199
+ const renderPreferenceField = (format) => {
200
+ var _a, _b, _c, _d, _e, _f, _g;
201
+ const value = genericPreferences[format.id];
202
+ switch (format.type) {
203
+ case "boolean":
204
+ return /* @__PURE__ */ jsx(Card, { sx: { mb: 2 }, children: /* @__PURE__ */ jsxs(CardContent, { sx: { display: "flex", justifyContent: "space-between", alignItems: "center" }, children: [
205
+ /* @__PURE__ */ jsxs(Box, { children: [
206
+ /* @__PURE__ */ jsx(Typography, { variant: "subtitle1", children: format.label }),
207
+ format.description && /* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.secondary", children: format.description })
208
+ ] }),
209
+ /* @__PURE__ */ jsx(
210
+ Switch,
211
+ {
212
+ checked: !!value,
213
+ onChange: (e) => handleGenericPreferenceChange(format.id, e.target.checked),
214
+ disabled: saving || !format.editable
215
+ }
216
+ )
217
+ ] }) }, format.id);
218
+ case "integer":
219
+ return /* @__PURE__ */ jsx(Card, { sx: { mb: 2 }, children: /* @__PURE__ */ jsxs(CardContent, { children: [
220
+ /* @__PURE__ */ jsx(Typography, { variant: "subtitle1", gutterBottom: true, children: format.label }),
221
+ format.description && /* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.secondary", display: "block", mb: 2, children: format.description }),
222
+ /* @__PURE__ */ jsxs(Box, { sx: { display: "flex", alignItems: "center", gap: 2 }, children: [
223
+ /* @__PURE__ */ jsx(
224
+ Slider,
225
+ {
226
+ value: (_a = value != null ? value : format.default_value) != null ? _a : 0,
227
+ onChange: (_, newValue) => handleGenericPreferenceChange(format.id, newValue),
228
+ min: (_b = format.min) != null ? _b : 0,
229
+ max: (_c = format.max) != null ? _c : 100,
230
+ disabled: saving || !format.editable,
231
+ sx: { flexGrow: 1 },
232
+ valueLabelDisplay: "auto"
233
+ }
234
+ ),
235
+ /* @__PURE__ */ jsx(
236
+ TextField,
237
+ {
238
+ type: "number",
239
+ value: (_d = value != null ? value : format.default_value) != null ? _d : 0,
240
+ onChange: (e) => handleGenericPreferenceChange(format.id, parseInt(e.target.value, 10)),
241
+ disabled: saving || !format.editable,
242
+ inputProps: {
243
+ min: (_e = format.min) != null ? _e : 0,
244
+ max: (_f = format.max) != null ? _f : 100
245
+ },
246
+ sx: { width: 80 },
247
+ size: "small"
248
+ }
249
+ )
250
+ ] })
251
+ ] }) }, format.id);
252
+ case "string":
253
+ return /* @__PURE__ */ jsx(Card, { sx: { mb: 2 }, children: /* @__PURE__ */ jsxs(CardContent, { children: [
254
+ /* @__PURE__ */ jsx(Typography, { variant: "subtitle1", gutterBottom: true, children: format.label }),
255
+ format.description && /* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.secondary", display: "block", mb: 2, children: format.description }),
256
+ /* @__PURE__ */ jsx(
257
+ TextField,
258
+ {
259
+ fullWidth: true,
260
+ value: value != null ? value : "",
261
+ onChange: (e) => handleGenericPreferenceChange(format.id, e.target.value),
262
+ disabled: saving || !format.editable,
263
+ inputProps: { maxLength: format.maxLength },
264
+ InputProps: format.maxLength ? {
265
+ endAdornment: /* @__PURE__ */ jsxs(InputAdornment, { position: "end", children: [
266
+ (value == null ? void 0 : value.length) || 0,
267
+ "/",
268
+ format.maxLength
269
+ ] })
270
+ } : void 0
271
+ }
272
+ )
273
+ ] }) }, format.id);
274
+ case "textarea":
275
+ return /* @__PURE__ */ jsx(Card, { sx: { mb: 2 }, children: /* @__PURE__ */ jsxs(CardContent, { children: [
276
+ /* @__PURE__ */ jsx(Typography, { variant: "subtitle1", gutterBottom: true, children: format.label }),
277
+ format.description && /* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.secondary", display: "block", mb: 2, children: format.description }),
278
+ /* @__PURE__ */ jsx(
279
+ TextField,
280
+ {
281
+ fullWidth: true,
282
+ multiline: true,
283
+ rows: (_g = format.rows) != null ? _g : 3,
284
+ value: value != null ? value : "",
285
+ onChange: (e) => handleGenericPreferenceChange(format.id, e.target.value),
286
+ disabled: saving || !format.editable,
287
+ inputProps: { maxLength: format.maxLength },
288
+ helperText: format.maxLength ? `${(value == null ? void 0 : value.length) || 0}/${format.maxLength} characters` : void 0
289
+ }
290
+ )
291
+ ] }) }, format.id);
292
+ default:
293
+ return null;
294
+ }
295
+ };
296
+ const renderNotificationPreferences = () => {
297
+ if (availableNotifications.length === 0) {
298
+ return /* @__PURE__ */ jsx(Alert, { severity: "info", children: "No notification types available." });
299
+ }
300
+ return /* @__PURE__ */ jsx(Fragment, { children: notificationPreferences.map((pref) => {
301
+ const config = getNotificationConfig(pref.id);
302
+ return /* @__PURE__ */ jsx(Card, { sx: { mb: 2 }, children: /* @__PURE__ */ jsxs(CardContent, { sx: { display: "flex", justifyContent: "space-between", alignItems: "center" }, children: [
303
+ /* @__PURE__ */ jsxs(Box, { children: [
304
+ /* @__PURE__ */ jsx(Typography, { variant: "subtitle1", children: formatNotificationName(pref.name) }),
305
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.secondary", children: pref.name })
306
+ ] }),
307
+ /* @__PURE__ */ jsxs(Box, { sx: { display: "flex", gap: 2 }, children: [
308
+ (config == null ? void 0 : config.hasEmail) && /* @__PURE__ */ jsx(
309
+ FormControlLabel,
310
+ {
311
+ control: /* @__PURE__ */ jsx(
312
+ Switch,
313
+ {
314
+ checked: pref.email,
315
+ onChange: (e) => handleNotificationToggle(pref.id, "email", e.target.checked),
316
+ color: "primary",
317
+ disabled: saving
318
+ }
319
+ ),
320
+ label: "Email"
321
+ }
322
+ ),
323
+ (config == null ? void 0 : config.hasPush) && /* @__PURE__ */ jsx(
324
+ FormControlLabel,
325
+ {
326
+ control: /* @__PURE__ */ jsx(
327
+ Switch,
328
+ {
329
+ checked: pref.push,
330
+ onChange: (e) => handleNotificationToggle(pref.id, "push", e.target.checked),
331
+ color: "primary",
332
+ disabled: saving
333
+ }
334
+ ),
335
+ label: "Push"
336
+ }
337
+ ),
338
+ !(config == null ? void 0 : config.hasEmail) && !(config == null ? void 0 : config.hasPush) && /* @__PURE__ */ jsx(Typography, { variant: "caption", color: "text.secondary", children: "(No configurable channels)" })
339
+ ] })
340
+ ] }) }, pref.id);
341
+ }) });
342
+ };
343
+ const renderGroupContent = (groupKey) => {
344
+ const groupPreferences = getPreferencesForGroup(groupKey);
345
+ const groupConfig = groups[groupKey];
346
+ return /* @__PURE__ */ jsxs(Box, { sx: { pt: 2 }, children: [
347
+ (groupConfig == null ? void 0 : groupConfig.description) && /* @__PURE__ */ jsx(Typography, { variant: "body2", color: "text.secondary", sx: { mb: 3 }, children: groupConfig.description }),
348
+ groupPreferences.map((format) => {
349
+ if (format.type === "custom" && format.component === "NotificationPreferences") {
350
+ return /* @__PURE__ */ jsx(Box, { children: renderNotificationPreferences() }, format.id);
351
+ }
352
+ return renderPreferenceField(format);
353
+ }),
354
+ groupPreferences.length === 0 && /* @__PURE__ */ jsx(Alert, { severity: "info", children: "No preferences available in this group." })
355
+ ] });
356
+ };
357
+ if (loading) {
358
+ return /* @__PURE__ */ jsx(Box, { sx: { display: "flex", justifyContent: "center", p: 4 }, children: /* @__PURE__ */ jsx(CircularProgress, {}) });
359
+ }
360
+ return /* @__PURE__ */ jsxs(Box, { sx: { p: 2 }, children: [
361
+ /* @__PURE__ */ jsx(Box, { sx: { display: "flex", justifyContent: "space-between", alignItems: "center", mb: 2 }, children: /* @__PURE__ */ jsx(Typography, { variant: "h5", children: "User Preferences" }) }),
362
+ isDirty && /* @__PURE__ */ jsx(Alert, { severity: "info", sx: { mb: 2 }, children: 'You have unsaved changes. Click "Save Preferences" to apply them.' }),
363
+ sortedGroups.length > 1 && /* @__PURE__ */ jsx(
364
+ Tabs,
365
+ {
366
+ value: activeTab,
367
+ onChange: handleTabChange,
368
+ sx: { borderBottom: 1, borderColor: "divider", mb: 2 },
369
+ children: sortedGroups.map((group, index) => /* @__PURE__ */ jsx(
370
+ Tab,
371
+ {
372
+ label: group.label,
373
+ icon: getGroupIcon(group.icon),
374
+ iconPosition: "start",
375
+ id: `preference-tab-${index}`,
376
+ "aria-controls": `preference-tabpanel-${index}`
377
+ },
378
+ group.key
379
+ ))
380
+ }
381
+ ),
382
+ sortedGroups.map((group, index) => /* @__PURE__ */ jsx(
383
+ Box,
384
+ {
385
+ role: "tabpanel",
386
+ hidden: activeTab !== index,
387
+ id: `preference-tabpanel-${index}`,
388
+ "aria-labelledby": `preference-tab-${index}`,
389
+ children: activeTab === index && renderGroupContent(group.key)
390
+ },
391
+ group.key
392
+ )),
393
+ sortedGroups.length === 1 && renderGroupContent(sortedGroups[0].key),
394
+ sortedGroups.length === 0 && /* @__PURE__ */ jsx(Alert, { severity: "warning", children: "No preference groups configured." }),
395
+ /* @__PURE__ */ jsx(
396
+ Snackbar,
397
+ {
398
+ open: snackbar.open,
399
+ autoHideDuration: 4e3,
400
+ onClose: handleCloseSnackbar,
401
+ anchorOrigin: { vertical: "bottom", horizontal: "center" },
402
+ children: /* @__PURE__ */ jsx(Alert, { onClose: handleCloseSnackbar, severity: snackbar.severity, sx: { width: "100%" }, children: snackbar.message })
403
+ }
404
+ ),
405
+ /* @__PURE__ */ jsx(
406
+ Button,
407
+ {
408
+ variant: "contained",
409
+ fullWidth: true,
410
+ color: "primary",
411
+ startIcon: saving ? /* @__PURE__ */ jsx(CircularProgress, { size: 16, color: "inherit" }) : /* @__PURE__ */ jsx(SaveIcon, {}),
412
+ onClick: handleSave,
413
+ disabled: saving || !isDirty,
414
+ children: saving ? "Saving..." : "Save Preferences"
415
+ }
416
+ )
417
+ ] });
418
+ };
419
+ var UserPreferences_default = UserPreferences;
420
+ export {
421
+ UserPreferences_default as default
422
+ };
@@ -1 +1,25 @@
1
- import I from"./PARSERS";const T={GET_NOTIFICATIONS:{ACTION:"GET_NOTIFICATIONS",SUCCESS:"GET_NOTIFICATIONS_SUCCESS",FAILURE:"GET_NOTIFICATIONS_FAILURE",PATH:"/api/notification",METHOD:"POST",AUTH:!0,PARSER:I.GET_NOTIFICATIONS},READ_NOTIFICATION:{ACTION:"READ_NOTIFICATION",SUCCESS:"READ_NOTIFICATION_SUCCESS",FAILURE:"READ_NOTIFICATION_FAILURE",PATH:"/api/notification/read/:id",METHOD:"GET",AUTH:!0}};var S=T;export{S as default};
1
+ import PARSERS from "./PARSERS";
2
+ const ACTIONS = {
3
+ GET_NOTIFICATIONS: {
4
+ ACTION: "GET_NOTIFICATIONS",
5
+ SUCCESS: "GET_NOTIFICATIONS_SUCCESS",
6
+ FAILURE: "GET_NOTIFICATIONS_FAILURE",
7
+ PATH: "/api/notification",
8
+ METHOD: "POST",
9
+ AUTH: true,
10
+ PARSER: PARSERS.GET_NOTIFICATIONS
11
+ },
12
+ READ_NOTIFICATION: {
13
+ ACTION: "READ_NOTIFICATION",
14
+ SUCCESS: "READ_NOTIFICATION_SUCCESS",
15
+ FAILURE: "READ_NOTIFICATION_FAILURE",
16
+ PATH: "/api/notification/read/:id",
17
+ METHOD: "GET",
18
+ AUTH: true
19
+ // PARSER: PARSERS.GET_NOTIFICATIONS
20
+ }
21
+ };
22
+ var ACTIONS_default = ACTIONS;
23
+ export {
24
+ ACTIONS_default as default
25
+ };
@@ -1 +1,25 @@
1
- import{jsx as d}from"react/jsx-runtime";import*as t from"react";import p from"@dashadmin/dash-constants/src/DASHAdminSystemConstants";const i=function(){return t.createContext(null)},c=i(),x=function(s){const{initialAppConstants:o,children:e}=s,[a,r]=t.useState(o||null),C={appConstants:a,systemConstants:p,setAppConstants:r};return d(c.Provider,{value:C,children:e})};var u=x;export{c as ConstantsContext,i as createConstantsContext,u as default};
1
+ import { jsx } from "react/jsx-runtime";
2
+ import * as React from "react";
3
+ import constants from "dash-constants/src/DASHAdminSystemConstants";
4
+ const createConstantsContext = function constantsContextWrapper() {
5
+ return React.createContext(null);
6
+ };
7
+ const ConstantsContext = createConstantsContext();
8
+ const ConstantsProvider = function ConstantsProviderWrapper(props) {
9
+ const { initialAppConstants, children } = props;
10
+ const [appConstants, setAppConstants] = React.useState(
11
+ initialAppConstants || null
12
+ );
13
+ const defaultState = {
14
+ appConstants,
15
+ systemConstants: constants,
16
+ setAppConstants
17
+ };
18
+ return /* @__PURE__ */ jsx(ConstantsContext.Provider, { value: defaultState, children });
19
+ };
20
+ var ConstantsService_default = ConstantsProvider;
21
+ export {
22
+ ConstantsContext,
23
+ createConstantsContext,
24
+ ConstantsService_default as default
25
+ };
@@ -1 +1,137 @@
1
- const T=E=>process.env[E]||null,_=E=>{const A=process.env.ENV_PREFIX||process.env.NEXT_PUBLIC_ENV_PREFIX||process.env.VITE_ENV_PREFIX||process.env.REACT_ENV_PREFIX||"VITE_";return A==="NEXT_PUBLIC_"?T(A+E):process.env[A+E]||null},L={FRONTEND_URL:_("APP_FRONTEND_URL")||"http://localhost:3006",API_URL:_("APP_BACKEND_URL")||"http://localhost:8000",SOCKET_URL:(_("APP_SOCKETS_HOST")||(typeof window<"u"?window.location.hostname:"localhost"))+(_("APP_SOCKETS_PORT")?":"+_("APP_SOCKETS_PORT"):""),SOCKETS_ENABLED:JSON.parse(_("APP_SOCKETS_ENABLED"))||!1,SOCKETS_BROADCASTER:_("APP_SOCKETS_BROADCASTER")||"pusher",SOCKETS_KEY:_("APP_SOCKETS_KEY")||"dash",ADMIN_API_URL:_("APP_ADMIN_API_URL"),DEBUG:!0,SHOW_GLOBAL_TOAST_ERROR:!1,SHOW_GLOBAL_DIALOG_ERROR:!0,DASH_SYSTEM_ROLE:_("DASH_SYSTEM_ROLE")||"System",DASH_ADMIN_ROLE:_("DASH_ADMIN_ROLE")||"Administrator",HAS_ADMINISTRATOR_ID_ROLE:"HasAdministratorId",ENABLE_TENANT_LOGIC:_("ENABLE_TENANT_LOGIC")||!0,ENABLE_TENANT_IMPERSONATION:_("ENABLE_TENANT_LOGIC")||!0,ENABLE_LOGS_AND_NOTIFICATIONS:_("ENABLE_LOGS_AND_NOTIFICATIONS")||!1,DEFAULT_PER_PAGE:Number(_("DEFAULT_PER_PAGE"))||null,URL_PREFIX:_("DASH_ADMIN_URL_PREFIX")||"/",PAGE_TRANSITIONS:!1,GOOGLE_SIGNUP:JSON.parse(_("APP_GOOGLE_SIGNUP"))||!1,RECAPTCHA_ENABLED:JSON.parse(_("APP_RECAPTCHA_ENABLED"))||!1,RECAPTCHA_TOKEN:_("APP_RECAPTCHA_TOKEN")||"UNSET",APP_VERSION:_("APP_VERSION")||"1.0.0",BUILD_TIME:_("BUILD_TIME")||new Date().toISOString(),IS_ELECTRON:JSON.parse(_("IS_ELECTRON"))||!1,PLATFORM:_("PLATFORM")||"unknown",IS_WINDOWS:JSON.parse(_("IS_WINDOWS"))||!1,IS_MAC:JSON.parse(_("IS_MAC"))||!1,IS_LINUX:JSON.parse(_("IS_LINUX"))||!1,PLATFORM_TYPE:_("PLATFORM_TYPE")||"browser"},e={SIDEBAR_WIDTH:_("SIDEBAR_WIDH")||256,SIDEBAR_COLLAPSED_WIDTH:_("SIDEBAR_COLLAPSED_WIDH")||63,TAB_SIZE:992,MOBILE_SIZE:575,THEME_TYPE:"THEME_TYPE",THEME_TYPE_LIGHT:"light",THEME_TYPE_DARK:"dark",THEME_TYPE_DASH_DEFAULT:"light",THEME_TYPE_SEMI_DARK:"THEME_TYPE_SEMI_DARK",THEME_COLOR:"THEME_COLOR",UPDATE_RTL_STATUS:"UPDATE_RTL_STATUS",LAYOUT_TYPE:"LAYOUT_TYPE",LAYOUT_TYPE_FRAMED:"framed-layout",LAYOUT_TYPE_BOXED:"boxed-layout",LAYOUT_TYPE_FULL:"full-layout",NAV_STYLE:"NAV_STYLE",NAV_STYLE_FIXED:"NAV_STYLE_FIXED",NAV_STYLE_MINI_SIDEBAR:"NAV_STYLE_MINI_SIDEBAR",NAV_STYLE_DRAWER:"NAV_STYLE_DRAWER",NAV_STYLE_NO_HEADER_MINI_SIDEBAR:"NAV_STYLE_NO_HEADER_MINI_SIDEBAR",NAV_STYLE_NO_HEADER_EXPANDED_SIDEBAR:"NAV_STYLE_NO_HEADER_EXPANDED_SIDEBAR",NAV_STYLE_DEFAULT_HORIZONTAL:"NAV_STYLE_DEFAULT_HORIZONTAL",NAV_STYLE_DARK_HORIZONTAL:"NAV_STYLE_DARK_HORIZONTAL",NAV_STYLE_INSIDE_HEADER_HORIZONTAL:"NAV_STYLE_INSIDE_HEADER_HORIZONTAL",NAV_STYLE_BELOW_HEADER:"NAV_STYLE_BELOW_HEADER",NAV_STYLE_ABOVE_HEADER:"NAV_STYLE_ABOVE_HEADER",NAV_STYLE_COLLAPSABLE:"NAV_STYLE_COLLAPSABLE",LIGHT_PURPLE:"light_purple",LIGHT_PURPLE_SEC:"#00B378",LIGHT_PURPLE_DARK_TEXT_COLOR:"#9799AC",RED:"red",RED_SEC:"#00D9C9",RED_DARK_TEXT_COLOR:"#878BAB",BLUE:"blue",BLUE_SEC:"#FCB53B",BLUE_DARK_TEXT_COLOR:"#AAA59A",DARK_BLUE:"dark_blue",DARK_BLUE_SEC:"#17BDE5",DARK_BLUE_DARK_TEXT_COLOR:"#9DDAE9",ORANGE:"orange",ORANGE_SEC:"#F1D065",ORANGE_DARK_TEXT_COLOR:"#ABA895",LIGHT_BLUE:"light_blue",LIGHT_BLUE_SEC:"#59DCFF",LIGHT_BLUE_DARK_TEXT_COLOR:"#92A2C8",DEEP_ORANGE:"deep_orange",DEEP_ORANGE_SEC:"#70A288",DEEP_ORANGE_DARK_TEXT_COLOR:"#97B8C7",LIGHT_PURPLE_1:"light_purple_1",LIGHT_PURPLE_1_SEC:"#E14594",LIGHT_PURPLE_1_DARK_TEXT_COLOR:"#8288B4",LIGHT_PURPLE_2:"light_purple_2",LIGHT_PURPLE_2_SEC:"#64D7D6",LIGHT_PURPLE_2_DARK_TEXT_COLOR:"#5782BB",ACTIVE_COLOR_OPTION:"#ffffff"},O={SYSTEM_FORM_DEFAULT_SELECT_OPTION:"Seleccione una opci\xF3n",NO_AVAILABLE_NOTIFICATIONS:"No hay notificaciones nuevas",ALL_NOTIFICATIONS:"Todas las notificaciones",NOTIFICATIONS_WIDGET_TITLE:"Notificaciones",type:"Tipo",date:"Fecha",name:"Nombre",filepath:"Archivo",json:"Data",clientName:"Cliente",withdrawsToday:"Retiros Hoy",withdrawsYesterday:"Retiros Ayer",withdrawsLastWeek:"Retiros \xDAltima Semana",volumeCp:"Vol\xFAmen","validation.recaptcha":"Recaptcha inv\xE1lido"},S={profile:"perfil"},R={},I={system:L,panel:e,dict:O,helpers:R,replacements:S};var N=I;export{N as default,_ as getEnv};
1
+ const getEnvironmentVariable = (environmentVariable) => {
2
+ const unvalidatedEnvironmentVariable = process.env[environmentVariable];
3
+ return unvalidatedEnvironmentVariable || null;
4
+ };
5
+ const getEnv = (key) => {
6
+ const PREFIX = process.env.ENV_PREFIX || process.env.NEXT_PUBLIC_ENV_PREFIX || process.env.VITE_ENV_PREFIX || process.env.REACT_ENV_PREFIX || "VITE_";
7
+ if (PREFIX === "NEXT_PUBLIC_") {
8
+ return getEnvironmentVariable(PREFIX + key);
9
+ }
10
+ return process.env[PREFIX + key] || null;
11
+ };
12
+ const system = {
13
+ FRONTEND_URL: getEnv("APP_FRONTEND_URL") || "http://localhost:3006",
14
+ API_URL: getEnv("APP_BACKEND_URL") || "http://localhost:8000",
15
+ SOCKET_URL: (getEnv("APP_SOCKETS_HOST") || (typeof window !== "undefined" ? window.location.hostname : "localhost")) + (getEnv("APP_SOCKETS_PORT") ? ":" + getEnv("APP_SOCKETS_PORT") : ""),
16
+ SOCKETS_ENABLED: JSON.parse(getEnv("APP_SOCKETS_ENABLED")) || false,
17
+ SOCKETS_BROADCASTER: getEnv("APP_SOCKETS_BROADCASTER") || "pusher",
18
+ SOCKETS_KEY: getEnv("APP_SOCKETS_KEY") || "dash",
19
+ ADMIN_API_URL: getEnv("APP_ADMIN_API_URL"),
20
+ DEBUG: true,
21
+ // String(getEnv("APP_DEBUG")) === 'true' ? true : false,
22
+ SHOW_GLOBAL_TOAST_ERROR: false,
23
+ SHOW_GLOBAL_DIALOG_ERROR: true,
24
+ DASH_SYSTEM_ROLE: getEnv("DASH_SYSTEM_ROLE") || "System",
25
+ DASH_ADMIN_ROLE: getEnv("DASH_ADMIN_ROLE") || "Administrator",
26
+ HAS_ADMINISTRATOR_ID_ROLE: "HasAdministratorId",
27
+ ENABLE_TENANT_LOGIC: getEnv("ENABLE_TENANT_LOGIC") || true,
28
+ ENABLE_TENANT_IMPERSONATION: getEnv("ENABLE_TENANT_LOGIC") || true,
29
+ ENABLE_LOGS_AND_NOTIFICATIONS: getEnv("ENABLE_LOGS_AND_NOTIFICATIONS") || false,
30
+ DEFAULT_PER_PAGE: Number(getEnv("DEFAULT_PER_PAGE")) || null,
31
+ //URL_PREFIX: getEnv('DASH_ADMIN_URL_PREFIX') || '#/',
32
+ URL_PREFIX: getEnv("DASH_ADMIN_URL_PREFIX") || "/",
33
+ //PAGE_TRANSITIONS: JSON.parse(getEnv('PAGE_TRANSITIONS')) || false,
34
+ PAGE_TRANSITIONS: false,
35
+ GOOGLE_SIGNUP: JSON.parse(getEnv("APP_GOOGLE_SIGNUP")) || false,
36
+ RECAPTCHA_ENABLED: JSON.parse(getEnv("APP_RECAPTCHA_ENABLED")) || false,
37
+ RECAPTCHA_TOKEN: getEnv("APP_RECAPTCHA_TOKEN") || "UNSET",
38
+ APP_VERSION: getEnv("APP_VERSION") || "1.0.0",
39
+ BUILD_TIME: getEnv("BUILD_TIME") || (/* @__PURE__ */ new Date()).toISOString(),
40
+ IS_ELECTRON: JSON.parse(getEnv("IS_ELECTRON")) || false,
41
+ PLATFORM: getEnv("PLATFORM") || "unknown",
42
+ IS_WINDOWS: JSON.parse(getEnv("IS_WINDOWS")) || false,
43
+ IS_MAC: JSON.parse(getEnv("IS_MAC")) || false,
44
+ IS_LINUX: JSON.parse(getEnv("IS_LINUX")) || false,
45
+ PLATFORM_TYPE: getEnv("PLATFORM_TYPE") || "browser"
46
+ };
47
+ const panel = {
48
+ SIDEBAR_WIDTH: getEnv("SIDEBAR_WIDH") || 256,
49
+ SIDEBAR_COLLAPSED_WIDTH: getEnv("SIDEBAR_COLLAPSED_WIDH") || 63,
50
+ TAB_SIZE: 992,
51
+ MOBILE_SIZE: 575,
52
+ THEME_TYPE: "THEME_TYPE",
53
+ THEME_TYPE_LIGHT: "light",
54
+ THEME_TYPE_DARK: "dark",
55
+ THEME_TYPE_DASH_DEFAULT: "light",
56
+ THEME_TYPE_SEMI_DARK: "THEME_TYPE_SEMI_DARK",
57
+ THEME_COLOR: "THEME_COLOR",
58
+ UPDATE_RTL_STATUS: "UPDATE_RTL_STATUS",
59
+ LAYOUT_TYPE: "LAYOUT_TYPE",
60
+ LAYOUT_TYPE_FRAMED: "framed-layout",
61
+ LAYOUT_TYPE_BOXED: "boxed-layout",
62
+ LAYOUT_TYPE_FULL: "full-layout",
63
+ NAV_STYLE: "NAV_STYLE",
64
+ NAV_STYLE_FIXED: "NAV_STYLE_FIXED",
65
+ NAV_STYLE_MINI_SIDEBAR: "NAV_STYLE_MINI_SIDEBAR",
66
+ NAV_STYLE_DRAWER: "NAV_STYLE_DRAWER",
67
+ NAV_STYLE_NO_HEADER_MINI_SIDEBAR: "NAV_STYLE_NO_HEADER_MINI_SIDEBAR",
68
+ NAV_STYLE_NO_HEADER_EXPANDED_SIDEBAR: "NAV_STYLE_NO_HEADER_EXPANDED_SIDEBAR",
69
+ NAV_STYLE_DEFAULT_HORIZONTAL: "NAV_STYLE_DEFAULT_HORIZONTAL",
70
+ NAV_STYLE_DARK_HORIZONTAL: "NAV_STYLE_DARK_HORIZONTAL",
71
+ NAV_STYLE_INSIDE_HEADER_HORIZONTAL: "NAV_STYLE_INSIDE_HEADER_HORIZONTAL",
72
+ NAV_STYLE_BELOW_HEADER: "NAV_STYLE_BELOW_HEADER",
73
+ NAV_STYLE_ABOVE_HEADER: "NAV_STYLE_ABOVE_HEADER",
74
+ NAV_STYLE_COLLAPSABLE: "NAV_STYLE_COLLAPSABLE",
75
+ LIGHT_PURPLE: "light_purple",
76
+ LIGHT_PURPLE_SEC: "#00B378",
77
+ LIGHT_PURPLE_DARK_TEXT_COLOR: "#9799AC",
78
+ RED: "red",
79
+ RED_SEC: "#00D9C9",
80
+ RED_DARK_TEXT_COLOR: "#878BAB",
81
+ BLUE: "blue",
82
+ BLUE_SEC: "#FCB53B",
83
+ BLUE_DARK_TEXT_COLOR: "#AAA59A",
84
+ DARK_BLUE: "dark_blue",
85
+ DARK_BLUE_SEC: "#17BDE5",
86
+ DARK_BLUE_DARK_TEXT_COLOR: "#9DDAE9",
87
+ ORANGE: "orange",
88
+ ORANGE_SEC: "#F1D065",
89
+ ORANGE_DARK_TEXT_COLOR: "#ABA895",
90
+ LIGHT_BLUE: "light_blue",
91
+ LIGHT_BLUE_SEC: "#59DCFF",
92
+ LIGHT_BLUE_DARK_TEXT_COLOR: "#92A2C8",
93
+ DEEP_ORANGE: "deep_orange",
94
+ DEEP_ORANGE_SEC: "#70A288",
95
+ DEEP_ORANGE_DARK_TEXT_COLOR: "#97B8C7",
96
+ LIGHT_PURPLE_1: "light_purple_1",
97
+ LIGHT_PURPLE_1_SEC: "#E14594",
98
+ LIGHT_PURPLE_1_DARK_TEXT_COLOR: "#8288B4",
99
+ LIGHT_PURPLE_2: "light_purple_2",
100
+ LIGHT_PURPLE_2_SEC: "#64D7D6",
101
+ LIGHT_PURPLE_2_DARK_TEXT_COLOR: "#5782BB",
102
+ ACTIVE_COLOR_OPTION: "#ffffff"
103
+ };
104
+ const dict = {
105
+ SYSTEM_FORM_DEFAULT_SELECT_OPTION: "Seleccione una opci\xF3n",
106
+ NO_AVAILABLE_NOTIFICATIONS: "No hay notificaciones nuevas",
107
+ ALL_NOTIFICATIONS: "Todas las notificaciones",
108
+ NOTIFICATIONS_WIDGET_TITLE: "Notificaciones",
109
+ type: "Tipo",
110
+ date: "Fecha",
111
+ name: "Nombre",
112
+ filepath: "Archivo",
113
+ json: "Data",
114
+ clientName: "Cliente",
115
+ withdrawsToday: "Retiros Hoy",
116
+ withdrawsYesterday: "Retiros Ayer",
117
+ withdrawsLastWeek: "Retiros \xDAltima Semana",
118
+ volumeCp: "Vol\xFAmen",
119
+ "validation.recaptcha": "Recaptcha inv\xE1lido"
120
+ };
121
+ const replacements = {
122
+ profile: "perfil"
123
+ };
124
+ const helpers = {};
125
+ const DASHAdminSystemConstants = {
126
+ system,
127
+ panel,
128
+ dict,
129
+ helpers,
130
+ replacements
131
+ //static pushSystem(resources) { DASHStorageClass.resources = resources }
132
+ };
133
+ var DASHAdminSystemConstants_default = DASHAdminSystemConstants;
134
+ export {
135
+ DASHAdminSystemConstants_default as default,
136
+ getEnv
137
+ };
@@ -1 +1,9 @@
1
- const i={GET_NOTIFICATIONS:t=>t.notifications};var r=i;export{r as default};
1
+ const PARSERS = {
2
+ GET_NOTIFICATIONS: (json) => {
3
+ return json.notifications;
4
+ }
5
+ };
6
+ var PARSERS_default = PARSERS;
7
+ export {
8
+ PARSERS_default as default
9
+ };