X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fcontrol%2Fcontrol.component.ts;h=573f70518ed90064bc1eda5006e8f436573bf2d2;hb=dfa4f23a94fcbf31deab33abde4c6a8318fd4186;hp=29a88ccf0cf2b29f92725759e14aff599157d068;hpb=29ce34b03e4099786f14cd7fc5473305da8750d6;p=portal%2Fric-dashboard.git diff --git a/webapp-frontend/src/app/control/control.component.ts b/webapp-frontend/src/app/control/control.component.ts index 29a88ccf..573f7051 100644 --- a/webapp-frontend/src/app/control/control.component.ts +++ b/webapp-frontend/src/app/control/control.component.ts @@ -18,66 +18,16 @@ * ========================LICENSE_END=================================== */ import { Component, OnInit } from '@angular/core'; -import { XappMgrService } from '../services/xapp-mgr/xapp-mgr.service'; -import { Router } from '@angular/router'; -import { ErrorDialogService } from './../services/ui/error-dialog.service'; -import { ConfirmDialogService } from './../services/ui/confirm-dialog.service'; -import { NotificationService } from './../services/ui/notification.service'; -import { XappControlRow } from '../interfaces/xapp-mgr.types'; -import { ControlAnimations } from './control.animations'; -import { ControlDataSource } from './control.datasource'; -import { routerNgProbeToken } from '@angular/router/src/router_module'; @Component({ selector: 'app-control', templateUrl: './control.component.html', - styleUrls: ['./control.component.css'], - animations: [ControlAnimations.messageTrigger], + styleUrls: ['./control.component.css'] }) export class ControlComponent implements OnInit { - displayedColumns: string[] = ['xapp', 'name', 'status', 'ip', 'port', 'action']; - dataSource: ControlDataSource; - - constructor( - private xappMgrSvc: XappMgrService, - private router: Router, - private confirmDialogService: ConfirmDialogService, - private errorDialogService: ErrorDialogService, - private notification: NotificationService) { } + constructor() { } ngOnInit() { - this.dataSource = new ControlDataSource(this.xappMgrSvc); - this.dataSource.loadTable(); - } - - controlApp(app: XappControlRow): void { - const anrXappPattern = /[Aa][Nn][Rr]/; - if (anrXappPattern.test(app.xapp)) { - this.router.navigate(['/anr']); - } else { - this.errorDialogService.displayError('No control available for ' + app.xapp + ' (yet)'); - } } - - undeployApp(app: XappControlRow): void { - this.confirmDialogService.openConfirmDialog('Are you sure you want to undeploy xApp ' + app.xapp + '?') - .afterClosed().subscribe(res => { - if (res) { - this.xappMgrSvc.undeployXapp(app.xapp).subscribe( - response => { - this.dataSource.loadTable(); - switch (response.status) { - case 200: - this.notification.success('xApp undeployed successfully!'); - break; - default: - this.notification.warn('xApp undeploy failed.'); - } - } - ); - } - }); - } - }