mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-04 05:32:40 +00:00
29 lines
885 B
TypeScript
29 lines
885 B
TypeScript
import { Component, OnDestroy, OnInit } from '@angular/core';
|
|
import { DeploymentNotificationService } from '../services/deployment-notification.service';
|
|
import { Subscription } from 'rxjs/Subscription';
|
|
|
|
@Component({
|
|
selector: 'app-dashboard',
|
|
templateUrl: './dashboard.component.html',
|
|
styleUrls: ['./dashboard.component.scss']
|
|
})
|
|
export class DashboardComponent implements OnInit, OnDestroy {
|
|
|
|
deploying = false;
|
|
deploymentNotificationSubscription: Subscription;
|
|
|
|
constructor(private deploymentNotificationService: DeploymentNotificationService) {}
|
|
|
|
ngOnInit() {
|
|
this.deploymentNotificationSubscription = this.deploymentNotificationService.deploying.subscribe(
|
|
(deploying) => this.deploying = deploying
|
|
);
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
if (this.deploymentNotificationSubscription) {
|
|
this.deploymentNotificationSubscription.unsubscribe();
|
|
}
|
|
}
|
|
}
|