mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 10:12:41 +00:00
Refactor deployment notification init in DashboardComponent
This commit is contained in:
parent
3980051823
commit
399a970340
@ -30,13 +30,7 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.webSocketService.connect();
|
this.webSocketService.connect();
|
||||||
this.initCommandHandling();
|
this.initCommandHandling();
|
||||||
this.deploymentNotificationSubscription = this.deploymentNotificationService.deploying.subscribe(
|
this.initDeploymentNotifications();
|
||||||
(deploying) => {
|
|
||||||
this.deploying = deploying;
|
|
||||||
if (!deploying) {
|
|
||||||
this.reloadIframe();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
initCommandHandling() {
|
initCommandHandling() {
|
||||||
@ -46,6 +40,16 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
initDeploymentNotifications() {
|
||||||
|
this.deploymentNotificationSubscription = this.deploymentNotificationService.deploying.subscribe(
|
||||||
|
(deploying) => {
|
||||||
|
this.deploying = deploying;
|
||||||
|
if (!deploying) {
|
||||||
|
this.reloadIframe();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
layoutHandler(data: LayoutCommand) {
|
layoutHandler(data: LayoutCommand) {
|
||||||
if (config.dashboard.enabledLayouts.includes(data.layout)) {
|
if (config.dashboard.enabledLayouts.includes(data.layout)) {
|
||||||
this.setLayout(data.layout);
|
this.setLayout(data.layout);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user