import { Component, Input, OnDestroy } from '@angular/core'; import { NbThemeService } from '@nebular/theme'; import { takeWhile } from 'rxjs/operators'; import { TrafficList } from '../../../../@core/data/traffic-list'; @Component({ selector: 'ngx-traffic-front-card', styleUrls: ['./traffic-front-card.component.scss'], templateUrl: './traffic-front-card.component.html', }) export class TrafficFrontCardComponent implements OnDestroy { private alive = true; @Input() frontCardData: TrafficList; currentTheme: string; constructor(private themeService: NbThemeService) { this.themeService.getJsTheme() .pipe(takeWhile(() => this.alive)) .subscribe(theme => { this.currentTheme = theme.name; }); } trackByDate(_, item) { return item.date; } ngOnDestroy() { this.alive = false; } }