mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 10:12:41 +00:00
Implement changing between terminal menu items from API
This commit is contained in:
parent
6ca78f12fd
commit
3456595c5a
@ -24,6 +24,7 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
|
|
||||||
command_handlers = {'layout': this.layoutHandler.bind(this),
|
command_handlers = {'layout': this.layoutHandler.bind(this),
|
||||||
'hide_messages': this.hideMessagesHandler.bind(this),
|
'hide_messages': this.hideMessagesHandler.bind(this),
|
||||||
|
'terminal_menu': this.terminalMenuSelectHandler.bind(this),
|
||||||
'reload_frontend': this.reloadFrontendHandlder.bind(this)};
|
'reload_frontend': this.reloadFrontendHandlder.bind(this)};
|
||||||
|
|
||||||
constructor(private deploymentNotificationService: DeploymentNotificationService,
|
constructor(private deploymentNotificationService: DeploymentNotificationService,
|
||||||
@ -65,6 +66,10 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
this.hide_messages = data.hide_messages;
|
this.hide_messages = data.hide_messages;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
terminalMenuSelectHandler(data: LayoutCommand) {
|
||||||
|
this.selectTerminalMenuItem(data.terminal_menu_item);
|
||||||
|
}
|
||||||
|
|
||||||
reloadFrontendHandlder(data: LayoutCommand) {
|
reloadFrontendHandlder(data: LayoutCommand) {
|
||||||
setTimeout(() => window.location.reload(), 2000);
|
setTimeout(() => window.location.reload(), 2000);
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,8 @@
|
|||||||
// All Rights Reserved. See LICENSE file for details.
|
// All Rights Reserved. See LICENSE file for details.
|
||||||
|
|
||||||
export class LayoutCommand {
|
export class LayoutCommand {
|
||||||
command: string;
|
command: string;
|
||||||
layout?: string;
|
layout?: string;
|
||||||
hide_messages?: boolean;
|
hide_messages?: boolean;
|
||||||
|
terminal_menu_item?: string;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user