Search BPA / BPA OC
Search BPA/ BPA OC
Objective
Provide Employee to search existing BPA/ BPA OC and its current status.
Route - https://egov-micro-dev.egovernments.org/employee/egov-bpa/search
Technical Implementation Details
https://github.com/egovernments/frontend/blob/master/web/rainmaker/dev-packages/egov-bpa-dev/src/ui-config/screens/specs/egov-bpa/search.js - Initial page.
All the Forms and its functionality are in https://github.com/egovernments/frontend/tree/master/web/rainmaker/dev-packages/egov-bpa-dev/src/ui-config/screens/specs/egov-bpa/searchResource path.
Table rendering is taken care in https://github.com/egovernments/frontend/blob/master/web/rainmaker/dev-packages/egov-bpa-dev/src/ui-config/screens/specs/egov-bpa/searchResource/searchResults.js
The BPA/BPA OC search API and formatting data is in done in https://github.com/egovernments/frontend/blob/master/web/rainmaker/dev-packages/egov-bpa-dev/src/ui-config/screens/specs/egov-bpa/searchResource/functions.js
Â
Table Structure
MUIDataTable
is used to implement Table component.Every columns are entry given as an Object
{ labelName: "Application No", labelKey: "BPA_COMMON_TABLE_COL_APP_NO
" },
Any customizations at column level is by
customBodyRender
hook available in all the colums ‘option’ property.
Â
Data fetch,load and render :
Once the data is fetched using /bpa-services/v1/bpa/_search
API, the returned data is formatted and dispatched to redux
As we can see from the image above, the data is put to specific path inside props.
Tabel component now fetches the data from its props as shown below.
API Call Role Action mapping:
S.No. | API | Action id | Roles |
---|---|---|---|
2 |
|
|
|
3 |
|
|
|
Â