summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.ts')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.ts52
1 files changed, 0 insertions, 52 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.ts
deleted file mode 100644
index 3d339b70..00000000
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.ts
+++ /dev/null
@@ -1,52 +0,0 @@
-import { Component, OnInit, Input } from '@angular/core';
-import { ActivatedRoute, Router } from '@angular/router';
-import { HttpClient } from '@angular/common/http';
-
-@Component({
- selector: 'app-run',
- templateUrl: './run.component.html',
- styleUrls: ['./run.component.css']
-})
-export class RunComponent implements OnInit {
-
- toggle : boolean;
- IncomingReportId : string;
- stepNo : string;
-
- @Input("reportId") reportId1 : string;
- @Input("reportType") reportType : string;
-
-
-
- constructor(private _http : HttpClient, private _route : ActivatedRoute, private router : Router) {
- this.toggle = false;
- }
-
- ngOnInit() {
-
- if(this.reportType === "Dashboard")
- {
- this.stepNo= "4";
- }
- else
- {
- this.stepNo= "8";
- }
-
- }
-
- runReport()
- {
- this.toggle = true;
-
- this._route.params.subscribe(params => {
-
- this.IncomingReportId = params["reportId"];
- this.reportId1 = params["reportId"];
- });
-
- this.router.navigate(['v2/app/run', this.reportId1]);
-
- }
-
-}