Initial commit of RIC Dashboard webapp
[portal/ric-dashboard.git] / webapp-frontend / src / app / ui / catalog-card / catalog-card.component.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * ORAN-OSC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 import {Component, OnDestroy, OnInit} from '@angular/core';
21 import {Router} from '@angular/router';
22 import {UiService} from '../../services/ui/ui.service';
23
24 @Component({
25   selector: 'app-catalog-card',
26   templateUrl: './catalog-card.component.html',
27   styleUrls: ['./catalog-card.component.css']
28 })
29 export class CatalogCardComponent implements OnInit, OnDestroy {
30   darkMode: boolean;
31
32   constructor(public router: Router, public ui: UiService) {
33   }
34
35   ngOnInit() {
36     this.ui.darkModeState.subscribe((isDark) => {
37       this.darkMode = isDark;
38     });
39   }
40
41   ngOnDestroy() {
42
43   }
44
45   openDetails() {
46     this.router.navigateByUrl('../../catalog');
47   }
48
49 }