X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fcatalog%2Fcatalog.component.ts;h=d1c140002ccd17b9ac12ea61340003b5fcfbc3ea;hb=b7d7982bbfbf3a1333feb8b811f99497752d3722;hp=51890ee64853371dd3fc074ad64da00a0e0ccd53;hpb=44203c43bb16a87eb54cc97431a026e111842c97;p=portal%2Fric-dashboard.git diff --git a/webapp-frontend/src/app/catalog/catalog.component.ts b/webapp-frontend/src/app/catalog/catalog.component.ts index 51890ee6..d1c14000 100644 --- a/webapp-frontend/src/app/catalog/catalog.component.ts +++ b/webapp-frontend/src/app/catalog/catalog.component.ts @@ -18,14 +18,16 @@ * ========================LICENSE_END=================================== */ import { HttpErrorResponse, HttpResponse } from '@angular/common/http'; -import { Component, OnInit, ViewChild } from '@angular/core'; +import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; import { MatSort } from '@angular/material/sort'; +import { Subscription } from 'rxjs'; import { finalize } from 'rxjs/operators'; import { XMDeployableApp } from '../interfaces/app-mgr.types'; import { AppMgrService } from '../services/app-mgr/app-mgr.service'; -import { ErrorDialogService } from '../services/ui/error-dialog.service'; +import { InstanceSelectorService } from '../services/instance-selector/instance-selector.service'; import { LoadingDialogService } from '../services/ui/loading-dialog.service'; +import { UiService } from '../services/ui/ui.service'; import { AppConfigurationComponent } from './../app-configuration/app-configuration.component'; import { ConfirmDialogService } from './../services/ui/confirm-dialog.service'; import { NotificationService } from './../services/ui/notification.service'; @@ -36,35 +38,63 @@ import { CatalogDataSource } from './catalog.datasource'; templateUrl: './catalog.component.html', styleUrls: ['./catalog.component.scss'], }) -export class CatalogComponent implements OnInit { +export class CatalogComponent implements OnInit, OnDestroy { + darkMode: boolean; + panelClass: string = ""; displayedColumns: string[] = ['name', 'version', 'action']; dataSource: CatalogDataSource; + private instanceChange: Subscription; + private instanceKey: string; + @ViewChild(MatSort, { static: true }) sort: MatSort; constructor( private appMgrService: AppMgrService, private confirmDialogService: ConfirmDialogService, private dialog: MatDialog, - private errorDiaglogService: ErrorDialogService, private loadingDialogService: LoadingDialogService, - private notificationService: NotificationService) { } + private notificationService: NotificationService, + public instanceSelectorService: InstanceSelectorService, + public ui: UiService) { } ngOnInit() { this.dataSource = new CatalogDataSource(this.appMgrService, this.sort, this.notificationService); - this.dataSource.loadTable(); + this.ui.darkModeState.subscribe((isDark) => { + this.darkMode = isDark; + }); + + this.instanceChange = this.instanceSelectorService.getSelectedInstancekey().subscribe((instanceKey: string) => { + if (instanceKey) { + this.instanceKey = instanceKey; + this.dataSource.loadTable(instanceKey); + } + }) + } + + ngOnDestroy() { + this.instanceChange.unsubscribe(); } onConfigureApp(xapp: XMDeployableApp): void { + if (this.darkMode) { + this.panelClass = "dark-theme"; + } else { + this.panelClass = ""; + } const dialogRef = this.dialog.open(AppConfigurationComponent, { + panelClass: this.panelClass, width: '40%', maxHeight: '500px', position: { top: '10%' }, - data: xapp - }); + data: { + xapp: xapp, + instanceKey: this.instanceKey + } + }) } onDeployApp(app: XMDeployableApp): void { @@ -72,7 +102,7 @@ export class CatalogComponent implements OnInit { .afterClosed().subscribe((res: boolean) => { if (res) { this.loadingDialogService.startLoading('Deploying ' + app.name); - this.appMgrService.deployXapp(app.name) + this.appMgrService.deployXapp(this.instanceKey, app.name) .pipe( finalize(() => this.loadingDialogService.stopLoading()) )