mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 11:52:40 +00:00
Simplify IDE handler
This commit is contained in:
parent
1808beda90
commit
f78814a57f
@ -10,9 +10,9 @@
|
|||||||
[class.disabled]="filename === file"
|
[class.disabled]="filename === file"
|
||||||
[disabled]="filename === file"
|
[disabled]="filename === file"
|
||||||
[class.tao-tab-btn-saved]="filename === file && codeState === CodeState.SAVED">
|
[class.tao-tab-btn-saved]="filename === file && codeState === CodeState.SAVED">
|
||||||
<span *ngIf="filename !== file">{{file}}</span>
|
<span *ngIf="filename !== file">{{pathBasename(file)}}</span>
|
||||||
<span *ngIf="filename === file"
|
<span *ngIf="filename === file"
|
||||||
[class.underline]="codeState === CodeState.DIRTY">{{file}}</span>
|
[class.underline]="codeState === CodeState.DIRTY">{{pathBasename(file)}}</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -39,6 +39,6 @@
|
|||||||
|
|
||||||
<ngx-monaco-editor [(ngModel)]="code"
|
<ngx-monaco-editor [(ngModel)]="code"
|
||||||
class="tfw-ide-editor"
|
class="tfw-ide-editor"
|
||||||
(ngModelChange)="editorWriteHanlder()"
|
(keyup)="editorWriteHandler()"
|
||||||
[options]="editorOptions"
|
[options]="editorOptions"
|
||||||
></ngx-monaco-editor>
|
></ngx-monaco-editor>
|
||||||
|
@ -3,16 +3,15 @@
|
|||||||
|
|
||||||
import { ChangeDetectorRef, Component, EventEmitter, OnInit, Output } from '@angular/core';
|
import { ChangeDetectorRef, Component, EventEmitter, OnInit, Output } from '@angular/core';
|
||||||
|
|
||||||
import { IDECommand } from '../message-types/ide-command';
|
|
||||||
import { WebSocketService } from '../services/websocket.service';
|
import { WebSocketService } from '../services/websocket.service';
|
||||||
|
import { WebSocketMessage } from '../message-types/websocket-message';
|
||||||
|
import { IDECommand } from '../message-types/ide-command';
|
||||||
import { ProcessManagerService } from '../services/processmanager.service';
|
import { ProcessManagerService } from '../services/processmanager.service';
|
||||||
import { DeploymentNotificationService } from '../services/deployment-notification.service';
|
import { DeploymentNotificationService } from '../services/deployment-notification.service';
|
||||||
import { config } from '../config';
|
import { config } from '../config';
|
||||||
import { CommandMessage } from '../message-types/command-message';
|
|
||||||
import { LanguageMap } from './language-map';
|
import { LanguageMap } from './language-map';
|
||||||
import { filter, first } from 'rxjs/operators';
|
import { filter, first } from 'rxjs/operators';
|
||||||
|
|
||||||
|
|
||||||
enum DeployButtonState {
|
enum DeployButtonState {
|
||||||
DEPLOYED,
|
DEPLOYED,
|
||||||
DEPLOYING,
|
DEPLOYING,
|
||||||
@ -20,13 +19,11 @@ enum DeployButtonState {
|
|||||||
TODEPLOY
|
TODEPLOY
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
enum CodeState {
|
enum CodeState {
|
||||||
SAVED,
|
SAVED,
|
||||||
DIRTY
|
DIRTY
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-ide',
|
selector: 'app-ide',
|
||||||
templateUrl: './ide.component.html',
|
templateUrl: './ide.component.html',
|
||||||
@ -36,10 +33,8 @@ export class IdeComponent implements OnInit {
|
|||||||
CodeState = CodeState;
|
CodeState = CodeState;
|
||||||
DeployButtonState = DeployButtonState;
|
DeployButtonState = DeployButtonState;
|
||||||
|
|
||||||
key_id = 'ide';
|
|
||||||
files: string[];
|
files: string[];
|
||||||
filename = '';
|
filename = '';
|
||||||
directory = '';
|
|
||||||
code: string = config.ide.defaultCode;
|
code: string = config.ide.defaultCode;
|
||||||
|
|
||||||
codeState = CodeState.SAVED;
|
codeState = CodeState.SAVED;
|
||||||
@ -58,11 +53,9 @@ export class IdeComponent implements OnInit {
|
|||||||
@Output() newLogs = new EventEmitter<any>();
|
@Output() newLogs = new EventEmitter<any>();
|
||||||
|
|
||||||
command_handlers = {
|
command_handlers = {
|
||||||
'reload': this.reloadHandler.bind(this),
|
'ide.reload': this.reloadHandler.bind(this),
|
||||||
'read': this.readHandler.bind(this),
|
'ide.read': this.readHandler.bind(this),
|
||||||
'select': this.selectHandler.bind(this),
|
'ide.write': this.writeHandler.bind(this),
|
||||||
'write': this.writeHandler.bind(this),
|
|
||||||
'selectdir': this.selectdirHandler.bind(this)
|
|
||||||
};
|
};
|
||||||
|
|
||||||
constructor(private webSocketService: WebSocketService,
|
constructor(private webSocketService: WebSocketService,
|
||||||
@ -80,17 +73,14 @@ export class IdeComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
subscribeWS() {
|
subscribeWS() {
|
||||||
this.webSocketService.observeKey<CommandMessage>(this.key_id).subscribe((event) => {
|
this.webSocketService.observeKey<WebSocketMessage>('ide').subscribe((event) => {
|
||||||
this.command_handlers[event.data.command](event.data);
|
this.command_handlers[event.key](event);
|
||||||
this.changeDetectorRef.detectChanges();
|
this.changeDetectorRef.detectChanges();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
subscribeFirstLanguageDetection() {
|
subscribeFirstLanguageDetection() {
|
||||||
this.webSocketService.observeKey<CommandMessage>(this.key_id).pipe(
|
this.webSocketService.observeKey<IDECommand>('ide.read').pipe(first()).subscribe(
|
||||||
filter(message => message.data.command === 'read'),
|
|
||||||
first()
|
|
||||||
).subscribe(
|
|
||||||
() => this.autoDetectEditorLanguageIfEnabled(this.filename)
|
() => this.autoDetectEditorLanguageIfEnabled(this.filename)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -102,8 +92,8 @@ export class IdeComponent implements OnInit {
|
|||||||
(event) => {
|
(event) => {
|
||||||
this.deploymentNotificationService.deploying.next(false);
|
this.deploymentNotificationService.deploying.next(false);
|
||||||
this.newLogs.emit({
|
this.newLogs.emit({
|
||||||
stdout: event.data.stdout,
|
stdout: event.stdout,
|
||||||
stderr: event.data.stderr
|
stderr: event.stderr
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@ -119,19 +109,7 @@ export class IdeComponent implements OnInit {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
updateFileData(data: IDECommand) {
|
reloadHandler(data: WebSocketMessage) {
|
||||||
this.filename = data.filename;
|
|
||||||
this.directory = data.directory;
|
|
||||||
this.code = (data.content != null) ? data.content : this.code;
|
|
||||||
this.files = data.files;
|
|
||||||
}
|
|
||||||
|
|
||||||
selectHandler(data: IDECommand) {
|
|
||||||
this.updateFileData(data);
|
|
||||||
this.autoDetectEditorLanguageIfEnabled(this.filename);
|
|
||||||
}
|
|
||||||
|
|
||||||
reloadHandler(data: CommandMessage) {
|
|
||||||
this.requestCode();
|
this.requestCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -141,12 +119,16 @@ export class IdeComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
writeHandler(data: CommandMessage) {
|
writeHandler(data: IDECommand) {
|
||||||
this.setCodeState(CodeState.SAVED);
|
this.setCodeState(CodeState.SAVED);
|
||||||
}
|
}
|
||||||
|
|
||||||
selectdirHandler(data: IDECommand) {
|
updateFileData(data: IDECommand) {
|
||||||
this.updateFileData(data);
|
if (this.filename != data.filename) {
|
||||||
|
this.filename = data.filename;
|
||||||
|
}
|
||||||
|
this.code = (data.content != null) ? data.content : this.code;
|
||||||
|
this.files = data.files;
|
||||||
}
|
}
|
||||||
|
|
||||||
autoDetectEditorLanguageIfEnabled(filename: string) {
|
autoDetectEditorLanguageIfEnabled(filename: string) {
|
||||||
@ -181,11 +163,12 @@ export class IdeComponent implements OnInit {
|
|||||||
if (this.codeState === CodeState.DIRTY) {
|
if (this.codeState === CodeState.DIRTY) {
|
||||||
this.sendCodeContents();
|
this.sendCodeContents();
|
||||||
}
|
}
|
||||||
this.selectCode(file);
|
this.filename = file;
|
||||||
this.requestCode();
|
this.requestCode();
|
||||||
|
this.autoDetectEditorLanguageIfEnabled(this.filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
editorWriteHanlder() {
|
editorWriteHandler() {
|
||||||
this.setCodeState(CodeState.DIRTY);
|
this.setCodeState(CodeState.DIRTY);
|
||||||
this.setDeployButtonState(DeployButtonState.TODEPLOY);
|
this.setDeployButtonState(DeployButtonState.TODEPLOY);
|
||||||
this.resetAutoSaveCountdown();
|
this.resetAutoSaveCountdown();
|
||||||
@ -211,23 +194,22 @@ export class IdeComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pathBasename(path: string) {
|
||||||
|
return path.split('/').reverse()[0];
|
||||||
|
}
|
||||||
|
|
||||||
sendCodeContents() {
|
sendCodeContents() {
|
||||||
this.webSocketService.send(this.key_id, {
|
this.webSocketService.sendJSON({
|
||||||
'command': 'write',
|
'key': 'ide.write',
|
||||||
|
'filename': this.filename,
|
||||||
'content': this.code
|
'content': this.code
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
requestCode() {
|
requestCode() {
|
||||||
this.webSocketService.send(this.key_id, {
|
this.webSocketService.sendJSON({
|
||||||
'command': 'read'
|
'key': 'ide.read',
|
||||||
});
|
'filename': this.filename
|
||||||
}
|
|
||||||
|
|
||||||
selectCode(filename: string) {
|
|
||||||
this.webSocketService.send(this.key_id, {
|
|
||||||
'command': 'select',
|
|
||||||
'filename': filename
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
// All Rights Reserved. See LICENSE file for details.
|
||||||
|
|
||||||
import { CommandMessage } from './command-message';
|
import { WebSocketMessage } from './websocket-message';
|
||||||
|
|
||||||
export interface IDECommand extends CommandMessage {
|
export interface IDECommand extends WebSocketMessage {
|
||||||
filename: string;
|
filename: string;
|
||||||
content?: string;
|
content?: string;
|
||||||
files: string[];
|
files?: string[];
|
||||||
directory: string;
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user