mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 10:12:41 +00:00
Unify fronted API naming conventions in dashboard
This commit is contained in:
parent
00efe0002c
commit
6a507debec
@ -19,7 +19,7 @@ export const config = {
|
|||||||
'web-only'
|
'web-only'
|
||||||
],
|
],
|
||||||
iframeUrl: '/webservice',
|
iframeUrl: '/webservice',
|
||||||
hide_messages: false
|
hideMessages: false
|
||||||
},
|
},
|
||||||
ide: {
|
ide: {
|
||||||
route: 'ide',
|
route: 'ide',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<div [attr.class]="layout">
|
<div [attr.class]="layout">
|
||||||
<div class="tfw-grid-main-components">
|
<div class="tfw-grid-main-components">
|
||||||
<div class="tfw-header"><app-header></app-header></div>
|
<div class="tfw-header"><app-header></app-header></div>
|
||||||
<div [ngClass]="{'hide-attribute': hide_messages}" class="tfw-messages">
|
<div [ngClass]="{'hide-attribute': hideMessages}" class="tfw-messages">
|
||||||
<app-messages></app-messages>
|
<app-messages></app-messages>
|
||||||
</div>
|
</div>
|
||||||
<div class="tfw-web tao-grid-top-left"
|
<div class="tfw-web tao-grid-top-left"
|
||||||
|
@ -19,16 +19,17 @@ import { CommandMessage } from '../message.types/command.message';
|
|||||||
export class DashboardComponent implements OnInit, OnDestroy {
|
export class DashboardComponent implements OnInit, OnDestroy {
|
||||||
deploying = false;
|
deploying = false;
|
||||||
deploymentNotificationSubscription: Subscription;
|
deploymentNotificationSubscription: Subscription;
|
||||||
layout: string = config.dashboard.currentLayout;
|
|
||||||
hide_messages: boolean = config.dashboard.hide_messages;
|
|
||||||
iframeUrl: string = config.dashboard.iframeUrl;
|
|
||||||
@ViewChild('webiframe') webiframe: ElementRef;
|
@ViewChild('webiframe') webiframe: ElementRef;
|
||||||
selectedTerminalMenuItem = config.dashboard.terminalOrConsole;
|
|
||||||
|
|
||||||
command_handlers = {'layout': this.layoutHandler.bind(this),
|
layout: string = config.dashboard.currentLayout;
|
||||||
'hide_messages': this.hideMessagesHandler.bind(this),
|
hideMessages: boolean = config.dashboard.hideMessages;
|
||||||
'terminal_menu_item': this.terminalMenuSelectHandler.bind(this),
|
iframeUrl: string = config.dashboard.iframeUrl;
|
||||||
'reload_frontend': this.reloadFrontendHandlder.bind(this)};
|
selectedTerminalMenuItem: string = config.dashboard.terminalOrConsole;
|
||||||
|
|
||||||
|
command_handlers = {'layout': this.layoutHandler.bind(this),
|
||||||
|
'hideMessages': this.hideMessagesHandler.bind(this),
|
||||||
|
'terminalMenuItem': this.terminalMenuItemHandler.bind(this),
|
||||||
|
'reloadFrontend': this.reloadFrontendHandlder.bind(this)};
|
||||||
|
|
||||||
constructor(private deploymentNotificationService: DeploymentNotificationService,
|
constructor(private deploymentNotificationService: DeploymentNotificationService,
|
||||||
private webSocketService: WebSocketService,
|
private webSocketService: WebSocketService,
|
||||||
@ -79,10 +80,10 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
hideMessagesHandler(data: HideMessagesCommand) {
|
hideMessagesHandler(data: HideMessagesCommand) {
|
||||||
this.hide_messages = data.value;
|
this.hideMessages = data.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
terminalMenuSelectHandler(data: TerminalMenuItemCommand) {
|
terminalMenuItemHandler(data: TerminalMenuItemCommand) {
|
||||||
this.selectTerminalMenuItem(data.value);
|
this.selectTerminalMenuItem(data.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user