Add networkMap 79/111879/1
authorAijana Schumann <aijana.schumann@highstreet-technologies.com>
Mon, 31 Aug 2020 11:24:43 +0000 (13:24 +0200)
committerAijana Schumann <aijana.schumann@highstreet-technologies.com>
Mon, 31 Aug 2020 11:24:43 +0000 (13:24 +0200)
commit7058ffa19dde75c14eb89270c1a57926c0bce4cc
treed4d278eb926df35832fd69ea778bd9e6dec0f126
parent4bd84bebdaa0c2d82050fbedd1fa8260eb62146d
Add networkMap

Add NetworkMap to odlux

Issue-ID: CCSDK-2560
Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com>
Change-Id: I204bcace9d12f8a26edfa347ee9b7d292c52f030
51 files changed:
sdnr/wt/odlux/apps/app-feature/pom.xml
sdnr/wt/odlux/apps/app-installer/pom.xml
sdnr/wt/odlux/apps/networkMapApp/.babelrc [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/icons/README.md [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/icons/apartment.png [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/icons/apartment.png.d.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/icons/datacenter.png [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/icons/datacenter.png.d.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/icons/lamp.png [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/icons/lamp.png.d.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/package.json [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/pom.xml [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/App.tsx [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/actions/connectivityAction.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/actions/detailsAction.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/actions/mapActions.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/actions/popupActions.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/components/connectionInfo.tsx [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/components/denseTable.tsx [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/components/details/details.tsx [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/components/details/linkDetails.tsx [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/components/details/siteDetails.tsx [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/components/map.tsx [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/components/mapPopup.tsx [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/config.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/handlers/connectivityReducer.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/handlers/detailsReducer.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/handlers/mapReducer.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/handlers/popupReducer.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/index.html [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/model/Feature.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/model/count.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/model/historyEntry.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/model/link.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/model/site.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/pluginTransport.tsx [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/styles/index.css [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/styles/mapbox-gl.css [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/utils/mapLayers.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/utils/mapUtils.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src/utils/utils.ts [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src2/main/java/org/onap/ccsdk/features/sdnr/wt/odlux/bundles/MyOdluxBundle.java [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src2/main/resources/OSGI-INF/blueprint/blueprint.xml [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src2/test/java/org/onap/ccsdk/features/sdnr/wt/odlux/bundles/test/TestBundleRes.java [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/src2/test/resources/test.js [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/tsconfig.json [new file with mode: 0644]
sdnr/wt/odlux/apps/networkMapApp/webpack.config.js [new file with mode: 0644]
sdnr/wt/odlux/framework/pom.xml
sdnr/wt/odlux/installer/pom.xml
sdnr/wt/odlux/pom.xml