...
Create Form UI:-
First, we will need to create a form where users can enter all required information and submit the form.
for that, we need to create an index.js into web->micor-ui->internals ->packages->module->br->src->pages->citizen->create(you can give any name instead of create)->index.js
In Index.js will import the Formcomposer that is already present. inside that, we will add Heading, label, and config.
...
In Config.js we create a JSON file where it contains the head that is the header heading of our form then in the body, we are adding type so in type we mention the component and we add the component name e.g:- We create BrSelectName.js inside that we maintain the form label, details, and validation. so like that same for other fields also we create. once newConfig components are added then will map newConfig Json in the above index.js so the fields should be rendered to UI.
Code Block |
---|
export const newConfig =[ { "head": "Birth-Details", "body": [ { type: "component", component: "BrSelectName", key: "BrSelectName", withoutLabel: true, }, { type: "component", component: "BRSelectGender", key: "BRSelectPhoneGender", withoutLabel: true, }, { type: "component", component: "BRSelectPhoneNumber", key: "BRSelectPhoneNumber", withoutLabel: true, }, { type: "component", component: "BRSelectEmailId", key: "BRSelectEmailId", withoutLabel: true, }, { type: "component", component: "BrSelectAddress", key: "BrSelectAddress", withoutLabel: true, }, { type: "component", component: "SelectCorrespondenceAddress", key: "SelectCorrespondenceAddress", withoutLabel: true, }, ] }, ]; |
...
Code Block |
---|
import React from 'react'; import { initDSSComponents } from "@egovernments/digit-ui-module-dss"; import { PaymentModule, PaymentLinks, paymentConfigs } from "@egovernments/digit-ui-module-common"; import { DigitUI } from "@egovernments/digit-ui-module-core"; import { initLibraries } from "@egovernments/digit-ui-libraries"; import { initEngagementComponents } from "@egovernments/digit-ui-module-engagement"; // import { initWSComponents } from "@egovernments/digit-ui-module-ws"; import {initCustomisationComponents} from "./Customisations"; import { initCommonPTComponents } from "@egovernments/digit-ui-module-commonpt"; import { BRModule ,initBRComponents ,BRLinks} from "@egovernments/digit-ui-module-br"; initLibraries(); //"WS" removed the ws enabledModules ; const enabledModules = ["Payment","QuickPayLinks", "DSS","Engagement", "BR"]; window.Digit.ComponentRegistryService.setupRegistry({ ...paymentConfigs, PaymentModule, PaymentLinks, BRModule, BRLinks, }); initBRComponents(); initDSSComponents(); initEngagementComponents(); // initWSComponents(); initCustomisationComponents(); function App() { const stateCode = window.globalConfigs?.getConfig("STATE_LEVEL_TENANT_ID") || process.env.REACT_APP_STATE_LEVEL_TENANT_ID; if (!stateCode) { return <h1>stateCode is not defined</h1> } return ( <DigitUI stateCode={stateCode} enabledModules={enabledModules} /> ); } export default App; |
...
Code Block |
---|
import React from "react"; import ReactDOM from "react-dom"; import { initLibraries } from "@egovernments/digit-ui-libraries"; import { BRModule, initBRComponents ,BRLinks} from "@egovernments/digit-ui-module-br"; import { initDSSComponents } from "@egovernments/digit-ui-module-dss"; import { PaymentModule, PaymentLinks, paymentConfigs } from "@egovernments/digit-ui-module-common"; import { initEngagementComponents } from "@egovernments/digit-ui-module-engagement"; import { DigitUI } from "@egovernments/digit-ui-module-core"; // import {initCustomisationComponents} from "./customisations"; // import { PGRModule, PGRLinks } from "@egovernments/digit-ui-module-pgr"; // import { Body, TopBar } from "@egovernments/digit-ui-react-components"; import } from "@egovernments/digit-ui-css/example/index.css-module-engagement"; // import *{ asDigitUI comps} from "@egovernments/digit-ui-reactmodule-componentscore"; // import { subFormRegistry } from "@egovernments/digit-ui-librariescss/example/index.css"; var Digit = window.Digit || {}; const enabledModules = [ "Payment","QuickPayLinks", "DSS","Engagement","BR"]; const initTokens = (stateCode) => { const userType = window.sessionStorage.getItem("userType") || process.env.REACT_APP_USER_TYPE || "CITIZEN"; const token =window.localStorage.getItem("token")|| process.env[`REACT_APP_${userType}_TOKEN`]; const citizenInfo = window.localStorage.getItem("Citizen.user-info") const citizenTenantId = window.localStorage.getItem("Citizen.tenant-id") || stateCode; const employeeInfo = window.localStorage.getItem("Employee.user-info"); const employeeTenantId = window.localStorage.getItem("Employee.tenant-id"); const userTypeInfo = userType === "CITIZEN" || userType === "QACT" ? "citizen" : "employee"; window.Digit.SessionStorage.set("user_type", userTypeInfo); window.Digit.SessionStorage.set("userType", userTypeInfo); if (userType !== "CITIZEN") { window.Digit.SessionStorage.set("User", { access_token: token, info: userType !== "CITIZEN" ? JSON.parse(employeeInfo) : citizenInfo }); } else { // if (!window.Digit.SessionStorage.get("User")?.extraRoleInfo) window.Digit.SessionStorage.set("User", { access_token: token, info: citizenInfo }); } window.Digit.SessionStorage.set("Citizen.tenantId", citizenTenantId); if(employeeTenantId && employeeTenantId.length) window.Digit.SessionStorage.set("Employee.tenantId", employeeTenantId); }; const initDigitUI = () => { window?.Digit.ComponentRegistryService.setupRegistry({ PaymentModule, BRModule, PaymentLinks, BRLinks, // TLModule, // TLLinks, }); initDSSComponents(); initEngagementComponents(); initBRComponents(); // initCustomisationComponents(); const stateCode = window?.globalConfigs?.getConfig("STATE_LEVEL_TENANT_ID") || "pb"; initTokens(stateCode); const registry = window?.Digit.ComponentRegistryService.getRegistry(); ReactDOM.render(<DigitUI stateCode={stateCode} enabledModules={enabledModules} />, document.getElementById("root")); }; initLibraries().then(() => { initDigitUI(); }); |
...
Hooks: -
Once BRService is created with all requests then will create a Hook and that hook we will use in our code to pass the data to the backedbackend.
Code Block |
---|
import { useQuery, useMutation } from "react-query"; import BRService from "../../services/elements/BR"; export const useBRCreate = (tenantId, config = {}) => { return useMutation((data) => BRService.create(data, tenantId)); }; export default useBRCreate; |
...
so we add the onSubmit function in our code (br->src->pages->citizen->create->index.js) and in that function, we are passing the user’s entered data to the BRService that we have created.
...