mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 10:32:40 +00:00
63 lines
1.8 KiB
TypeScript
63 lines
1.8 KiB
TypeScript
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
// All Rights Reserved. See LICENSE file for details.
|
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
import { WebSocketService } from '../services/websocket.service';
|
|
import { ConsoleCommand } from './console-command';
|
|
import { config } from '../config';
|
|
import { ProcessLogService } from '../services/processlog.service';
|
|
|
|
@Component({
|
|
selector: 'app-console',
|
|
templateUrl: './console.component.html',
|
|
styleUrls: ['./console.component.scss']
|
|
})
|
|
export class ConsoleComponent implements OnInit {
|
|
console_content: string = config.console.defaultContent;
|
|
rewriteContentWithProcessLogs: string = config.console.rewriteContentWithProcessLogs;
|
|
|
|
command_handlers = {
|
|
'write': this.writeHandler.bind(this),
|
|
'read': this.readHandler.bind(this)
|
|
};
|
|
|
|
constructor(private webSocketService: WebSocketService,
|
|
private processLogService: ProcessLogService) {}
|
|
|
|
ngOnInit() {
|
|
this.webSocketService.connect();
|
|
this.webSocketService.observeKey<ConsoleCommand>('console').subscribe(
|
|
(event) => this.command_handlers[event.data.command](event.data)
|
|
);
|
|
this.processLogService.newLogs.subscribe((data) => this.newLogsHandler(data));
|
|
}
|
|
|
|
writeHandler(data: ConsoleCommand) {
|
|
this.setContent(data.content);
|
|
}
|
|
|
|
readHandler(data: ConsoleCommand) {
|
|
this.sendContent(this.console_content);
|
|
}
|
|
|
|
newLogsHandler(logs: any) {
|
|
if (this.rewriteContentWithProcessLogs !== '') {
|
|
const log = logs[this.rewriteContentWithProcessLogs];
|
|
if (log) {
|
|
this.setContent(log);
|
|
}
|
|
}
|
|
}
|
|
|
|
setContent(content: string) {
|
|
this.console_content = content;
|
|
}
|
|
|
|
sendContent(content: string) {
|
|
this.webSocketService.send('console', {
|
|
'command': 'read',
|
|
'content': content
|
|
});
|
|
}
|
|
}
|