import { Injectable } from '@angular/core'; import { WebSocketService } from './websocket.service'; import { Subject, BehaviorSubject, merge } from 'rxjs'; import { ConfigServiceBase } from './config.service.base'; @Injectable() export class DashboardConfigService extends ConfigServiceBase { keys = ['frontend.dashboard']; layout = new BehaviorSubject('terminal-ide-web'); hideMessages = new BehaviorSubject(false); iframeUrl = new BehaviorSubject(''); showUrlBar = new BehaviorSubject(false); terminalMenuItem = new BehaviorSubject('terminal'); reloadIframeOnDeploy = new BehaviorSubject(false); enabledLayouts = new BehaviorSubject>([ 'terminal-ide-web', 'terminal-ide-vertical', 'terminal-web', 'ide-web-vertical', 'terminal-ide-horizontal', 'terminal-only', 'ide-only', 'web-only' ]); } @Injectable() export class IdeConfigService extends ConfigServiceBase { keys = ['frontend.ide']; autoSaveInterval = new BehaviorSubject(444); showDeployButton = new BehaviorSubject(true); deployButtonText = new BehaviorSubject({ 'TODEPLOY': 'Deploy', 'DEPLOYED': 'Deployed', 'DEPLOYING': 'Reloading app...', 'FAILED': 'Deployment failed' }); } @Injectable() export class SiteConfigService extends ConfigServiceBase { keys = ['frontend.site']; askReloadSite = new BehaviorSubject(false); documentTitle = new BehaviorSubject('Avatao Tutorials'); } @Injectable() export class ConfigReadyService { configDone = new Subject(); readyNotifiers: Array; constructor( private webSocketService: WebSocketService, private ide: IdeConfigService, private dashboard: DashboardConfigService, private site: SiteConfigService ) { this.readyNotifiers = [ this.ide.configDone, this.dashboard.configDone, this.site.configDone ]; } init() { this.webSocketService.connect(); const recvdConfigDone = new Subject(); this.readyNotifiers.push(recvdConfigDone); this.webSocketService.observeControl('frontend.ready').subscribe(() => { recvdConfigDone.next(); recvdConfigDone.complete(); }); merge(...this.readyNotifiers).subscribe({complete: () => { this.configDone.next(); this.configDone.complete(); }}); } }