|
| 1 | +/** |
| 2 | + * The above code initializes various Digit UI modules and components, sets up customizations, and |
| 3 | + * renders the DigitUI component based on the enabled modules and state code. |
| 4 | + * @returns The `App` component is being returned, which renders the `DigitUI` component with the |
| 5 | + * specified props such as `stateCode`, `enabledModules`, `moduleReducers`, and `defaultLanding`. The |
| 6 | + * `DigitUI` component is responsible for rendering the UI based on the provided configuration and |
| 7 | + * modules. |
| 8 | + */ |
| 9 | +import React from "react"; |
| 10 | +import { initLibraries } from "@egovernments/digit-ui-libraries"; |
| 11 | +import { Loader } from "@egovernments/digit-ui-components"; |
| 12 | +import { DigitUI } from "@egovernments/digit-ui-module-core"; |
| 13 | +import { UICustomizations } from "./Customisations/UICustomizations"; |
| 14 | +import { initWorkbenchComponents } from "@egovernments/digit-ui-module-workbench"; |
| 15 | +import { initCampaignComponents } from "@egovernments/digit-ui-module-campaign-manager"; |
| 16 | +import { initUtilitiesComponents } from "@egovernments/digit-ui-module-utilities"; |
| 17 | +import { initWorkbenchHCMComponents } from "@egovernments/digit-ui-module-hcmworkbench"; |
| 18 | + |
| 19 | + |
| 20 | +window.contextPath = window?.globalConfigs?.getConfig("CONTEXT_PATH"); |
| 21 | + |
| 22 | +const enabledModules = [ |
| 23 | + "DSS", |
| 24 | + "NDSS", |
| 25 | + "Utilities", |
| 26 | + // "HRMS", |
| 27 | + "Engagement", |
| 28 | + "Workbench", |
| 29 | + "HCMWORKBENCH", |
| 30 | + "Campaign" |
| 31 | +]; |
| 32 | +const HCM_MODULE_NAME = "campaign"; |
| 33 | +export const OverrideUICustomizations = { |
| 34 | + HCM_MODULE_NAME, |
| 35 | +} |
| 36 | +const setupLibraries = (Library, service, method) => { |
| 37 | + window.Digit = window.Digit || {}; |
| 38 | + window.Digit[Library] = window.Digit[Library] || {}; |
| 39 | + window.Digit[Library][service] = method; |
| 40 | +}; |
| 41 | +/* To Overide any existing config/middlewares we need to use similar method */ |
| 42 | +const updateCustomConfigs = () => { |
| 43 | + setupLibraries("Customizations", "commonUiConfig", { ...window?.Digit?.Customizations?.commonUiConfig, ...OverrideUICustomizations }); |
| 44 | +}; |
| 45 | + |
| 46 | + |
| 47 | +const moduleReducers = (initData) => ({ |
| 48 | + initData, |
| 49 | +}); |
| 50 | + |
| 51 | +const initDigitUI = () => { |
| 52 | + |
| 53 | + try { |
| 54 | + window.Digit.ComponentRegistryService.setupRegistry({}); |
| 55 | + window.Digit.Customizations = { |
| 56 | + PGR: {}, |
| 57 | + commonUiConfig: UICustomizations, |
| 58 | + }; |
| 59 | + // initHRMSComponents(); |
| 60 | + initUtilitiesComponents(); |
| 61 | + initWorkbenchComponents(); |
| 62 | + initWorkbenchHCMComponents(); |
| 63 | + initCampaignComponents(); |
| 64 | + updateCustomConfigs(); |
| 65 | + } catch (error) { |
| 66 | + console.error('Failed to initialize DigitUI:', error); |
| 67 | + // Consider showing a user-friendly error message |
| 68 | + } |
| 69 | +}; |
| 70 | +let initializationError = null; |
| 71 | + |
| 72 | +const handleInitError = (error) => { |
| 73 | + console.error('Failed to initialize libraries:', error); |
| 74 | + initializationError = error; |
| 75 | +}; |
| 76 | + |
| 77 | +initLibraries().then(() => { |
| 78 | + initDigitUI(); |
| 79 | +}).catch(handleInitError); |
| 80 | + |
| 81 | + |
| 82 | + |
| 83 | +function App() { |
| 84 | + |
| 85 | + const [stateCode, setStateCode] = React.useState(null); |
| 86 | + |
| 87 | + const [isLoading, setIsLoading] = React.useState(true); |
| 88 | + React.useEffect(() => { |
| 89 | + // Add any necessary initialization checks here |
| 90 | + window.contextPath = window?.globalConfigs?.getConfig("CONTEXT_PATH"); |
| 91 | + const code = |
| 92 | + window.globalConfigs?.getConfig("STATE_LEVEL_TENANT_ID") || |
| 93 | + process.env.REACT_APP_STATE_LEVEL_TENANT_ID; |
| 94 | + setStateCode(code); |
| 95 | + setIsLoading(false); |
| 96 | + }, []); |
| 97 | + |
| 98 | + if (isLoading) { |
| 99 | + return <Loader page={true} variant={"PageLoader"} />; |
| 100 | + } |
| 101 | + // Consider adding this to your App component: |
| 102 | + if (initializationError) { |
| 103 | + return <div>Failed to initialize application. Please refresh the page.</div>; |
| 104 | + } |
| 105 | + if (!stateCode) { |
| 106 | + return ( |
| 107 | + <div className="error-container"> |
| 108 | + <h1>Configuration Error</h1> |
| 109 | + <p>State code is not defined. Please check your configuration.</p> |
| 110 | + </div> |
| 111 | + ); |
| 112 | + } |
| 113 | + return ( |
| 114 | + <DigitUI |
| 115 | + stateCode={stateCode} |
| 116 | + enabledModules={enabledModules} |
| 117 | + moduleReducers={moduleReducers} |
| 118 | + defaultLanding="employee" |
| 119 | + allowedUserTypes={["employee"]} |
| 120 | + /> |
| 121 | + ); |
| 122 | +} |
| 123 | + |
| 124 | +export default App; |
0 commit comments