1
- import React , { useEffect } from "react" ;
1
+ import React , { useEffect , useMemo } from "react" ;
2
2
import { Switch , useLocation } from "react-router-dom" ;
3
3
import { useTranslation } from "react-i18next" ;
4
4
import { PrivateRoute , AppContainer , BreadCrumb } from "@egovernments/digit-ui-react-components" ;
5
5
import SetupCampaign from "./SetupCampaign" ;
6
6
import ConfigureApp from "./ConfigureApp" ;
7
- import { CreateChecklist } from "./CreateChecklist" ;
7
+ import { CreateChecklist } from "./CreateChecklist" ;
8
8
import SearchChecklist from "./SearchChecklist" ;
9
9
import UpdateCampaign from "./UpdateCampaign" ;
10
10
import BoundaryRelationCreate from "./BoundaryRelationCreate" ;
@@ -24,7 +24,7 @@ import FetchFromMicroplan from "../../components/fetchFromMicroplan";
24
24
*/
25
25
const CampaignBreadCrumb = ( { location, defaultPath } ) => {
26
26
const { t } = useTranslation ( ) ;
27
-
27
+
28
28
const search = useLocation ( ) . search ;
29
29
const pathVar = location . pathname . replace ( defaultPath + "/" , "" ) . split ( "?" ) ?. [ 0 ] ;
30
30
const crumbs = [
@@ -36,22 +36,30 @@ const CampaignBreadCrumb = ({ location, defaultPath }) => {
36
36
{
37
37
path : pathVar === "my-campaign" ? "" : `/${ window ?. contextPath } /employee/campaign/my-campaign` ,
38
38
content : t ( "MY_CAMPAIGN" ) ,
39
- show : pathVar === "my-campaign" || pathVar === "checklist/search" || pathVar === "checklist/create" || pathVar === "checklist/view" || pathVar === "checklist/update" || pathVar === "update-dates-boundary" ? true : false ,
39
+ show :
40
+ pathVar === "my-campaign" ||
41
+ pathVar === "checklist/search" ||
42
+ pathVar === "checklist/create" ||
43
+ pathVar === "checklist/view" ||
44
+ pathVar === "checklist/update" ||
45
+ pathVar === "update-dates-boundary"
46
+ ? true
47
+ : false ,
40
48
} ,
41
49
{
42
50
path : pathVar === "setup-campaign" ? "" : `/${ window ?. contextPath } /employee/campaign/setup-campaign` ,
43
51
content : t ( "CREATE_NEW_CAMPAIGN" ) ,
44
- show : pathVar === "setup-campaign" ? true : false ,
52
+ show : pathVar === "setup-campaign" ? true : false ,
45
53
} ,
46
54
{
47
55
path : pathVar === "update-dates-boundary" ? "" : `/${ window ?. contextPath } /employee/campaign/my-campaign` ,
48
56
content : t ( "UPDATE_DATE_CHANGE" ) ,
49
- show : pathVar === "update-dates-boundary" ? true : false ,
57
+ show : pathVar === "update-dates-boundary" ? true : false ,
50
58
} ,
51
59
{
52
60
path : "" ,
53
61
content : t ( "ACTION_LABEL_CONFIGURE_APP" ) ,
54
- show :pathVar === "checklist/search" ? true : false ,
62
+ show : pathVar === "checklist/search" ? true : false ,
55
63
} ,
56
64
{
57
65
path : "" ,
@@ -77,7 +85,7 @@ const CampaignBreadCrumb = ({ location, defaultPath }) => {
77
85
path : pathVar === "update-campaign" ? "" : `/${ window ?. contextPath } /employee/campaign/update-campaign` ,
78
86
content : t ( "UPDATE_CAMPAIGN" ) ,
79
87
show : pathVar . match ( "update-campaign" ) ? true : false ,
80
- }
88
+ } ,
81
89
] ;
82
90
83
91
return < BreadCrumb className = "campaign-breadcrumb" crumbs = { crumbs } spanStyle = { { maxWidth : "min-content" } } /> ;
@@ -91,10 +99,12 @@ const CampaignBreadCrumb = ({ location, defaultPath }) => {
91
99
* the `Switch` component, there are several `PrivateRoute` components with different paths and
92
100
* corresponding components such as `UploadBoundaryData`, `CycleConfiguration`, `DeliveryRule`, `
93
101
*/
94
- const App = ( { path, BOUNDARY_HIERARCHY_TYPE , hierarchyData } ) => {
102
+ const App = ( { path, BOUNDARY_HIERARCHY_TYPE : BoundaryHierarchy , hierarchyData : propsHierarchyData } ) => {
95
103
const location = useLocation ( ) ;
96
104
const userId = Digit . UserService . getUser ( ) . info . uuid ;
97
- const microplanStatus = "RESOURCE_ESTIMATIONS_APPROVED"
105
+ const BOUNDARY_HIERARCHY_TYPE = useMemo ( ( ) => BoundaryHierarchy , [ BoundaryHierarchy ] ) ;
106
+ const hierarchyData = useMemo ( ( ) => propsHierarchyData , [ propsHierarchyData ] ) ;
107
+ const microplanStatus = "RESOURCE_ESTIMATIONS_APPROVED" ;
98
108
const UploadBoundaryData = Digit ?. ComponentRegistryService ?. getComponent ( "UploadBoundaryData" ) ;
99
109
const CycleConfiguration = Digit ?. ComponentRegistryService ?. getComponent ( "CycleConfiguration" ) ;
100
110
const DeliveryRule = Digit ?. ComponentRegistryService ?. getComponent ( "DeliveryRule" ) ;
@@ -135,7 +145,10 @@ const App = ({ path, BOUNDARY_HIERARCHY_TYPE, hierarchyData }) => {
135
145
< PrivateRoute path = { `${ path } /create-campaign/upload-boundary-data` } component = { ( ) => < UploadBoundaryData /> } />
136
146
< PrivateRoute path = { `${ path } /create-campaign/cycle-configure` } component = { ( ) => < CycleConfiguration /> } />
137
147
< PrivateRoute path = { `${ path } /create-campaign/delivery-details` } component = { ( ) => < DeliveryRule /> } />
138
- < PrivateRoute path = { `${ path } /setup-campaign` } component = { ( ) => < SetupCampaign hierarchyType = { BOUNDARY_HIERARCHY_TYPE } hierarchyData = { hierarchyData } /> } />
148
+ < PrivateRoute
149
+ path = { `${ path } /setup-campaign` }
150
+ component = { ( ) => < SetupCampaign hierarchyType = { BOUNDARY_HIERARCHY_TYPE } hierarchyData = { hierarchyData } /> }
151
+ />
139
152
< PrivateRoute path = { `${ path } /my-campaign` } component = { ( ) => < MyCampaign /> } />
140
153
< PrivateRoute path = { `${ path } /fetch-from-microplan` } component = { ( ) => < FetchFromMicroplan /> } />
141
154
< PrivateRoute path = { `${ path } /preview` } component = { ( ) => < CampaignSummary /> } />
@@ -147,10 +160,10 @@ const App = ({ path, BOUNDARY_HIERARCHY_TYPE, hierarchyData }) => {
147
160
< PrivateRoute path = { `${ path } /checklist/search` } component = { ( ) => < SearchChecklist /> } />
148
161
< PrivateRoute path = { `${ path } /checklist/view` } component = { ( ) => < ViewChecklist /> } />
149
162
< PrivateRoute path = { `${ path } /checklist/update` } component = { ( ) => < UpdateChecklist /> } />
150
- < PrivateRoute path = { `${ path } /boundary/home` } component = { ( ) => < BoundaryHome /> } />
151
- < PrivateRoute path = { `${ path } /boundary/create` } component = { ( ) => < BoundaryRelationCreate /> } />
152
- < PrivateRoute path = { `${ path } /boundary/view-all-hierarchy` } component = { ( ) => < ViewBoundary /> } />
153
- < PrivateRoute path = { `${ path } /boundary/data` } component = { ( ) => < ViewHierarchy /> } />
163
+ < PrivateRoute path = { `${ path } /boundary/home` } component = { ( ) => < BoundaryHome /> } />
164
+ < PrivateRoute path = { `${ path } /boundary/create` } component = { ( ) => < BoundaryRelationCreate /> } />
165
+ < PrivateRoute path = { `${ path } /boundary/view-all-hierarchy` } component = { ( ) => < ViewBoundary /> } />
166
+ < PrivateRoute path = { `${ path } /boundary/data` } component = { ( ) => < ViewHierarchy /> } />
154
167
< PrivateRoute path = { `${ path } /update-campaign` } component = { ( ) => < UpdateCampaign /> } />
155
168
< PrivateRoute path = { `${ path } /setup-from-microplan` } component = { ( ) => < ApprovedMicroplans /> } />
156
169
< PrivateRoute path = { `${ path } /app-configuration` } component = { ( ) => < AppConfigurationWrapper /> } />
0 commit comments