aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts
diff options
context:
space:
mode:
authorAijana Schumann <aijana.schumann@highstreet-technologies.com>2020-08-31 15:23:24 +0200
committerAijana S <aijana.schumann@highstreet-technologies.com>2020-08-31 17:56:42 +0000
commit77a101dfcbad1e6a6a91d8bea9b0df8b7d8e76ff (patch)
tree7023c842a5844c1709b17b9284e915e10f740dad /sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts
parent0ccd5b341abc1ce0320151fd91263b0c25ca16f1 (diff)
Add searchbar to NetworkMap
Add a searchbar to the networkmap Issue-ID: CCSDK-2563 Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com> Change-Id: Ia607f9c517d3ec7ca7681243ad13c7dc5864c5ae
Diffstat (limited to 'sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts')
-rw-r--r--sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts b/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts
index 4069ed24d..c9c475411 100644
--- a/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts
+++ b/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts
@@ -21,12 +21,14 @@ import { combineActionHandler } from '../../../../framework/src/flux/middleware'
import { DetailsReducer, DetailsStoreState } from "./detailsReducer";
import { PopupsReducer, popupStoreState } from "./popupReducer";
import { MapReducer, mapState } from "./mapReducer";
+import { SearchReducer, searchState } from "./searchReducer";
import { connectivityState, ConnectivityReducer } from './connectivityReducer';
export interface INetworkAppStoreState{
details: DetailsStoreState,
popup: popupStoreState,
map: mapState,
+ search: searchState,
connectivity: connectivityState
}
@@ -40,6 +42,7 @@ const appHandler = {
details: DetailsReducer,
popup: PopupsReducer,
map: MapReducer,
+ search: SearchReducer,
connectivity: ConnectivityReducer};
export const networkmapRootHandler = combineActionHandler<INetworkAppStoreState>(appHandler)