mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 11:52:40 +00:00
Implement changing rewriteContentWith.. config from console API
This commit is contained in:
parent
d13935511b
commit
e77bd88963
@ -5,4 +5,5 @@ export class ConsoleCommand {
|
|||||||
command: string;
|
command: string;
|
||||||
content?: string;
|
content?: string;
|
||||||
showLiveLogs?: boolean;
|
showLiveLogs?: boolean;
|
||||||
|
rewriteContentWithProcessLogsOnDeploy?: string;
|
||||||
}
|
}
|
||||||
|
@ -17,9 +17,10 @@ export class ConsoleComponent implements OnInit {
|
|||||||
rewriteContentWithProcessLogsOnDeploy: string = config.console.rewriteContentWithProcessLogsOnDeploy;
|
rewriteContentWithProcessLogsOnDeploy: string = config.console.rewriteContentWithProcessLogsOnDeploy;
|
||||||
|
|
||||||
command_handlers = {
|
command_handlers = {
|
||||||
'write': this.writeHandler.bind(this),
|
'write': this.writeHandler.bind(this),
|
||||||
'read': this.readHandler.bind(this),
|
'read': this.readHandler.bind(this),
|
||||||
'showLiveLogs': this.showLiveLogsHandler.bind(this)
|
'showLiveLogs': this.showLiveLogsHandler.bind(this),
|
||||||
|
'rewriteContentWithProcessLogsOnDeploy': this.rewriteContentWithProcessLogsOnDeployHandler.bind(this)
|
||||||
};
|
};
|
||||||
|
|
||||||
constructor(private webSocketService: WebSocketService,
|
constructor(private webSocketService: WebSocketService,
|
||||||
@ -54,6 +55,10 @@ export class ConsoleComponent implements OnInit {
|
|||||||
this.processLogService.showLiveLogs = data.showLiveLogs;
|
this.processLogService.showLiveLogs = data.showLiveLogs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rewriteContentWithProcessLogsOnDeployHandler(data: ConsoleCommand) {
|
||||||
|
this.rewriteContentWithProcessLogsOnDeploy = data.rewriteContentWithProcessLogsOnDeploy;
|
||||||
|
}
|
||||||
|
|
||||||
setContent(content: string) {
|
setContent(content: string) {
|
||||||
this.console_content = content;
|
this.console_content = content;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user