From: jegadeeshbabu3 Date: Mon, 10 Aug 2020 20:19:30 +0000 (+0530) Subject: Raptor reporting capability integrated X-Git-Tag: 3.4.0~26 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=560c13ca93cafcc163c5c139bc1324212c2dd54f;p=portal.git Raptor reporting capability integrated Raptor capability integrated Issue-ID: PORTAL-980 Change-Id: Ibf83612374515109172cac8e397dd15d004ca8a6 Signed-off-by: jegadeeshbabu3 --- diff --git a/portal-FE-common/src/assets/images/pdf.png b/portal-FE-common/src/assets/images/pdf.png new file mode 100644 index 00000000..ed96c5c1 Binary files /dev/null and b/portal-FE-common/src/assets/images/pdf.png differ diff --git a/portal-FE-common/src/assets/images/xlsx.png b/portal-FE-common/src/assets/images/xlsx.png new file mode 100644 index 00000000..1ac37679 Binary files /dev/null and b/portal-FE-common/src/assets/images/xlsx.png differ diff --git a/portal-FE-os/.gitignore b/portal-FE-os/.gitignore index ae8fe5e5..9a0c53ad 100644 --- a/portal-FE-os/.gitignore +++ b/portal-FE-os/.gitignore @@ -37,6 +37,7 @@ testem.log # System Files .DS_Store Thumbs.db +/ngapp .history/* /target/ diff --git a/portal-FE-os/pom.xml b/portal-FE-os/pom.xml index 4c8a529b..a65181c6 100644 --- a/portal-FE-os/pom.xml +++ b/portal-FE-os/pom.xml @@ -20,6 +20,8 @@ src UTF-8 ${project.basedir}\node\ + 3.3.0-SNAPSHOT + @@ -44,6 +46,61 @@ + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack + initialize + + unpack + + + + + org.onap.portal.sdk + epsdk-app-overlay + ${epsdk.version} + war + false + ngapp/src/app/pages/analytics/** + ${basedir}/ + + + true + true + + + + + + + + org.apache.maven.plugins + maven-resources-plugin + 3.0.2 + + + + copy-analytics + generate-sources + + copy-resources + + + ${basedir}/src/app/pages/ + + + + ${basedir}/ngapp/src/app/pages + + + + + + + org.apache.maven.plugins diff --git a/portal-FE-os/src/app/pages/pages-routing.module.ts b/portal-FE-os/src/app/pages/pages-routing.module.ts index d39db03c..ea1d8b5b 100644 --- a/portal-FE-os/src/app/pages/pages-routing.module.ts +++ b/portal-FE-os/src/app/pages/pages-routing.module.ts @@ -56,6 +56,10 @@ import { ContactUsComponent } from './contact-us/contact-us.component'; import { RoleFunctionsComponent } from './role/role-functions/role-functions.component'; import { NotificationHistoryComponent } from './notification-history/notification-history.component'; import { GetAccessComponent } from './get-access/get-access.component'; +import { HeaderTabsWrapperComponent } from './analytics/Report_List/header-tabs-wrapper-component/header-tabs-wrapper.component'; +import { RunReportFormFieldsComponent } from './analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component'; +import { DisplayAreaComponent } from './analytics/Report_List/display-area/display-area.component'; +import { ReportComponent } from './analytics/Report_List/Report/report.component'; const routes: Routes = [ { path: '', component: DashboardComponent }, @@ -77,6 +81,13 @@ const routes: Routes = [ { path: 'contactUs', component: ContactUsComponent }, { path: 'getAccess', component: GetAccessComponent }, { path: 'recentNotifications', component: NotificationHistoryComponent }, + { path: 'report-list', component:ReportComponent}, + { path: 'create', component: HeaderTabsWrapperComponent}, + { path: 'v2/app/reports/:reportMode/:reportId', component: HeaderTabsWrapperComponent}, + { path: 'v2/app/run/:reportId', component: RunReportFormFieldsComponent}, + { path: 'v2/app/run/:reportId/:queryParameters', component: RunReportFormFieldsComponent}, + { path: 'run', component: RunReportFormFieldsComponent}, + { path: 'displayArea/:menuId', component: DisplayAreaComponent} ]; @NgModule({ diff --git a/portal-FE-os/src/environments/environment.prod.ts b/portal-FE-os/src/environments/environment.prod.ts index 7cc34da5..93fdc510 100644 --- a/portal-FE-os/src/environments/environment.prod.ts +++ b/portal-FE-os/src/environments/environment.prod.ts @@ -1,5 +1,6 @@ export const environment = { production: true, + baseUrl: '', "api": { "singleAppInfo": "portalApi/singleAppInfo", "singleAppInfoById": "portalApi/singleAppInfoById", diff --git a/portal-FE-os/src/environments/environment.ts b/portal-FE-os/src/environments/environment.ts index d412522f..ef9c35ba 100644 --- a/portal-FE-os/src/environments/environment.ts +++ b/portal-FE-os/src/environments/environment.ts @@ -4,6 +4,7 @@ export const environment = { production: false, + baseUrl: 'http://www.portal.onap.org:9080/portal-be-os/', "api": { "singleAppInfo": "http://www.portal.onap.org:9080/portal-be-os/portalApi/singleAppInfo", "singleAppInfoById": "http://www.portal.onap.org:9080/portal-be-os/portalApi/singleAppInfoById",