mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 10:12:41 +00:00
Implement triggering first FSM step defined in config
This commit is contained in:
parent
3b94ed0db6
commit
b8161194d7
@ -5,6 +5,7 @@ export const config = {
|
|||||||
documentTitle: 'Avatao Tutorials',
|
documentTitle: 'Avatao Tutorials',
|
||||||
dashboard: {
|
dashboard: {
|
||||||
route: 'dashboard',
|
route: 'dashboard',
|
||||||
|
triggerFirstFSMStep: 'step_1',
|
||||||
terminalOrConsole: 'terminal',
|
terminalOrConsole: 'terminal',
|
||||||
currentLayout: 'terminal-ide-web',
|
currentLayout: 'terminal-ide-web',
|
||||||
enabledLayouts: [
|
enabledLayouts: [
|
||||||
|
@ -38,6 +38,7 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
this.webSocketService.connect();
|
this.webSocketService.connect();
|
||||||
this.initCommandHandling();
|
this.initCommandHandling();
|
||||||
this.initDeploymentNotifications();
|
this.initDeploymentNotifications();
|
||||||
|
this.triggerFirstFSMStepIfNeeded();
|
||||||
}
|
}
|
||||||
|
|
||||||
initCommandHandling() {
|
initCommandHandling() {
|
||||||
@ -57,6 +58,17 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
triggerFirstFSMStepIfNeeded() {
|
||||||
|
if (config.dashboard.triggerFirstFSMStep) {
|
||||||
|
setTimeout(() => {
|
||||||
|
this.webSocketService.sendJSON({
|
||||||
|
'key': '',
|
||||||
|
'trigger': config.dashboard.triggerFirstFSMStep
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
layoutHandler(data: LayoutCommand) {
|
layoutHandler(data: LayoutCommand) {
|
||||||
if (config.dashboard.enabledLayouts.includes(data.layout)) {
|
if (config.dashboard.enabledLayouts.includes(data.layout)) {
|
||||||
this.setLayout(data.layout);
|
this.setLayout(data.layout);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user